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
-
Ask and you shall receive. Try 1.2.7.0. To enable, you must add HigherPriority=1 to the INI file under the [Launcher] section. This will set the priority to Above Normal, which you can confirm in the Task Manager.
-
This is a known issue, try the as-yet-unreleased 4.1.20.8.
-
The SRP Editor calls BLINT, which is OI's VNAV checker... or it was in OI 9. BLINT still exists in OI 10 but it always returns "". I'll have to dig into this to see if there's an alternative routine or if there is some alternative way to call it. I…
-
There's definitely more to this. I've tried this steps several dozen times and can't get a single crash. Perhaps it has to do with the search itself? Does the search term have instances in both routines? How are you closing the debugger? Are you jus…
-
Interesting. By disable, do you mean setting the ENABLED property to 0?
-
This is something I created some time ago with the thought of making it official, but it is quirky enough that we've been loath to advertise it. Essentially, it's a thin wrapper around the preview you see in Windows Explorer. The problem with it is …
-
In case others read this thread, we decided to release this as 3.0 since there are some changes that could require some developers to adjust their code. 3.0 is a drop-in replacement for some developers, but not all. Read our blog post for more detai…
-
The best I can offer is SRP Mail 2.2.0.3, which will try to avoid passing just "" when there is a RevDotNet error. The issue will probably still occur, but at least you'll know that RevDotNet is not working if you get "RevDotNet Error" (along with a…
-
If it's always returning "", that tells me that OI is unable to make the .NET call into the DLL. Did you run OI's Client Setup for this test system to make sure RevDotNet was fully enabled?
-
Just to be clear, step 2 means doing an actual search such that you cause the search to be highlighted throughout the document.
-
I was able to confirm the issue and get it resolved. You can download the RDK here.
-
Fixed for next release. If you want the fix right away, download SRPEditor.ocx or SRPEditor64.ocx 3.3.3.3 and replace your current one. That's all you need for the crash to go away. To recreate the crash: * Open 2 documents in the SRP Editor * …
-
Carl Pates already knows. He pointed me to the problem. OI 10.1 changed how it queried for information for a COM method, and my old code wasn't responding to that particular API code. This was only a problem for COM objects within the OCX, not for t…
-
I rewrote SRPMail.dll from scratch in order to break free from the open source SMTP library I was using in favor .NET. You can download 2.2.0.0 for testing. Note: it supports TLS, but not SSL (as SSL is less secure). Also, this RDK uses RevDotNet, s…
-
4.1.20.6 should fix this particular problem.
-
It's frustrating, I know. The controls worked in 10.0.8, so why is it our fault they don't anymore? Don't know. I'll check things out when I can. In the meantime, feel free to post 10.1 issues with our controls on our forums. These reports give me a…
-
You're never going to get headway with Revelation when you encounter bugs that manifest in our tools. You have to prove that the bug is on their end by recreating issues in non-SRP controls. I'll see what I can find out, but I have a lot on my plate.
-
The error code is DISP_E_BADINDEX, which can happen when a COM host tries to access a property or method by index, but the index is invalid. My guess is that 10.1 is not correctly loading the Type Library that informs OI what the properties and meth…
-
Try the SRP Utilities SRP_Get_IdleTime function.
-
Yes, probably. The caveat is that the SRP Zip Utility only works for the traditional zip archive format, i.e., .zip files. It won't work on other formats, such as .7z. If that fits your requirements, then the SRP Zip Utility works a lot like OSRead …
-
Not, currently, no. I'll add the feature to the list, but I can't give you an ETA.
-
Good catch. If you want to use the multi-select flag, then you have to include the use-explorer-style flag, which is 0x80000. So, both flags together would be 0x80200.
-
CHOOSEFILE is not purposefully showing that particular dialog. I use CHOOSEFILE all the time, and it always shows the default Open File dialog for Windows. What version of Windows? What version of OI? Are you running OI in Compatability mode?
-
I learned something new today. Thanks.
-
That's not surprising because REVCAP32.DLL is supposed to load the engine, and the DLL can't be found. I'm almost certain you need to use the solution in the above stack overflow link.
-
Wow. Good catch. I bet that is exactly the issue. I was not aware NSIS added that.
-
I don't think I have an answer for you. The DLL is there but Windows isn't finding it. (BTW, that error message is not coming from NSIS or the SRPUTIL plugin. That is Windows). My only guess is that something is preventing the installer from seeing …
-
The only way to find out is to debug the script, and the only way to debug NSIS is to place MessageBox statements in our code to display values. In this case, you want to examine the $OUTDIR variable.
-
Nope. Regsvr32 is not meant to be registered. Windows looks for DLL using a standard list of directories. It looks in the current directory, then System32, then any directories in the environment's PATH variable.
-
It's hard for me to nail down the cause, but I can tell you why the error occurs. The current working directory is determined by the SetOutPath command in the script. This is set to whatever directory you select in the Directory screen. After you en…