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
-
If you can send me code that recreates it--ideally without dependencies upon your system--I'd be happy to run it on my end and get you a fix.
-
One thing the SRP EditTable Control does, as a matter of consistency, is copy the cell styles of the previous row whenever a new row is created. I see your top header is upper case. Is it possible you had an upper case cell somewhere at some point a…
-
No. Sorry, that feature has not been implemented. I honestly wasn't aware that you could do that in Word.
-
I just read it. So far, I'm agreeing with him that nothing should be interfering with the encoding process, but I'm still interested to get results from the encoding tests run on those machines. If you think it's worth the effort, I can draw up a bu…
-
If you can run this same code on your broken client machines, it would be informative to see if you get different results.
-
@MattCrozier, Str_Unicode is more like a macro in that it "becomes" Ansi_Unicode if the UTF8 flag is off and UTF8_Unicode if the UTF8 flag is on.
-
There it is. VMs are being converted to 00FD instead of F0FD. Nevermind. I read it backwards. The VM is in fact F0FD. In Unicodes, the bytes are in reverse order for each character.
-
Sadly, it's not documented. Here's a sample: MyUnicodeVar = Str_Unicode(MyVar)
-
If you haven't already, I'd reach out to Revelation to find out if UTF8.DLL relies on some OS setting to determine how to encode OI delimiters.
-
The extra VMs are expected. The fact that you are getting true-blue VMs back from the property really confirms my suspicions that OI is not encoding/decoding VMs as the control expects. Perhaps run a test routine on their system that passes a simila…
-
Everything works if OI is run on the server. It fails when run from a client. Can you elaborate? What kind of server? What kind of client? What differences do you know exist between the two? Does it happen to every table? Every control? What is…
-
I'm thinking that OI is not converting to Unicode correctly. Once that goes wrong, there's no way for the controls to get anything right.
-
The only thing I can think of is that, somehow, the value marks are not true value marks when the Edit Table parses the Col_Text. OI has to convert all strings to Unicode when passing them to OLE controls, including delimiters. Value marks are Char …
-
Yes. You're looking for the DataColumn property, field <4>. Note that you can autosize muliple columns. Doing so will cause them to split up the remain width of a table as evenly as possible.
-
The problem lies in the dual meaning of "". Sometimes it's a value, sometimes it's nothing. Take this for example: List = "Apple":@FM:"Banana":@FM:"":@FM:"Carrot" Item 3 in this list could mean (a) a FIELD whose content is "", or (b) a FIELD with …
-
Code is always helpful to see in these situations. You are setting field <4> of the Colors property?
-
If it's not running on a terminal server or anything, then the INI file should be in one of the locations Don mentioned.
-
Note, however, that disabled means the user can't interact with the control, which means they won't be able to highlight text for copy/paste purposes.
-
You want to use ShellExplorer (which is a direct WinAPI call). I think it's already defined in OI. Here's some code the opens the users folder: Compile Function Test(VOID) Declare function Get_Property Declare subroutine ShellExecute hWnd = …
-
I wrote a quick app that will load \oinsight.ini and allow you to edit it and save it. Since I am going through the API to get to the file, Windows should direct me to the same INI that OInsight.exe gets directed to. You can download it here. Run …
-
This should help: https://forum.srpcs.com/discussion/comment/3079#Comment_3079
-
Try 4.1.4 RC5 and let me know if it's better.
-
How are you changing apps? I know I've seen this happen, but it must be a unique set of circumstances because I can't recreate it at will.
-
I've made a note to see if I can fix this. This issue is trying to get the child control of a form to be notified when the parent changes Z order.
-
You asking if you can disabled tooltips? The answer is yes, using the TooltipsEnabled property.
-
lol. I really should read my own version history.
-
I tried to recreate this using the OI 10.0.7 and SRPControls64 4.1.3. I simply cannot get this error to occur with your RDK or any form I create. There seems to be some ingredient I am missing in my environment.
-
Perhaps you can email me a copy of the form's source? Perhaps it's a particular combination of controls.
-
I can't seem to recreate this on my end, but if you suspect the 32-bit ocx is conflicting, you can always unregister it using: "regvsr32 -u srpcontrols.ocx"
-
It tells OI that variables are to be treated as UTF-8 encoded instead of ASCII encoded. This comes into play any time OI needs to convert to Unicode, such as when pushing a variable into a control or passing variables to Unicode APIs.