Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
josh
About
- Username
- josh
- Joined
- Visits
- 2,033
- Last Active
- Roles
- Member
Comments
-
The oconv is just a display thing. the fact that it affects data processing is concerning.
-
@ausmarkb yes, the fact that the rlist oconv must match the dictionary oconv is very concerning.
-
ok, everything is working, so i think we'll just leave everything as is. This might come up again when we start rolling out oi 10 to our users though.
-
OK, do you still want me to email you?
-
srpcontrols.ocx. To setup oi 10, I ran this program SRP_Controls_Install_4.1.20.exe After running that program, i started getting those error messages in oi 9. To fix, i unregistered the srpcontrols.ocx dll that SRP_Controls_Install_4.1.20.exe…
-
@donbakke nvm, i got it to work by unregistering the oi 10 dll and re-registering the one associated with oi 9.
-
ok sure
-
Can confirm that this happens to me too.
-
That's really good thanks
-
I have integrated the parser with Visual Studio Code (using the language server protocol). Feel free to use this in your editor, code is on my github. I still need to implement "hover" popups, so when you hover over a function, it puts up a popup …
-
I just remembered that you can have an equate statement in an if statement. Anyway, most people don't do that, so it would still help a lot I think, as having to hunt down the insert that a variable is in is annoying. Even just displaying and pro…
-
yes
-
You need to refresh the browser cache (ctrlf-f5 in chrome) to see changes to css or javascript files. Not sure what your other point is about...
-
great thanks!
-
Sorry, i meant "clearing".
-
Do you know if it's "safe" to alter these variables?
-
Thanks for that. This should help.
-
You could "lazily" colour the rows. So catch the scroll event ,and fill in, say, 15 (or how ever many rows are visible) at a time. Example code for the SRP grid, but you could do the same thing for the OI grid lazy_load_images: // If the 2 are …
-
yeah I know about that. It would be good if you could then click a button to deploy the rdk to an environment. Anyway, that's what I will try to do.
-
It's not important. What is the Check Out tool?
-
as I have to deploy updates many times every day, this would save a lot of time.
-
The next feature will be to make the grid automatically scroll when the user has selected a cell in the last row and wants to keep going down...
-
grd_orders.OnMouseMove: cell = param1 button = param3 shift_button_down = param4 ctrl_button_down = param5 if button _eqc "left" then oryxctl_srp_grid_multiselect("update_selection_drag",grd_orders$,cell) end else Set_Property(grd_…
-
Actually, your approach does work. Thanks!
-
Actually, i don't think that will work...it's a bit complicated and It will take me a while to explain it .
-
Yes i just realized that lol "Now that I think about it, perhaps I can detect that directly. I will try that." I will see how to do that. Thanks
-
Basically, I only want the OnMouseMove event to fire when the left mouse button is down. Now that I think about it, perhaps I can detect that directly. I will try that.
-
So when you click on the cell with the black box around it and then drag your mouse to the right, all of those cells get selected. That's what I am doing:
-
Yes UP is relevant. I am trying to implement a function that allows the user to drag their mouse over a bunch of cells to select those cells. To do this, I use the onMouseMove event. And it works. However, the grid "flashes" sometimes, and I…