Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
DonBakke
About
- Username
- DonBakke
- Joined
- Visits
- 3,156
- Last Active
- Roles
- Administrator
Comments
-
All I can tell you is that the Tab control and the EditTable control have no special relationship to each other. You are drawing incorrect conclusions based on a simple observation. My guess is that the real issue has to do with you exiting the Edit…
-
When you say you are inserting data into the table, how are you doing this? Also, just to be clear, you are reporting that when you perform this "insert data into the table" action, your data is not visible right away? If this is what you are saying…
-
I honestly don't know what you are describing. Can you be a little more descriptive or detailed?
-
Adam - The image you sent does produce the same behavior on our system as yours. Open closer inspection, we see that the file is only 24bit rather than 32bit. The image library that the SRP Ribbon control uses seems to default to traditional transpa…
-
That helps me understand your goals. Then using the SRP_String function is probably your best bet.
-
Let's take a step back. Are you hardcoding the font size or do you allow users to set this?
-
Yeah, it's one of our earliest white papers.
-
Does the DataRow property serve your needs here? Just set the desired height and use the keyword "All" to apply to all rows.
-
Totally forgot about this white paper we wrote that gives all of the nitty gritty details: Creating a Custom Event
-
In OI 32bit, you have to qualify the WM_SETCURSOR Windows API message (0x0020). Once you do that, then mouse movement will trigger the edit table's WINMSG event handler. You will then need to add your code in there to check for specific activity and…
-
Which edit table, the native one or the SRP one?
-
Adam - I meant settings with the SRP Ribbon control. Why don't you send me the image as an attachment to support@srpcs.com (to avoid any conversion issues) and I'll retest.
-
I've tested your image in the Ribbon control and I don't get the red border to become transparent. I see everything: This leads me to believe your settings are off.
-
Albert - Most likely this is because the SRPUtilities.dll that is in your OI folder was not replaced when you did the install. This happens whenever the .dll file is locked due to it being a resource file. Try renaming it first or moving it out of t…
-
I tried to retrieve documentation based on the information you provided. I assume this is related to the Single Window Initiative. Unfortunately, this information isn't publicly available. You probably have no choice but to re-examine this or wait f…
-
I think what you are being asked to do is encode the binary file into a format that is safe to include within XML. A common solution is to encode using Base64, which would give you an 8-bit character format.
-
Based on your response to Kevin, it seems like he understands what you want to accomplish but I wasn't as certain. For my own sake, can you confirm that you are looking to OCR a scanned image so that it will become identifiable text?
-
I dare say, then, that this is a problem we can't fix through the SRP Editor itself (apart from going with a different control for the rich editing functionality). My suggestion is to play around with various display settings in the Citrix or RDP cl…
-
First, I moved this discussion into the SRP Editor category from out of the SRP Editor Control category. Second, I've seen what you've described but I see it with other apps. Just curious, what happens if you try this with the Editor++? I'm checkin…
-
Before answering that question, is there a reason you can't use the Dir function?
-
I've tried to use btree, but it was very slow and can only filter status once not twice. Does "btree" in this sentence mean Btree.Extract? If so, please post your code so we can help you. You can use Btree.Extract to search against multiple indexe…
-
In my previous response, I wanted to give you a straight answer without introducing alternative ideas, especially when you had already said "I don't want to use editable table or report table". Therefore I'm creating a second response to address al…
-
Yes, you can do this using the CREATE Utility service. Unfortunately, the documentation doesn't spell out how do do this. Rather than create from scratch, you normally would use the ORIG_STRUCT property against a control you want to duplicate, make …
-
@slowjams - Your original post was confusing because highlighting normally means selecting in OI, thus I missed the requirement to color code the highlight. I'm now a bit more confused because you referenced the FORECOLOR property, which doesn't hig…
-
I missed the part about "red color". The SELECTION property will use the default system color.
-
Yes. The SELECTION property I mentioned before will do that if you use the correct starting position and length.
-
Give it a shot. I suggest creating a test routine and check for @Window. If @Window is populated, call Msg(), if @Window is empty, call CTO_Msg(). Should be quick and easy for you to try it out.
-
P.S. It's a shame that DO_CTO only works from the System Monitor. I think this is pretty much what you are looking for.
-
I'm pretty certain that the CTO prefixed routines will only run within AREV32 and are not compatible with OI. In an ideal world, you would decouple your logic from your UI. Thus, error conditions are returned in the function call or via global/syste…
-
It's not quite that onerous. If you have purely compatible code (i.e., no UI), you can move into OI and call directly from AREV32. The only reason CTO_GUI_SUBROUTINE and CTO_GUI_FUNCTION exist is to handle code that has GUI (or presentation server) …