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
-
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.
-
No. Don't worry about dependencies of system DLLs. You'll get a lot of false negatives. Just look at the nodes that are direct children of SRPCONTROLS64.OCX.
-
Sorry for getting in those so late. My guess is that the machine is missing one of the dependencies it needs, most likely VCOMP120.DLL, which is the Visual C++ runtime for Visual Studio 2013. To find out exactly what's missing, you could DependencyW…
-
Fixed in 4.1.7. Thanks for isolating the issue.
-
The documentation says there must be at least one To email. You can, however, see what happens if you set it to "()". I haven't tested this myself yet, but it's worth a try.
-
Thanks, Jared. I updated the documentation to emphasize this point.
-
SRPControls.ocx/SRPControl64.ocx for ActiveX Controls you own. SRPEditor.ocx/SRPEditor64.ocx for the SRP Editor. The installer takes care of this for you.
-
Just happened to be at my desktop while waiting for dinner to finish. :)
-
Yes. SRPUtil.ocx is deprecated. SRPEditor.ocx will be used exclusively for the SRP Editor. If we need to support other tools, we'll make special builds of the OCXs for them. This will ensure no tool messes up a version dependency for any other. Plus…
-
4.1.6.7 fixes the licensing crash. If it's still crashing, let me know.
-
I do see a crash, but only if I disable the licensing. Otherwise, I cannot recreate the crash by simply putting a control on a form.
-
You have to use the RDKINSTALL command for these RDKs. However, for simplicity, you can use this installer for 2.1.5.
-
It should work in theory. The panel control isn't doing anything OI-specific to the forms. It does alter the Window's style bits to convert it into a child window without title bars.
-
Actually, if it was a bad password, the error would be "Invalid username or password." This error means it can't even start the engine. I should probably change the error from "Invalid application" to "Failed to start OEngine" or something.
-
This error occurs when the installer cannot connect to the OI engine for any number of reasons. Maxed out user count. The engine couldn't be located in the given directory. There is no SYSPROG application. You name it. If it helps, you can download …
-
Okay. I was way off here. I guess the C++ sort does in fact use ASCII order, so I'm gonna eat a slice of humble pie for a second here... ...now that I've had my fill, here's the reason SortRows is behaving differently from SortSimpleList. SortRows…