Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
AusMarkB
About
- Username
- AusMarkB
- Joined
- Visits
- 3,053
- Last Active
- Roles
- Member
Comments
-
Well you were right; you can't obtain it in a property but...
-
Yes. Integrating with Geckoboard
-
But it's the same event? Second parameter tells you it's a right versus a left. Third tells you the column. Or are you right clicking somewhere else?
-
Third parameter of the OnItemClick?
-
Actually, in the meantime I had posted a question on the dev forum for the service I was trying to request. I got a "just curious but why are you trying to use that method instead of this new one?" which sounded remarkably similar to Is there a rea…
-
Whaddya know? The SendHTTPRequest service works a treat.
-
Don that would be because that would appear to be the easy way and who wants to do that? Oh and I was too lazy to keep up with your HTTPFramework updates and forgot that the clientservices existed even though I had read about it some time ago.
-
I've added these lines after the send Response = SRP_COM(objXMLHTTP, "GET", "responseBody") Responsetxt = SRP_COM(objXMLHTTP, "GET", "responseText") RespStat = SRP_COM(objXMLHTTP, "GET", "status") RespStatTxt = SRP_COM(objXMLHTTP, "GET", …
-
I'd also be wondering if a web developer would be looking for a message, especially with a status of 200. I know in our case, I had to tell the web guy which specific codes to be on the lookout for if they needed to do something different. Otherwise…
-
Use ComboRowData You'll have to decide which is the most appropriate event for your needs though.
-
The packaging it up as JSON is the magic factor that will make all the difference. I am following a similar concept but I didn't think to use JSON as the message, probably because at the time I wasn't familiar enough with it. I simply made a string …
-
I see it was an obviously I glossed over (perhaps glazed over) it as well while attempting to understand the actual scenario. As I said, I haven't implemented the two directconnect controls as yet, nor do I have any immediate plans to but I think wh…
-
multiple SRP DirectConnect controls in the same instance of OI can cause OI to crash Important little note right there. I don't have this scenario at the moment but I had coded for the possibility. Now I know not to try and implement it.
-
Always happy to hear any and all suggestions. Never know what might trigger what. The web entry/edit form exists and is working. The layout of that form was based on an existing word document. The content had no direct relevance or purpose in the e…
-
Maybe not overly pretty but it is a web based replacement for what is currently a formal document. The screenshot is the proof of concept while I figure out whether to go that route. The remainder of the document is somewhat more complicated so I fi…
-
I'm curious to hear if this holds true consistently. Some time ago I developed a habit of a work around for dialog boxes for this very reason. I place an invisible OI button on the form. The OI button has a click event that triggers the close. When …
-
Bingo! Office2010Blue. So whenever I display a message to the user I could be changing the appearance of other controls. Might customise the popup myself then.
-
Because I only just noticed something, I'm guessing the popup control is included in this list?
-
Colin, I haven't used the drag n drop in OI so effectively speaking without knowing here but when does the "DRAGDROP" event fire? Does that happen when the text is dropped into the editline? I've too often found myself in loops when relying on the …
-
Wondering if the new tree control that will accept drag n drop emails may also support text data? Is this still happening? Is it on the backburner? Has it been shelved? Am I being annoying yet?
-
Sorry Barry, I may have added to the confusion with the inclusion of the HREF stuff in my other post. It wasn't relevant to the topic at hand, it just happened to be within the code segment that I copied and pasted and I didn't remove it before pos…
-
Clarification first. There's no guarantee I'm doing it "properly" either. It's just the approach I took. Here's some examples of why and how Get me a list of clients api/clients Give me the details about a specific client api/clients/{clientid} G…
-
Sorry Don, jumped in on you there but I think we're saying the same thing. Barry, I'm with Don on the format of the url being unexpected though. I don't know what 1633P or 123 represents but as Don says, coming into the service, NextSegment would b…
-
I think "foolproof" is dependent on what else you might decide to do later. I have taken a similar approach though If Index(RemainingURL, '/', 1) then RemainingURL = Field(RemainingURL, '/', 2, 99) NextSegment = RemainingURL[1, '/'] …
-
Hey Barry, In the 1 menu setup, (other than for testing of this scenario) will window 1 and window 2 ever have the same record opened? In other words, will you as an individual user be updating the same record in two instances of the same window? I…
-
In the specific end point API code that calls HTTP_Resource_Services, get the Body using the GetHTTPPostString service, modify the content as required, and save this value back using HTTPPostString as the name in the Memory_Services SetValue service…
-
Ok thanks. Was just thinking (crossing fingers really) that it might inadvertently contribute to the resolution of the terminal server crashing issues. It did resolve some crashing on desktops. Perhaps ts is just a more frequent occurrence of the s…
-
My two cents. I found the same thing and did as Don suggests here and modified http_resource_services to always return the id though I added it to getDatabaseItems. I second his other suggestion as well that for more complex requests it may be bett…
-
Hey Don, I did notice this unlikely occurrence. When I originally asked the question it was prompted by the thought this may become a requirement in the future considering it is becoming the de-facto authentication protocol by just about everybody…
-
Oh now I get it.... I had a two digit year in one date and a four digit year in the other