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,285
- Last Active
- Roles
- Administrator
Comments
-
Maybe someone else at SRP who has used it knows, but I have not done any RDK deployment in OI10. Let me clarify that NSIS installers do allow 64-bit, but it's not a trivial thing for SRP to support. We have to update our NSIS plugins to support 64-…
-
That's why I don't provide installers for our 64-bit products.
-
No can do. NSIS is 32-bit and cannot communicate with OI10's 64-bit DLLS.
-
There is no maximum characters per line, but if you want to know how many will fit in a line before it needs to wrap to the next line, you can use SRP_String from our free SRP Utilities to measure an underscore and calculate how many will fit.
-
It's current design is to change every misspelled word.
-
4.1.2 RC11 will fix this. I was focusing on vertical scroll bars, but the issue was horizontal.
-
Don will be emailing you a new RDK shortly. The RDK ships with source code to SRP_SPELL_CHECK in case you need to troubleshoot anything else. In this case, it was a simple loop error. It was looping one time too few.
-
I can't recreate this in my environment. Perhaps it involves the order in which the table is setup and loaded. Can you email me code that mimics one of your problem tables?
-
Can you share the SendMessage code you use to register the button event?
-
The HeaderRow property.
-
I presume by "nothing happened," you mean to say that the machine didn't react. I can't really troubleshoot with this information because I can't determine if nothing happened because the machine didn't like what you sent or if the machine never got…
-
The issue is that the SRP EditTable is not getting the signal that it needs to redraw. This can happen for a lot of reason, but it's mostly out of the EditTable's control. Are you setting the REDRAW property anywhere? Also, make sure the SRP Tab con…
-
If you have to convert a lot of images, the SRP Image Converter could be handy, and it's free.
-
Thankfully, the SRP_String GetHeight service makes this easy.
-
Sometimes this has to do with timing, especially during the CREATE event. I'll look into it and see if I can narrow down the issue.
-
SRP Utilities 2.0.3 RC3 fixes this. It was never meant to output \u sequences for anything except control characters, so that was the first problem. The second problem, as @r.od.akker point out, was the 32-bit length sequence instead of the 16-bit s…
-
kfournier@srpcs.com
-
Can you email me the SRPLIC file so I can test?
-
Did it find an SRPLIC file?
-
SRP_ActiveX_Info_64.exe is available for OIX.
-
SRP_ActiveX_Info 2.0 RC1 is available for download and testing. It should recognizes SRPLIC files in addition to being backward compatible with SRPLicense.dll.
-
SRP Utilities 2.0.3 RC2 fixes this.
-
You need a third party OCR library to convert a scanned document to text. I personally don't have a recommendation, but perhaps some of our other forum users do. I'll ask the guys in the office to chime in with suggestions.
-
What in this screenshot is incorrect? I believe I'm missing context.
-
I see. Right sort is actually extracting numbers and sorting accordingly. Interesting.
-
I've tried to recreate this with a PNG, but I can't seem to do so. Are you using 32-bit BMPs or something for your images?
-
Are the Char(0)s still an issue though?
-
SRP Utilities 2.0.3 RC1 now supports true numerical sorting. Instead of using "AR2" for the sorting parameter, try "AN2" instead.
-
Since I'll be updating code today, can you elaborate on things being trashed with Char(0)s?
-
This is working as designed. Just like OI's own V119 routine, a right-aligned sort is only good for sorting integers, since it doesn't actually compare true numerical values. A right-aligned sort effectively "inserts" spaces to the left of each valu…