Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
MattCrozier
About
- Username
- MattCrozier
- Joined
- Visits
- 1,788
- Last Active
- Roles
- Member
Comments
-
Ok, I think I've worked out how to run WinDbg alongside OI. The following is the WinDbg output and call stack at the crash point: ModLoad: 00000000`0af40000 00000000`0af5b000 C:\TEMP\SRPcontrols_Crash.dmo\V119.dll HEAP[OINSIGHT.exe]: HEAP: Free H…
-
How can you determine what the cell height should be, given the font size?
-
I've tried both SRPEditTable.ocx and SRPControls.ocx separately. That is, when I test SRPEditTable I don't have SRPControls registered at all, and vise-versa. Only SRPEditTable is out in the wild at this stage, and I'm just using SRPControls in ho…
-
Yes, I'm quite willing to do what I can to help get a better understanding :). Thanks for the downloads, Kevin. I can still replicate the crash and get a dump file. I can't see any extra info in the lm or k commands though - but I'm not sure i…
-
Yeap, seems to work well. I couldn't just SET_ZORDER for all the groupboxes for every SRP edittable created - I had to specifically work out which groupboxes contained which edittables and only do it for those.
-
Actually, even better than destroying and recreating the groupboxes is to just Send_Message( SRPedittable, "SET_ZORDER", groupbox)
-
what would happen if you dynamically created the group box controls as well Brilliant!! That's even better - thanks. The more the promoted CREATE event can do itself, the better. I've just tried a simple test of DESTROYing the groupbox and reCREA…
-
Thanks for the hints, Don and Mark! I did try recreating groupboxes and/or edittables on the form and resaving - to no avail. Then I remembered that we don't actually have SRP EditTable controls explicitly painted on the form using Form Designer - …
-
Great - thanks for the quick response. All looking good now. Cheers, M@
-
Hi Don, Kevin - I've just installed the new versions of SRPcore.ocs (3.0.9) and SRPeditTable.ocx (3.0.6), and can say that the above issue is resolved (and a horizontal scrolling issue). Great - thanks! However the dropdown icon for a COmBo CellTy…
-
Great stuff - thanks very much for this, Don! I appreciate the interim version :-) Cheers, M@
-
Great - thanks Don.
-
Hi Don, We are now getting ready to deploy another version of our product. I'd love to include the next release that fixes this problem (as well as the other fixes since v3.0.4, which we are still stuck with). Is there any chance this might be rele…
-
Good stuff - thanks Guys! Looking forward to the next release. Cheers, M@
-
Curious! - I get the same thing happening even if I remove the option button. So I guess that's a red herring. ESCaping from edit mode has no effect - the first column remains borderless. However, I do get a border in the first data column if I don…
-
Bump - just wondering if I'm the only one seeing this with the new version of SRPEditTable.ocx ? Cheers, M@
-
Hi Don, I'm using the separated SRP EditTable control, v3.0.5.
-
Thanks Kevin - just wondered if this was a feature. I've got around it by writing the result to a temporary file which NSIS can then read. I just want to determine if the OE licence has expired before proceeding with an upgrade. Cheers, M@
-
Ah, lovely - thanks!
-
I also find it handy to include the Product Version column in Windows Explorer detail view of any folders that have the ocx files. This shows the versions of any copies of the controls you have that may not necessarily be the ones registered.
-
Hi Barry, Yes, we're using NSIS, and worked from the SRP template scripts. So far, I'm looking at setting up a local 'C:\Vernon Systems' for all our stuff - similar to 'C:\Revsoft', and putting both the OIclient, and our own application client (inc…
-
Thanks Don. Yes, I've seen those articles and am calling the ClientSetup with command line switches in silent mode from my application installer. But I wonder if there is a way to build a client setup that doesn't require access to the central OIN…
-
Ah, yes - I hadn't twigged on that. The first click just clears the tooltip, the second can then tab to that window. This isn't the case for the DOS file though so it seems that's a different issue. Cheers, M@
-
Yeap, Shift+F1 is ok for me now too. I am getting difficulty navigating to open DOS files, or even open Records, in the left-hand pane though, but that's another story. I have to click twice to switch to a SYSPROCS record for instance, and any cl…
-
Good stuff - thanks Kevin!
-
Hi Don, We'd be very interested in this - I've been hanging out for this section on your products and wiki site . Are you happy to send the doc our way? :) Cheers, M@
-
Data can be stored in any encoding be it ASCII or UTF-8, it will simply be re-encoded into UTF-16 when it is stored into memory. This is a one time operation that is not very expensive. In fact, it's already happening a lot in OI. Have you ever used…
-
In UTF-16, every character is a word (two bytes), which covers all the known Unicode characters. What does that mean for existing data (including source code presumably), most of which will be stored as single byte UTF-8? Will the OI 10 upgrade ha…
-
Turning UTF-8 before compiling could break programs that use Unicode characters within their strings. It is better that someone that doesn't need UTF-8 just turn it off at their own discretion. True! I'd be aware of those cases as it's pretty rare…
-
Yeap, at least on OI 8.0.8. I've just tried compiling a 3300 line program - in UTF8 mode this takes 64 seconds, but with UTF8 off - 4 seconds!