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
-
Try out 4.1.20.11. This one resolves the focus issue. I still think the check box has to do with the mouse moving as you click. I noticed that if I try to quickly click several boxes, some of them don't respond because my mouse cursor is moving too …
-
I see, I was thrown off by your use of the term header. I thought you were clicking on the title bars of other MDI child windows. I can recreate the lack of focus change, so I'll look into that. I can't recreate the checkbox issue, though I should p…
-
I am having trouble recreating either of these issues in 4.1.19, especially if you are subclassing the MDICLIENT.
-
The double-click issue has been around a long time. I've tried desperately to solve it, but I haven't been able to. For some reason, Window sends a WM_LBUTTONDBLCLK message to another window while the SRP EditTable has focus. I can't explain why so …
-
Can you to be more specific as to why 2.2.1.4 is better?
-
Give 2.2.1.5 a try. I confirmed that in OI10, the unicode is preserved both going into SRP_Run_Command and coming out, which can be confirmed using the DIR command. If this doesn't work, then I suspect that ImageMagick isn't handling the encoding co…
-
As a Visual Studio user, I use this feature religiously, but sadly, no, that is not supported in the SRP Editor. Someday, perhaps.
-
I updated the DLL stub to use LPWSTR to force OI to do all the encoding/decoding. Version 2.2.1.4 should work.
-
These 2.2.1.3 RDKs should do the trick. Commands like Dir and Copy aren't actually EXE's, so they have to be routed through CMD.EXE, which was outputing everything as ASCII. A simple flag cleared that up. Sadly, though, other commands like IPCONFIG …
-
Here is 2.2.1.2 64-bit if you want to test if this quirk is resolved in OI10.
-
Try 2.2.1.2. The problem was actually the Win32 API. I was calling CreateProcessA, which is supposed to convert everything to Unicode and call CreateProcessW. Apparently the 64-bit version does this, but not the 32-bit version. This version of SRP U…
-
This was changed on Revelation's end. The next beta release of 10.1 ought to fix the issue without changes on the part of the SRP Editor.
-
You are using the pipe correctly, but BASIC+ will not compile literal strings greater than 256 characters. You'll have to break that line up into a few regular concatenations. Note also that if you indent the next line after the pipe, that whitespa…
-
OI is single threaded, so just make sure you do it in a background thread, as you indicated you plan to do. Other than that, I can't really predict if there will be any conflicts. Indeed, I'd be interested to know if how well it turns out.
-
Sorry for the delayed response. When you set DevelopmentMode to 0, it avoids passing the /DV command line switch to the exe. In OI 9, this worked because the exe's default behavior was the same as /DV=0. In OI 10, it appears that omitting this flag …
-
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.