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,145
- Last Active
- Roles
- Member
Comments
-
You don't appear to be changing the TEXT property. The VALUE property is the value returned to the program, the TEXT property is what the user sees
-
changing the x/y position Damn, that would have been better.
-
Just tested it and confirmed it is the label. So to refer to the individual option you use windowName.CtrlName.Label, all in uppercase
-
Eg: set_property(@Window:".RB_PERIOD.NULL", "VISIBLE", false$) The control name is "RB_PERIOD" so set_property(@Window:".RB_PERIOD", "VISIBLE", false$) will hide the entire control but if you concatenate the, (and this is where I'm a bit sketchy b…
-
I did something similar for a different reason. I was after vertical radio buttons but with greater spacing between them. The goal was different but you could probably use the same approach. In this there are four choices only but the radio button c…
-
I'll be of no assistance on this whatsoever, I just dropped in to say, that's a nice looking table.
-
So I added parm<5> for curiosity's sake and...
-
I have code that's been the same for over a decade and other than PARM<5>, it's essentially the same as yours and like Kevin, I get the default Windows open file dialog. OI is 9.4.2 but I don't see that making any real difference. CFOpt = ""…
-
Out of curiosity, how are you trying to load the key in an open form? set_property(..... ) send_event(@Window, "READ") I assume I've oversimplified.
-
I suspect promoted events are at play. I'd even have a stab in the dark at the routine name being something like oryx_promoted_events and within the 'create' logic, the 'FORECOLOR' property of certain control types is being set in an attempt to main…
-
I'd hazard a guess that at some time in the distant Oryx past, someone wanted to convert edittable data into a csv via copy/paste thus the above was added to the oryx library and it gradually weaved it's way into generic use. @Josh, you could risk …
-
We had the same app/site being reported as down today. I restarted the socketserver and nothing happened. No engines were fired which suggested no requests were coming in. A restart of IIS set everything back to normal but with all ten engines worki…
-
-
@KevinFournier, the reporttable method in the editor?
-
Considering the bulk of our customers use 24hr time as an industry standard, I think I might change the terminology for when they select their preference. "Do you want to use am/pm or Netherland time?"
-
The status window appears the first time you need it, eg, compile a routine so you don't really need to actively set it and is probably moot. TCL on the other hand makes sense that it would restore to previous setting especially considering all the …
-
-
Heres a video that might help explain what I mean
-
I don't think all of them did but several for sure. That screenshot is just over a week old and if I check now, whilst fluctuating, there doesn't seem to be more than six at any one time.
-
-
So I used this post to confirm that I need to be using AddItems instead of InsertItems but... My list does get added as a child of the destination item as desired, however all items in the additems list also get added as children of the first item b…
-
Thanks Kev. That's what I missed; the existence of SetValueArray.
-
No, not passing JSON but still not understanding If SRP_Json(custHandleX, "New", "Array") then address = "Level 3":vm$:"21 Smith St" Result = SRP_Json(custHandleX, "AddValueArray", address, @VM) SRP_Json(custHandle, "Set", "site_addre…
-
@opto_will coincidentally, I was sent an email this morning to act as a second pair of eyes on that exact thing; double object as a result of addValueArray. Having not used it myself, I hadn't seen that but that's twice mentioned within a couple of …
-
yet had I seen your comment @DonBakke, before clicking Post Comment, I probably would have back pedaled and not bothered. You must type faster than me.
-
I'd suggest trying their newish option AddValueArray I haven't tried it yet myself but basically it would be something like this Result = SRP_Json(jobHandle, "New", "ARRAY") SRP_Json(jobHandle, "AddValueArray", ListUnDelivered, ",") SRP_JSON(ROOTHA…
-
@josh, not sure if you picked up on Don's reference to F3/F4? F3 for Next F4 for Previous. Agreed, the dialog doesn't stay open but you don't need it to if you're just looking for the next occurrence of the same string.
-
Is it not working at all or have you typed something in and then the assistant button does nothing?
-
-
I ask because you can't successfully call dialog boxes from other dialog boxes and a popup is just a dialog box with another name.