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,233
- Last Active
- Roles
- Administrator
Comments
-
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.
-
Email me at kfournier@srpcs.com, and we'll do a remote support session.
-
Make sure .NET Framework 4.8 is installed. I need to update that installer page to reflect the latest changes.
-
Yes, TLS is required. SSL is considered too insecure, though some server still support it for backwards compatibility. Even the .NET SMTP Client doesn't support it anymore. Sorry that the error message wasn't more helpful. I'll look into making it m…
-
Okay, I know what this is. This is indeed a 32-bit issue. 32-bit applications, when running on 64-bit systems, cannot access keys directly under the SOFTWARE key. Any attempt to do so is redirected to SOFTWARE\WOW6432Node. In this case, when you try…
-
In RegEdit, right click all folders in the path and check to see that you have permissions to read.
-
I've tried various combinations, and I can't reproduce this issue. I tried it running both in Administrative Mode and without, and I can query and read without issue. I tested in 2.2.5, though that really shouldn't matter since SRP_Registry has chan…
-
Quite the whoopsie on my part. That will be removed for the next release. My apologies.
-
Okay, Don and I discovered the issue. This has to do with declaring a table to be a CODE type table in the SRP Editor. At that point, the SRP Editor assumes it can parse whatever you load from that table. The next version of the SRP Editor will do a…
-
Out of curiosity, I searched for the word "test" in SYSOBJ and got over 1000+ result, no hanging. All Table Search does is read the record and do an Index or IndexC on it. It shouldn't really matter what is in the record. I use the same simple algor…