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
-
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.
-
Check the Default entry in the Favorites folder. That is a number. It indicates how many items are supposed to appear. It might be set to 0 right now. Set it to the number of items in your favorites.
-
That appears to be a Byte Order Mark (BOM). OSRead does not support recognition and removal of BOMs. Thus, you have to look for this leading UTF-8 sequence yourself, and subsequently remove it, before passing it to SRP_Extract_Xml. Also, make sure …
-
That actually confirms my theory. The third tab tells the OI to "scroll" the parent form 2 pages instead of 1. I'll look into a VSCROLL property as a possible workaround.
-
I don't think it's anything my control is doing. The panel control doesn't listen to events that happen on the form. I'd start looking at the code that is executing during the tab change. I presume it's a multi-page form. Changing a page in OI is eq…
-
I see the issue. You are using a PaneSpacing of 4 while also enabling AllowXPTheme. In this case, the Windows theme draws a single vertical line at the end of a pane. Then you have the 4 spaces after the line before the next pane. Unfortunately, I …
-
Sorry, but that is currently not supported. I can note as a desired feature, but I can't offer a time frame as to when it might be added.
-
Barry, that is correct.
-
Honestly, I don't understand why they aren't both blurry. OI 9.x is not programmed to work with DPI. It should be blurry on all machines. Perhaps there is some other software that is tricking Windows into doing it non-blurry? If DPI support is a pr…
-
I might need your setup to see what you're seeing. I tried a couple different fonts and the text appeared evenly spaced within pane's borders. Note also that the SRP Editor has been using the feature for ages and they look correctly spaced too, even…
-
Right click the shortcut you are using to run OI and click Properties. Check the Compatibility tab. Near the bottom is a button that reads, "Change high DPI settings". See if either of these are checked. If not, try setting the Compatibility Mode to…
-
This question is somewhat difficult to decipher. Are you asking if we convert it? Do you mean SRP_Com? Or are you asking how to convert it? What are you asking it to be convert to? A hex number or a more readable error? To convert the error to hex,…
-
This is running on OI 9.4? Did you guys set up some kind of manifest to force OI to manually scale to the display settings? By default, OI does not support scaling in this way. In fact, I can't recreate this issue using a default copy of OI.
-
Version 2.0.6 RC2 will fix this.
-
Synchronous event handling means the control is "suspended" while OI handles the event. Synchronous is only necessary for events like BeforeUpdate, i.e., events that let you cancel an operation. Events not designed to be synchronous, like click and …
-
I can't say for sure since you aren't showing us what the default variable contains. One option is to try doing an asynchronous event. I never do synchronous events for clicks.