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
-
My guess is that your RDP's emulation of uxtheme.dll was failing, which is what the edit table uses to draw UI elements. I can't work around these kinds of RDP issues. I've had RDPs suddenly give incorrect SIZE property values. The edit table uses …
-
You can use your old method. The installer was just meant to automate things for people unfamiliar with the registration process.
-
Thanks for jumping in @AusMarkB. Since CellPrompt is multi-valued, I treat "" to mean don't change. That is why you have to pass a SPACE character to make it go away.
-
I don't think the Status Window saves it's state, so that is not a bug.
-
I'd expect the layout to be bad because the startup code does a lot of layout work. (Many people don't realize that OI 9 has some frustrating bugs that try to constantly 'reset' controls after I resize them). So, if the SIZE property is returning ""…
-
RDPs add a source of failure. Since they emulate certain aspects of Windows, they can confuse the UI sometimes. So, unless we can recreate this in a non-RDP scenario, I'm not sure how to fix it, especially if it's a matter of the SIZE property simpl…
-
I've not encountered this yet. The code in question is just reading the SIZE property of a control, which is concerning. Is this happening on a remote connection?
-
Thanks for posting, @prattspets. I let this post slip through the cracks. @Mihyar, is this on a modal dialog box? The problem with modal dialog boxes is that they do not allow for synchronous event handling. It's an age-old limitation of OI. If this…
-
Fixed in 3.2.3. When select a predefined theme, it should fully apply the theme and no longer leave behind the black backgrounds. Note, if you are unable to update to 3.2.3, you can alternatively Export your SRP Editor Options from a good copy and …
-
My guess is that your PC is losing the font somehow.
-
Have you run OI's client install? I'm just using the OIPI's printer control.
-
The main issue is duplication. One thing that might help me investigate this. On the "broken" machine, click the Export button on the Options window and send that to me.
-
Here you go
-
Fixed in 2.1.9.
-
That's a bug. It should return 1. The problem is that Locate uses indexing, and it appears that later values are replacing the hashtable keys of earlier values. I'll get that corrected for the next release. I can't really say why you can't edit New…
-
Because SRP_Data is unassigned? I think you meant to pass SRP_List_Data.
-
It's because "" is not in your list. Your list has one element whose value is "":@VM:"". You need to pass @VM as the delimiter in your "Create" call. SRP_Data = SRP_List("Create", DataTxt, @VM)
-
All my testing was on stand-alone forms. I forgot to test MDI children. 4.1.14 fixes it.
-
Prior to 4.1.13, when you clicked the button, it wouldn't depress. If you see it press and release, then you have the fix. However, you do need to qualify any OLE event in order to capture them.
-
Guys, I must extend my sincerest apologies for dropping the ball on this one. I hunkered down and found the issue. This is fixed as of version 4.1.13.
-
Kudos. You found the edge case. This is in fact a bug, and the humble pie was a tad bitter. This issue only occurs when the picture control is the exact same width/height ratio as the image. SRP Controls 4.1.13.2 will fix this.
-
Press Ctrl+S to select new tables or scroll to the bottom of the list and click the Select Tables hyperlink.
-
I'm not able to recreate this. One theory is that this is a redraw issue. The layout has been set, but the control is not refreshing. What happens if you force a refresh?
-
My theory is that OI 10 uses a more proprietary way to close it's windows, so it's probably not possible for the panel to close them correctly unless Revelation is will to document how to do so at a C++ level.
-
Instead of having RemoveForm destroy the window, what happens if you set that parameter to 0 and close the window yourself using End_Window?
-
I can't recreate this in OI 10.0.8.1 with a simple form. Is this only happening on the form with the Panel control, because you made it seem like it's happening for all forms.
-
"Restoring Saved States" is where the SRP Editor is re-opening stuff you had opening before, restoring where you were in the code, and restoring things like bookmarks and folding states. Yes, folding states are remembered between sessions.
-
Given the silence, it seems no one at SRP has had to interface with fingerprint scanners. My preferred method of working with non-OI API's is to wrap a .NET API inside a custom, simplified .NET class, then use RevDotNet to make calls to that wrapper…
-
SRP_List calls directly to the DLL APIs as do the raw methods. SRP_List used to be a wrapper around the raw methods, but since there was so little code, I decided the overhead wasn't worth it. At some point, I inadvertantly must have introduced the…
-
Fixed in 2.1.8.0, which is on the products site. If you just want the RDK, you can download it here.