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,123
- Last Active
- Roles
- Administrator
Comments
-
In RegEdit, right click all folders in the path and check to see that you have permissions to read.
-
I've tried various combinations, and I can't reproduce this issue. I tried it running both in Administrative Mode and without, and I can query and read without issue. I tested in 2.2.5, though that really shouldn't matter since SRP_Registry has chan…
-
Quite the whoopsie on my part. That will be removed for the next release. My apologies.
-
Okay, Don and I discovered the issue. This has to do with declaring a table to be a CODE type table in the SRP Editor. At that point, the SRP Editor assumes it can parse whatever you load from that table. The next version of the SRP Editor will do a…
-
Out of curiosity, I searched for the word "test" in SYSOBJ and got over 1000+ result, no hanging. All Table Search does is read the record and do an Index or IndexC on it. It shouldn't really matter what is in the record. I use the same simple algor…
-
Yeah, that's on me. I'm not exactly sure when I fixed it and I clearly forgot to make a note of it.
-
Are you up to date? I get the same result (in non-UTF8 mode) using SRP_JsonX or SRP_Json in the following test code, which I ran on OI 9.4. SRP Utilities version 2.2.4. Compile Function Test(VOID) $insert SRPJSONX Declare function SRP_Json, UTF…
-
Sorry, no. SRP Mail simply returns the message provided by the server. The latest version of SRP Mail leverages .NET to send emails, so perhaps you'd get more informative errors, but that too does not specifically provide error codes. I can add this…
-
I just announced a new release: 3.3.7. It seems that when I upgraded my OI 10 dev environment to OI 10.1, it cleared out all my splitter bar settings. 3.3.7 restores those settings so that, if you lose the status pane, you can now grab the splitter …
-
OI 10 help works now in 3.3.6. It will open it in the OI 10 IDE and bring the IDE to the foreground.
-
That was my conclusion. I can always jump to a direct page, but I have to know the exact url.
-
It's not possible to link to OI 10 Web help because there is no API provided to do specific searches. I could, at best, have the shortcut just open the home page of the help, but that's it. You'd still have to do your own searching.
-
Whenever OI 10 gets updated, the menu gets updated as well, so the shortcut disappears. The SRP Editor menu item can always be re-added via the SRP Editor's Options dialog. This means you have to launch the SRP Editor manually, which you can do via…
-
My guess is that OI 9.2 doesn't support .NET 4.0, which is what SRP_Mail requires. In OI 9.4, the STARTDOTNET routine has two parameters, the second of which is used to target the version of .NET requested. I'm not sure when this second parameter wa…
-
If you open RegEdit, go to "Computer\HKEY_CURRENT_USER\SOFTWARE\SRP\SRPEditor", and delete all the values in that location, you've essentially reset all options.
-
The fact that keyboard commands don't work tells me that the control is not getting focus for some reason. Perhaps you can try to force focus when the form finishes loading?
-
Can you see the vertical scroll bar before an item is expanded? My WM_MOUSEWHEEL message handler only scrolls if the Tree control has the WS_VSCROLL style bit (and isn't disabled). if( IsWindowEnabled() && (GetStyle() & WS_VSCROLL) ) …
-
Oh, yeah. Forgot to answer that one. Just right click the SRPMail.dll in the OI folder and the version of the DLL is the version of SRP Mail you are using. The latest version is 3.0.1.
-
2008 RC2 doesn't support TLS 1.2 without some effort. See the link below for more details. SRP_Send_Mail doesn't have to specify the version of TLS. It relies on Windows to use the highest version available to both the client machine and the server.…
-
What version of Windows? What version of SRP Mail? Windows has a lot to do with what TLS is used during HTTP communication.
-
The problem is that there are > characters in your command on Line 29:
Timecard" LargeIcon=".\IMAGES\32X32\EMPLOYEES-ARROW_RIGHT.PNG" Tooltip="Clocking -> Timecard."/> Some parsers are forgiving when such charact… -
Email me both your Init XML and the failing AddGroups XML. Maybe I can see what's failing under the hood.
-
You can run it from any application since RDKINSTALL will place the entities into their proper location.
-
Try 2.2.3.2 and let me know if that fixes it.
-
There were recent changes to better support Unicode, so maybe something is happening there. If you can get me a link to download that EXE, I'll see if I can isolate the problem and get you a fix.
-
I don't have a solution other than to recommend against using the AllowXPTheme property. I have no access to the image from within the SRP Tab control in order to render it properly.
-
Everything except the auto text settings are in the registry at Computer\HKEY_CURRENT_USER\SOFTWARE\SRP\SRPEditor.
-
This works for me in 2.2.2, but you will still lose the trailing 0 unless you quote the numbers. OI is the one turning 3.10 into 3.1 before the array is passed into the routine. If you opt for the 'N' option, you will always lose insignificant 0's b…
-
Chris, you might be right. I'll have to investigate further, but it might be the same issue. If the OI 10 button has a Window Class name of "BUTTON" and does not use the BS_OWNERDRAW, we're in the same boat. We always suspected the SRP Tab would be…
-
I looked into this. In OI 9, buttons that use a custom bitmap use an old-school technique for rendering the bitmap that involves setting a style-bit in the button calls BS_OWNERDRAW. This tells the button that OI wants to draw the button manually, w…