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,233
- Last Active
- Roles
- Administrator
Comments
-
That is how the gripper is drawn now. If you want the gripper to appear on the "inside," you should use the new Background property instead. While it still appears to be a mystery, I think we've confirmed that more investigation needs to be done in…
-
The registry entries that really matter are the ones created when you use REGSVR32, so I don't think it will help. I do create custom registry entries for each control, but it's only for convenience (just the location of the OCX file really). It wou…
-
So, Don was the one that tested the files you sent, and he could not recreate the issue. We're quickly running out of options, but I do have a couple more ideas to try: First, I will be emailing you a new SRPLicense file that licenses all the indiv…
-
If you are using SRP OLE Info.exe, you will always see that for SRPControls.ocx. You should be using SRP_ActiveX_Info.exe instead, which ships with the SRP Editor. This really should be resolved by a re-registration. Perhaps you can try commenting …
-
You might want to try re-registering SRPControls.ocx. That screenshot looks like the control is not loading correctly at all.
-
I haven't encountered this issue yet, but if I had to guess, I'd imagine that for some reason the subclass "thinks" the edit line is narrower than it really is. I'm not sure what would cause this, though, because the size of the control is queried a…
-
I'm not sure we could do it any differently because underneath the OI hood, an edit field (which is an EDIT control in Windows) has the same exact CHANGED event. When a read happens, the contents change. There's no way around it. In other words, th…
-
I think the CHANGED event would work for this kind of thing. You could even use a promoted CHANGED event to check for an empty editline then fire a custom ONEDITFIELDEMPTY event (or whatever you want to call it).
-
We discovered the error is related to something the IDE is doing that is causing a false-positive error. I worked around it by setting Set_Status(0) at the end of the CREATE event of the SRP Editor. You can try a pre-release of 2.7.1 here if you lik…
-
When you say minimize the app, are you saying that the window in the screenshot is an MDI child?
-
While it seems you have a work around, I can at least explain to you that the "OfficeFrame" color changed because Office themes have changed. The gray you used to get came from Office XP, but the blue comes from Office 2010. I'll have to update Offi…
-
Sorry for the belated response. If you have the latest SRP Engine Server (1.3) and the latest beta build of the controls (which you can grab here), you should be able to do this via the SRP DirectConnect Control. I've updated the control documentat…
-
I am sorry the documentation steered you in the wrong direction. I'm not sure why I documentation relative paths the way I did, but looking at the code, you should be just fine doing what you are doing... especially if it works. Internally I'm just …
-
Technical document will be forthcoming, but I can also direct you immediately on this product. The SRP Engine Server is a fire-and-forget design. It does not return results from requests. I'm not sure if this will meet your needs. We use it for tas…
-
Error "0" occurs when SRP Mail cannot find the CDO.Message library on your system. Has anything changed on that system in the last two days? Windows update? New OS? New Software? Anti-virus software update? Anything?
-
Regarding the read receipt, set field <11> of the Message parameter to 1. I updated the Wiki documentation to reflect this. I cannot help you regarding the US-Cellular issue as I have never attempted to send emailed text messages to that carr…
-
I suppose it depends on where your SMTP email server resides. If the email server is on your own network, it probably won't matter since that one email is going to become 100 emails piped through your upload. However, if your SMTP email server is h…
-
There does turn out to be a 64 connection limit in the winsock API. It was easy to overlook because it only applies to one function. After some work, I managed to increase the limit to 1024. It can go higher, but Windows tends to bog down beyond tha…
-
Try version 2.1.3 RC1. This should do a better job dropping orphaned connections. Let me know if you still have any issues and I'll work to resolve them right away.
-
I sent you an email with a link to a new build. Give it a test, and if it works, I'll make an official release.
-
This has been fixed. You can now download version 2.1.2 from our Downloads page.
-
I have tested in various OS's and copies of OI and cannot recreate this. I'm thinking perhaps it has something to do with the contents of the form. Do have another way of taking a screenshot of the form you are testing against so I can see what cont…
-
Has all your testing been inside Win 2008 terminal server?
-
What OS was this performed in? I wrote that routine a long time ago and am wondering if capturing screen regions requires a different approach in Vista on up.
-
To be sure I understand, you're hoping we have boilerplate code for converting a multi-value record into a JSON structure using the record's dictionary. That would be a useful routine, but I have not written one. Don has used SRP_JSON the most, and …
-
I think it's an issue of the default namespace changing inside the XML. In other words, xmlns is "" at the beginning of the xml and becomes "http://tempuri.org/" later in the XML. This makes it hard for XPath to determine what the tags are. That's w…
-
Try this: Xpath = "/soap:Envelope/soap:Body/t:HelloWorldResponse/t:HelloWorldResult/text()" NameSpace = 'xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" ' NameSpace := 'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ' NameSpace…
-
Okay, I was able to recreate this. It wasn't a memory leak issue, it was a bug that occurs when the OI array used to initialize the SRP list is very large. This will be fixed in the next release. Also, since this was brought about by benchmarking, …
-
BRemove will always be fastest for sequential reading. I double checked SRP_List_GetAt and confirmed that there are no memory leaks in the strictest sense (i.e., all pointers are getting garbage collected upon release.) However, I am sure that behin…
-
SRP_Clean_Array only works on single dimensioned arrays. It does, however, allow you to specify any delimiter, so you could loop through each field , clean each array of values, and reassemble the 2D array at the end.