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,123
- Last Active
- Roles
- Administrator
Comments
-
Something was causing the button to get focus, and when that happens, since it's a toolbar button, it tries to pass focus onto the next control. The next control on your form that can actually get focus is a radio control on the first page. This is …
-
Fixed in 4.2.1.2.
-
Yeah, one of these days we're gonna write our own BASIC+ linter.
-
Yes, that's the good news. The bad news is that the behavior is pretty weird, so it'll be a bit of work to track the issue down. If you notice, when you click on the button, it actually jumps back to the first page. This happens the moment the butto…
-
Good news. I have an old copy of Opto and was able to recreate this using your video. Lemme investigate and get back to you.
-
One thing to investigate, if you haven't already, is how you are qualifying events.
-
We actually had to do a little research into LINEMARK. As far as we can tell, it simply inserts a carriage-return line-feed (CRLF) into the code. This is why it throws of the debugger. LINEMARK seems to be entirely deprecated at this point and there…
-
Ooh, thanks for catching the oversight. SRP Schedule events were added to that page. I use the OLE prefix as a best practice by habit to avoid conflicts. You never know if OI will add something later that will conflict with one of our names. I did…
-
We appreciate the tip. I hope the new documentation provides some insight on how (a)synchronous event handling affects timing.
-
Hmm, I'll add it to my todo list then. All I do is pass the SYSPROCS key of the source code to OI's BLINT stored procedure. Not sure why it's returning all that nonsense for the SRP Editor and not the OI editor.
-
Have you tried OI's editor to see if you get the same VNAVs?
-
Oh man, I've been spending all day trying to figure this issue out, and in a strange twist of fate, your post helped me realize why I wasn't able to solve it. To explain, let's use the Office2013 theme as the example. That theme, sure enough, shows…
-
All those themes had the button drawn in 4.1.21.x?
-
You mean this? Just kidding... I just added it. I think the real answer is that the documentarians are also the programmers. Our refinements happen in tiny adjustments over short slack conversations, then we get back to work. It's not our intention…
-
And if you are curious why we use that syntax, it's because OLE property indexes cannot use periods. I think you might not be able to use commas either. So we defy the powers and use both... stacked on top of each other.
-
Ed, I know what is causing your issue. You are qualifying all events as synchronous, which includes the OnGotFocus event. Not only do you get the unwanted OnItemDblClick, but did you notice the unwanted OnLostFocus events too? When OnGotFocus is syn…
-
Yeah, the behavior is there, it's just not drawing that graphic. It appears in other themes, just not the System theme for some reason.
-
Yes, I can reproduce and it is next on my todo list. I'm still working on Keeman's phantom double-click issue.
-
SRP_Math does arbitrary precision math, meaning you can do arithmetic on numbers that have hundreds of digits, not just the 15 or so you limited to with BASIC+. For example, this code will break to the debugger: A = "0123456789987654321" Ans = A +…
-
No, it only affects comparison. If you add 0.0 and 0.000001, you'll get 0.000001.
-
Looks like it depends on whether or not your value is quoted. In my tests. '0.00001' (5 decimal places) is equal to 0, but the same number unquoted is not zero. However, unquoted, 0.000001 (6 decimal places) is equal to 0. Thus, 5 decimal places or …
-
Fixed in 4.2.1.1.
-
These are the worst kinds of bugs to track down. The fact that things suddenly are working is not proof that there's not a problem. It's possible, though, that the issues are not related. Ed, I don't waste anymore of you time trying to recreate th…
-
Can you send me one of the image files you are using?
-
I am still struggling to recreate these issues. I tried various environments. Are you guys still using the OCX I linked here? If so, can you download the latest from our products website and see if the issues persist? If they do, then I'm going to n…
-
Give this one (4.2.1.0) a try and let me know if it resolves these two issues.
-
Sorry. This is what I get reading too fast. What happens if you just qualify the OnClick event? Debugs will absolutely interfere with the event chain because they cause the mouse and focus to change in the middle of something like an OnMouseEnter.
-
Are you re-registering the OCX when you switch?
-
I'm not able to recreate either of these symptoms using 4.2.0.5. What version of OI? Are these forms MDI children or regular forms? Are there promoted events involved?
-
The idea was that you only have to set the format once using en-US standards and the controls would automagically localize it for you. Try "#,##0.00" instead and see if that works. Also note that if you use $ in your number format (without quotes),…