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
-
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.
-
Actually, you bring up a good point. It's problematic if the OCX is deleted but the DLL is locked. In that case, a lack of OCX could blow things up significantly. I don't think that was your problem though since you keep the OCX in a different locat…
-
I might need some more details because the order of the installer is this: * Lock check SRPEditor.ocx * Lock check SRPUtilities.dll * Copy SRP Editor RDK to temp folder * Copy SRP Utilities RDK to temp folder * RDKINSTALL SRP Editor RDK …
-
The following code: If SRP_Json(ObjHandle, "New") then SRP_Json(ObjHandle, "SetValue", 'How "are" you', 'Just "fine" I say') Ans = SRP_Json(ObjHandle, "Stringify", "FAST") SRP_Json(ObjHandle, "Release") end Should produce this…
-
This is a good idea. Moving forward I'll date the version numbers.
-
I keep putting this feature off in lieu of others, though I'm not sure why. I'd probably benefit the most considering how many OI products I work on. Consider it bumped, though I won't offer any specific ETA.
-
Instead of REDRAW (which is an OI property), try setting OLE.AutoPopulate to 0 and back to 1 when finished.
-
@MattCrozier. Yes, the vcredist is only necessary for 64-bit OCX. If it's hanging, do a Google search. You'll get lots of hits. It usually indicates something is broken with Windows Update.
-
Fixed in 3.1.3.2.
-
I'm not able to recreate the issue on this end using just the UTF8 flag. Did you check for duplicate SRP_EDITOR entities in the SYSREPOSWINEXES table?
-
I think I know you're problem. I think you have copies of SRP_EDITOR entities in the ESSEX302 app that are outdated and overriding the new SRP_EDITOR. You need to remove any SRP_EDITOR entity that is in any app other than SYSPROG.
-
Is New_Data in ARRAY format or LIST format?
-
Is the UTF8 flag set differently for ESSEX302?
-
The controls look for an .SRPLIC file in a specific order. The working directory, the oinsight.exe directory, System32, and anything in the PATH environment variable. Not knowing your actual shortcut parameters, OI directory structure, or whether or…
-
Nope. OI controls are based on Windows common controls, and the windows BUTTON controls (which is what the checkbox actually is) does not support a way to customize the size of an individual check box. I do think there is a way to change the Windows…
-
Page 16 of Sprezzatura's March 2007 Electronic Newsletter is a good starting point. It takes some work to make it happen, but it's theoretically doable. You'll have to deal with pointers, windows structs, and callbacks to make it all happen.