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

  • 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 …
  • 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),…
  • It seems like the same issue as reported here. It's on my radar to fix. I'm very close to (finally) releasing the SRP ActiveX Controls (pretty big update), and then all my attention will focus on giving the SRP Editor some much needed attention.
  • You can try this beta build of 4.2 and let me know if it formats correctly.
  • Yes, I do this exact thing with the SRP Editor loading screen. I use a Picture control to show the logo and a STATIC label beneath it to show progress.
  • Just one at a time. The idea was never to make this a rich content control. It started out as just images, but captions were later added so we could show text when the image was "empty." What is it you are hoping to achieve? Maybe there's a way to g…
  • 1. It depends on the client's need to be running on supported software. Revelation is dropping support for OI 9, but that doesn't mean it won't continue to work. You just won't get updates. For some of our clients, this is a show stopper since runni…
  • You're right, that is currently not supported. I'll make this a high priority item as it's a long overdue oversight that should be remedied as soon as possible. Give me some time, though, as adding locale support to all formatting options is a lot.
  • If you registered them on the VM workstations, then I can't really explain why OI can't load them. If you open REGEDIT and then search for SRPEDITOR.Button.1, does it find anything? If so, look in the nearby InprocServer32 folder and see the file pa…
  • You have to register the SRPEditor.ocx on each machine that uses it using the regsvr32 command.
  • These are the latest builds. If you tell me what version numbers you want, I can get you what I can. Build dates are hard to run off of since Windows sometimes will change those files dates as they get moved around and copied. SRPUtil.ocx is depreca…
  • SRPEditor.ocx SRPEditor64.ocx SRPControls.ocx SRPControls64.ocx SRPUtilities.dll (32-bit) SRPUtilities.dll (64-bit)
  • I have an update on this. I had to work with Revelation to troubleshoot and it turns out there needed to be a fix in OpenInsight.exe. It's my fault I didn't find this during the 10.2 beta, so we'll have to wait for 10.2.1.
  • Indeed. Long overdue.
  • Yes, that will be fixed soon. I've just wrapped up DPI support in our OLE controls. Once those are released, then the SRP Editor will get some TLC.
  • I had to significantly strip down your code to remove all your application dependencies. The method.progress routine seems to behave fine in my test, but I noticed that you offer the option to show a cancel button using, I'm guessing, the SRP Popup …
  • I am unable to recreate this thus far using the pseudocode you provided. I am going to need more information to in order to isolate this. Is there a chance you are changing the PaneCount property somewhere on your form?