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
-
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…
-
I think the best way for me to get my head around this is for you to email me your PNGs and maybe a screenshot of your Ribbon.
-
Just so I'm clear, the image appears fine on the Buttons, just not in the Groups? You have tested resizing the ribbon until the Groups collapse into a single button?
-
Can you post the XML your using to setup the Group. I assume this is regarding a group. Note that group icons only appear when a group is collapsed.
-
Yes, but a colon at the end of a GoSub is not correct syntax. I'd love to make the Smart Indent perfect, but it does the best it can with certain assumptions, well formatted code being the main one. I'll make note of this though and see what it wou…
-
The way you have to increase connection limit in the code for Windows is unusual. It's not a setting, but a MACRO that is compiled. The macro is not in my code, it's in Microsoft code. I suspect that when I made the official build, I used a differen…
-
Funny. I never added a ShowCommands. I guess it was because I needed a HideCommands for FrameWorks. The closest work around (for now) is to use the ControlVisible property, which I admit is a bit more work than you have liked to hear.
-
If you are referring to the automatic "END" keyword you get after the IF statement, that is not called Autocomplete. That is called Smart Indent and can also be unchecked in the General tab.
-
In version 2.9.1, you can turn off Autocomplete on the General tab. Set it to Disabled to turn it off completely. Barry's suggestion of using "Enabled - Service MetadataOnly" is still possible, it was just renamed to "Enabled - Special Only". It's t…
-
Are you hitting the limit naturally or is this still due to orphaned connections?
-
No. There is currently no event fired when a tab is clicked.
-
Close. The way I designed it was for performance. If you want a tab on your ribbon to be context sensitive (only to appear when a certain form is visible), it's better to create the tab in advance and simply hide it until you need to show it. In oth…
-
Only for Office 2010, Office 2007 and Windows 7 themes are resource based for the DatePicker. All other DatePicker themes do not rely on resources and can therefore be different from other CodeJock controls.
-
Anything associated with a command fires the OnCommand event when clicked. All other control types, such as combo boxes, have their own event.
-
How big are the images? Every single pixel has to be loaded into memory. One of the test images you sent to me was 1920x2560. Even though the image was only 1MB, once loaded, the image requires 32 bits per pixel. (1920 * 2560 * 32) / 8 = ~20MB. 300 …
-
Let's look at it from the angle of how much work is involved to work around the default behavior. The way it is currently, "" is treated as an array with one element that is empty. So, in order to treat "" as empty, we need to do the following: If…
-
Mark - I can confirm that some themes (not all of them) are stored within the OCX resource. Only one resource can be loaded at a time. So, using the Office 2007 theme, for example, will cause all CodeJock (the 3rd party we mentioned earlier) control…
-
I know I said Sunday, but I over extended myself by trying to squeeze in one more feature before release. I'm working on wrapping everything up today. We will post a blog article when it's finally out in the wild, so you can check it to know for sur…
-
Oh, and Thank You for doing so much due diligence by investigating the source of the issue using #precomp output. If I hadn't known about this bug, this information would have led me to fix it within minutes rather than hunting for the problem. You,…
-
I'm glad you are liking it. We discovered this bug as well and it has been fixed for the next release, along with several other precompiler fixes and improvements. We are aiming to release the next version this Sunday evening.
-
After your #pragma precomp line, insert the following: #pragma output SYSLISTS SRP_PRECOMP_OUTPUT This will produce a record called SRP_PRECOMP_OUTPUT in the SYSLISTS table showing the code that actually gets compiled. In there, see what SRP_Preco…