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,207
Last Active
Roles
Member

Comments

  • 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 …
    in Drag/Drop Comment by AusMarkB March 2017
  • 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?
    in Drag/Drop Comment by AusMarkB March 2017
  • 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
  • You and me both. For some reason something like this SELECT ROSTER_TIMECARD WITH ROSTER_DATE BETWEEN "15/01/17" AND "22/01/2017" AND WITH CUSTOMER EQ "EBL" "EBL-PERM" "EBL-KNOWLES15" "EBL-KNOWLES17" "EBL-KNOWLES19" "EBL-KNOWLES23" "EBL-PERM" "EBL-BO…
  • Case Closed
  • Extremely happy to report that after much head banging I got to the bottom of this one. Had nothing to specifically to do with HTTP or btree.extract. Sorry to report that the culprit was srp_stopwatch and my creative use of meaningful stopwatch nam…
  • Thinking I may have tweaked things enough I ran the process again. Got the same windows crash error. This time I looked at the more detail section. It says this which from what I can gather is telling me much the same as the debugger messages, in …
  • Thanks Gentlemen, Don, I will work through your suggestions today and see where it gets me. Matt, there is a reason but at the moment I can't remember what it was. I suspect that it had to do with the fact that the routine that actually builds the …
  • Gotcha. Didn't help. Crashes before executing anything that might display an error. I think it's just a furfy anyway. Turns out sometimes I get this instead.. and other times this...
  • change option to?
  • Thanks Matt. I've downloaded it. I'll have to schedule some time to play.
  • Hey Matt, I'm afraid I can't be much help with your question but I am curious about your use of ImageMagick. Is this the only site where you're using this or do you use it with greater reliability in other places. I have a need to create thumbnail…
  • Yes. completely separate. Two different controls: DirectConnect and Schedule Both have server properties that connect them to an instance of the sync server but they are properties of the controls themselves, not the sync server. Rely on the docum…
  • Disregard. Found it. It's "contains" not "containing". Works wonderfully
  • Food for thought, thanks Don. Wasn't really expecting a magic bullet. It was just kind of a reference to the fact that I assumed my selects were the problem but generally speaking 50 - 95% of each request time is spent attaching tables. Of course I…