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,124
- Last Active
- Roles
- Administrator
Comments
-
The default behavior doesn't allow this because you end up with two functions mapped to the same action. If you really need this feature, then you can do it manually. Essentially, choose an action like double-click or right-click. On the event, chan…
-
4.1.4 has been officially released on the products site. That is the latest release.
-
Sorry, Colin. Somehow I overlooked this post. Sadly, no, the marquee does not support text.
-
Check boxes don't support Commands and therefore can't be disabled. Only buttons can be disabled. The thinking was that other kinds of controls should be used sparingly to avoid turning the Ribbon into a form. You can hide a check box using the Cont…
-
The problem is that the rows don't move when you sort because the "rows" aren't being sorted. Rather, you are simply re-loading the table with data you've sorted outside of the control. I'm afraid your only solution is to follow up your sort with an…
-
We've been running it through it's paces with a particular client, so it's nearing completion. Note, however, that this tool will not just automatically work with existing Git repos. It's designed to synchronize the OI Repository to a single Git Re…
-
-
You can set the control's Border property in it's properties panel.
-
I've been trying to recreate this, but I'm not having success. What is underneath the Backstage? Is it an MDI window or just a regular window? How are you disabling the controls? Normally or with the Hard flag? You said it is more frequent when the …
-
Jim. Download version "4.1.5 Test" here. You can just replace the OCX you have. This version will create a file called titlelistdump.txt in the working directory every time the OLE.TitleList property is set. Make sure to run this in the environment …
-
Both files are identical and producing the correct Unicode value of @VM which I suppose means programmatic conversion to Unicode is working regardless of environment. I think the next step is for me to create an SRPControls.ocx build just for you th…
-
Yes
-
No worries. For what it's worth, I've been there.
-
BACKCOLOR
-
Static controls do not support text selection. You can fake it using edit box controls with no borders and matching the background to the form.
-
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 …