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 4.0.2 RC24 to see if this issue is finally resolved without causing other issues. I had to rewrite a bit of rendering logic.
-
VNAV checking is done separately using OI's built-in VNAV checker, BLINT. So, I don't think it's a different compiler error masquerading as a VNAV. I'd have to see sample code before I could speculate further.
-
This is not XML, so I have doubts SRP_Extract_XML is ever going to work with this.
-
Correct, so long as it is set to a resource based theme, i.e., Office 2010, Office 2007, and Win 7 themes.
-
Perhaps use SRP Subclass control to put a prompt into the edit line? Prompts are separate from the control's text, so you wouldn't have to use the CHANGED event.
-
SRP_Set_Minmaxinfo was written eons ago, before TRACKINGSIZE was a thing. TRACKINGSIZE is definitely the better way to go if possible.
-
Hmmm, that line doesn't line up with my source code, but I'm going to assume it's failing on RECEIVE. Here is the entirety of the RECEIVE service's code: Buffer = Str(\00\, Param1) Param2 = SRPUtilitiesAPI_TcpClientReceive(Object, GetPointer(Buffe…
-
1.2.0.0 send mail using the now deprecated CDO Messaging service. As of 2.0, we use SMTP directly. It's reasonable that CDO has some additional logic to handle Citrix-type scenarios. I could add a field to SRP_Send_Mail to let you supply your own s…
-
I'm not sure why this is happening. I'm getting the time from the localtime API. According to MSDN: localtime attempts to use the time zone information specified in the Date/Time application in Control Panel. If this information cannot be obtained, …
-
Do you have multiple DirectConnect controls making requests? If so, then I think I know the problem. DirectConnect generates a numeric ID attached to the request, so if you have two DirectConnect controls, they could be sending the same IDs simultan…
-
I think you can use INVALUE, which is the same as ARRAY but IConv'd.
-
I was assuming ARRAY returned the data iconv'd. If it doesn't, then yes, you need to IConv before the sort.
-
Try sorting using "AR2". Since dates are numeric, they need to be sorted as numbers.
-
Try using the LIST property of EDT_TEST instead.
-
I would just like to point out that OI's use of Char(255) - Char(250) as delimiters make it impossible for it to be decoded properly by anything outside of OI. Char(252) is a sub-value mark in OI, but in UTF-8, it marks the beginning of a multi-byte…
-
Ah yes. This issue has caused problems in other ways as well. If this is Win 2008 terminal server, you have to actually enable 32-bit color on the terminal server settings. We have instructions on how to do that here.
-
Lol. I completely forgot I added that. I'm glad you found something that works.
-
It appears that the Win32 GDI (Graphical Device Interface) breaks down under very large images. Even Chrome chokes on large images. I've stepped through the code and everything loads into memory just fine. But when I call the AlphaBlend API, it just…
-
Did you somehow get another copy in SysWow64? Have you restarted your machine lately? I double checked, and the code is there. In fact, if it was missing, we would get a lot of complaints about this.
-
Off the bat I'd guess your SRPUtilities.DLL is out of date. That is, you somehow got an older copy back in the OI directory.
-
Yep. We are now officially entering into the most annoying season of the year: writing-the-wrong-year-for-a-month.
-
Is it safe to assume that in your actual code you are putting quotes around the IP address? I'll have to let our resident Networking gurus speak to other issues. From a software standpoint, all that matters is that the client can see the server via…
-
Matt, it's possible SRP_Run_Command is crashing because the child process is failing. I'm not ruling out a bug in SRP_Run_Command, but I can say SRP_Run_Command has been in use regularly for years. Given that this fails on a single machine, I'm incl…
-
As you said, it's probably related to resources. Could the original images at this site be particularly large? I'm not sure what else you can do to troubleshoot a crash occurring within a 3rd party utility. All you're doing is resizing these images?
-
The documentation is correct. The sample you cited is for the SRP Schedule Control. You should pass the IP address and the port. The KeepAliveTime is optional.
-
Good catch. I didn't consider that condition. I'll make a note to update the pre compiler.
-
You know what? I think this might already be fixed. Try 4.0.3 RC11. If not, then I'm missing something because this works for me in my current build.
-
Do you have multi-lined enabled? That would turn off tooltips.
-
Mark. I fixed this for real, and gave it a new version number so there would be no confusion. I tested it on my end as well. Sorry for the inconvenience. You can download it from the product page.
-
So, this would skip all empty values in the list? I'll have to think about that for a bit. I'm all for efficiency and productivity, but there's a balance between power and simplicity that I want to maintain. Your example is just one keyword, but whe…