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,257
- Last Active
- Roles
- Administrator
Comments
-
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?
-
SRP_UNICODEOIPI_SETUP ran successfully? Or do you mean the report is working now?
-
Run SRP_UNICODEOIPI_SETUP then. No parameters.
-
Let's make sure everything is routing to SRP Unicode OIPI. From a command line, call GET_PRINTER("CURRAPI") and make sure the return value is "SRP". If you get "OI", then you need to call SET_PRINTER("CURRAPI", "SRP"). If you get back "", then you …
-
Yes, \t is a tab character. That is standard json encoding.
-
Is this the first time you've installed some version of Unicode OIPI? Because EngineRunning is not something SRP_SET_PRINTER_DIRECT calls. Make sure there are not multiple versions of $SRP_SET_PRINTER_DIRECT in SYSOBJ.
-
I still can't recreate this in a clean copy of OI 10. Email me at kfournier@srpcs.com to arrange the next steps. The quickest way for me to find out the issue will be to get a copy of your system, but we can decide that via email.
-
You will notice that items towards the bottom cannot be clicked. I'm struggling to recreate this in OI 10.1 currently, even if I put the control into an SRP Panel, so I'm missing some kind of detail. Do they not scroll into view at all, or can yo…
-
I'll take a look. Is this happening on a screen with a higher than normal DPI setting, or does it seem to happen regardless of screen settings?
-
In OI 10, the SRP Editor tries to initialize the OIPI so it can support printing. It could conceivably hang if you don't have any printers defined on your machine, or perhaps all defined printers are from a network OIPI can't see, so it just sits th…
-
Looking at the SRP Editor in the screenshot, it looks like it actually loaded fine but that the splash screen is getting stuck somehow. Can you still interact with the SRP Editor? If you click on the splash screen and press Alt+F4, does the splash s…
-
Fixed in 4.1.21.1. Thanks.