Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
KevinFournier
About
- Username
- KevinFournier
- Joined
- Visits
- 2,163
- Last Active
- Roles
- Administrator
Comments
-
I can't explain why this happens, but it appears that UNC file paths are not supported when the engine is running within the context of OECGI3. Probably for security reasons. Perhaps others with web server administration experience can speak more ex…
-
Testing in a clean copy of OI 9.4 fails to reproduce this problem. Is it possible a promoted event somewhere is setting this? Does your copy of OI connect to a Linear Hash server?
-
I've confirmed this is a problem in OI 10. For some background, the SRP ActiveX Controls have always had to "trick" OI 9 into passing focus onto the next item. It appears that trick doesn't work in OI 10, so I'll have to investigate whether or not I…
-
No worries. These are just some ideas you can mess with. There's not much to displaying the splash screen, so I actually wonder if it's the splash screen itself or the delay-timer behind it. Sometimes remote sessions can break if they use a lower co…
-
Are these virtual machines or remote desktops? What OS is it running, and is it the same OS as the others? What is the value of SplashScreenDelay, EnableSplashScreen, and EnableBlending? Does anything change if you alter these settings in the INI fi…
-
The direct answer to your question is that you have to do a SendEvent for each cell, passing the cell position as a parameter. The trick to sending OLE events is that the actual event is "OLE" and the next parameter is the control's event itself. Th…
-
Call Send_Event(CurCtrl, "OLE", "AfterUpdate", "1;2", "NewText", "")
-
I think it might be simpler than that. There is a long-standing bug I've been aware of--one that is very difficult to duplicate--where the Undo Buffer gets "stuck" such that pressing Ctrl+Z undoes everything instead of just your last change. I think…
-
Make sure you also delete the SYSREPOS entries that point to them or the entities will still show up elsewhere as orphaned entities.
-
The fact that it breaks outside of SYSPROG leads me back to the theory that you have old SRP_EDITOR entities in your system that are not at the SYSPROG level which are overriding the latest update. Check SYSOBJ and SYSREPOSWINEXES for any entities b…
-
I've tried to recreate this to no avail. Try turning off line numbers in the Options (click OK or Apply) followed by a restart. Confirm that line numbers still don't appear. Then turn line numbers back on in the Options and restart again. See if it …
-
Another thing I've seen after a major update is copies of SRP Editor entities in local applications. If, for example, you look in SYSOBJ and see $SRP_EDITOR_OPTION_DLG_EVENTS and $SRP_EDITOR_OPTION_DLG_EVENTS*MYAPP, then the MYAPP version (which is …
-
I wonder if the big jump in versions caused the options to get out of sync. One thing you can try, though it will cause you to lose all your current options, is to open RegEdit and remove all the entries in the following folder: Computer\HKEY_CURREN…
-
What is the error you're getting when it doesn't work?
-
Resetting the LIST property causes all items to be cleared and then re-added, which is why TOPPOS resets. It's far more efficient to use the INSERT method with an index of -1 to append a new item to the end of the list box. Then set TOPPOS to the si…
-
Sorry, it's been crazy. The problem is that I'm in the middle of a big update of the controls. If I push out a build with your fix, it could break other things. I don't think it would, but I can't say it won't until we've run it through integration …
-
Confirmed. The issue is that the rows are scrolling out of view even if there aren't scroll bars, and without scrollbars, you can't get the entity to appear unless you select it from the tree.
-
Given that the failing images differs in each search, I'm inclined to suggest that you're running into memory issues. How big are the images you are loading? Just because they are drawn small doesn't change the fact that each image is loaded in memo…
-
You want to use "AN1" to sort numbers. We also have a more readable version of this API in our SRP_Array service that looks like this: Sorted = SRP_Array("SortSimpleList", List, "AscendingNumbers", @FM)
-
Expect rough seas ahead. It's not as simple as just updating the guts of RTI_EMAIL_CLIENT or SRP_SEND_MAIL. OAuth is two-factor authentication with temporary tokens, so the days of automated email (for GMail and MS Exchange at least) are coming to a…
-
Not sure what to tell you. That is pretty wacky. Video drivers? Reboot the machine? Play with the DPI settings?
-
In general, AREV and OpenInsight (OI) are development systems created by a company called Revelation Software (https://www.revelation.com/). Our company didn't write these systems, but we are experts in them. We support clients who rely on AREV/OI a…
-
I figured out the issue. The image is using 64 bits per pixel. The current controls only recognize up to 32bpp. Future releases will be able to handle this format. The forum must have converted the image to 32bpp.
-
The problem is that you were trying to manually close the json with SRP_JsonX('}') instead of using SRP_JsonX_End, which closes the json for you.
-
In older versions of Windows, the first time you ran a new application, you'd get a popup asking if the application is allowed to talk through the internet. I added these to NSIS to avoid that popup. Now that I think about, I don't see those popups …
-
Unfortunately, I can't really tell you why this is happening from here with this information. I'd want a copy of your system to troubleshoot further. Email me at kfournier@srpcs.com if you want to start that process.
-
Interesting. I wonder if the previous install just didn't take. We've sometimes run into that, particularly if the installer thinks things are locked. Let me know if any other issues arise.
-
Actually, looking at your original post, it did divide up your data using @TMs.
-
It should have delimited by @TMs. I am using the Remove statement, which claims to recognize @TMs. Not sure why it wasn't dividing those up.
-
So it worked, and then it didn't? Does restarting OI cause it to work again, or did it only work once never to work again?