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
-
If you got a license dialog, then your settings were lost when the SRP Editor closed. Something I need to address.
-
Best I can find on this error code: https://support.microsoft.com/en-us/help/2704157/vfp-the-c0000006-error-and-troubleshooting-suggestions
-
Any Promoted CLOSE event logic?
-
What is does your QUALIFY_EVENT statement look like for the button's click event?
-
It's likely because Windows Vista isn't up to date on VC++ runtimes. You can manually download and install the Universal C Runtime here.
-
If your goal is to position controls using Form Designer first, I recommend using the SetForm method instead. It just takes an OI form and drops it in. One call.
-
This will be fixed for the next release. If you want to try it out now, you can download 4.1.3 RC11 and give it a go.
-
In your code, you are passing the original X, Y coordinates of the control to the AddCtrls method instead of defining a new position. If you set the Width and Height properties of the panel to match the larger form, then you would see scroll bars th…
-
The CRLF is not data. It's just there to make it pretty when sending BASE64 over a wire. If you're going to hash a BASE64 string, you should encode it without CRLFs. SRP_Encode has an Option parameter that you can set to 0 to do this for you.
-
Would you mind emailing me a copy of the image so I could do some testing?
-
You are correct, but that's only because of the OnClick event. Try using the OnSelChange event instead for loading products. This is a better event anyway because it also fires if the use selects a different node using the keyboard.
-
Perhaps the ExpandBehavior property will assist you in your goals. If clicking on an item has it's own meaning, you should perhaps set this property to "None".
-
I'm glad you found a solution. I'll use this information to play with it just to see what I can see. Thanks.
-
I see. Your clarification is appreciated. I personally don't like to have hidden information, so I would show the display order myself to make it clear what is driving that sorting. It looks like it doesn't affect that many nodes though, so it's har…
-
So far, I am unable to recreate this in our lab. I tested on Server 2016 that has been fully updated with SRP Controls 4.1.2. If you would like me to investigate more deeply, I am going to need one of two things: 1. A copy of your OI system with st…
-
Sorry I did reply right away. I've been chewing on this. The only solution I can think of is an event based one, in which you provide a custom compare via a synchronous event. However, for large sets of data, this could be so slow as to be undesirab…
-
This looks like something we are going to have recreate in our lab. Are these instances of Windows both running as physical machines or in a terminal server of some type?
-
SRP_Array was rewritten as of version 2.0. You really need to upgrade as you are spinning wheels on something I'm sure has been fixed.
-
Download SRPControls.ocx 4.8.3 RC8. Before setting any other properties, set the DefType property to "TextNoCase". It should now sort case-insensitively.
-
Correct. It's just a string. Now, if you are just doing a single locate, even on big data, it can be faster than a regular locate because it will know the element doesn't exist once it finds an element that comes alphabetically after the search targ…
-
No. It scans from the top. It is slooooooowwwwww for large sets of data.
-
It sorts by the item's text.
-
No, sorry. It only does alphabetical case sensitive sorting.
-
Wow. What an oversight. This feature has been supported since 2.0. I updated the documentation to show that there is in fact a CaseSensitive parameter. Set it to 0 to sort insensitively.
-
Context menus work, and I'm glad you have a work around. I'm still stymied as to how your selection is going away. I'd have to see your Add logic to diagnose further, but if you're happy, I'm happy. :)
-
Even if you have another solution, I feel like there is an important miscommunication happening here. Selection and focus are two different things. The dotted line is focus, and it will always go away when you click on the button because focus leave…
-
I've just released SRP Utilities 2.0.5. This new installer should not have the REVCAP32.DLL error.
-
Are you adding items by replacing the ItemList property or by using the AddItems method. The latter should not affect selection.
-
This is a known problem. It seems to be due to upgrading the version of NSIS we use to create our installers. We are working on a fix.
-
I think the problem is your reliance upon focus when using a button to add items. The point of focus is to mark the keyboard's location. This is critical for people using the keyboard to navigate the tree. But your button uses the mouse to add items…