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
-
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…
-
Nevermind. I often forget that the SRP Tab Control manually redraws all other OI controls in order to simulate the appearance of the tab control being behind other controls. So, this is my fault. For now, the work around is to not set the AllowXPTh…
-
Do these buttons need the button text? OI 10 buttons have more features, so it looks like it's centering the button contents. I bet if you remove the captions and use just the images, they would look correct.
-
In the same manner that you can use a comma or tab as a delimiter if you utilize the Field, Insert, and Delete functions. I can't speak to the history of those delimiters, but in OI, they are not "official" delimiters in that there are no @ variable…
-
I wouldn't concern yourself about exporting to json. I'd much prefer in c# anyway. This is good stuff, and I have ideas on how to possibly utilize it, so long as you are okay with your work being incorporated into a commercial product (with credit, …
-
Whoops. Debug removed in 3.0.1.2. Sorry about that.
-
Try SRP Utilities 2.2.2.0. I think I've finally settled on the best solution for handling Unicode.
-
Try 3.0.1.1. That should fix it.
-
I downloaded ImageMagick. Email me the image and all the steps (including the commands to rotate), and I'll see if I can't figure out what's happening.
-
Try this dll and let me know if it works.
-
Good idea. Don't forget to also handle: If Return then Return Return else Return Return :P
-
My favorite little gem: If Return then Return else Return
-
If you look at the documentation Remarks, you'll see a bullet pointed list of conditions where SetForegroundWindow will work. I suspect that the IE window becomes the foreground process, and since that process is not a child process of OI, then the …
-
A dialog window or message box would prevent SetForegroundWindow from working.
-
According to the documentation of SetForegroundWindow: An application cannot force a window to the foreground while the user is working with another window. Instead, Windows flashes the taskbar button of the window to notify the user.
-
I'm really sorry, but this is still not recreating for me. I have a table with 100 rows and I've clicked dozens of times, all over the place, skipping, scrolling around, clicking some more. It always works. Do you have business logic executing on an…