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,165
- Last Active
- Roles
- Administrator
Comments
-
You could add a vertical scroll bar control to the form though. True, but what would you do with that? Would you reposition the controls on the form dynamically as the value of the scrollbar was changed?
-
Josh - I see that you've crossposted this question in the WORKS forum and that you are getting help from Bob Carten. I doubt you'll get anything more useful here. I'd like to respond to a couple of other items from the above posts. This means you co…
-
M@ - Thanks for the input. Thanks for confirming the issue and for the workaround.
-
Thanks for the attachments. There might be an issue on our end so we are looking into this now. What I meant by "turning UTF8 on dynamically" was using the SetUTF8() routine.
-
Ed - I have some questions for you: * What did you do to finally "send the request in UTF8 to the framework"? * Have you tried turning UTF8 on dynamically to see if you can Set and Get the data correctly? * Are you able to send me a copy of t…
-
I am not familiar with INET_OI_XML and looking at the documentation it doesn't seem to provide a way for custom formatting of dates. Unless others chime in with their experience, this might be a question better suited for the Revelation forum.
-
I'm sure we'll add support for that. Stay tuned.
-
Thanks for the clarification. Yes, I experience the same thing. I'm pretty certain this is because the SRP Editor is still attempting to call ProgRef.chm from OI 9.x. This no longer exists in OI 10. I presume you would expect it to launch the OI 10…
-
Is your F1 configured to to use SRP Help or the CHM help?
-
@josh, I think he understands this based on this statement: I can get the exit code using OI's RUNWIN but I can't seem to capture the output or get it to generate a log file.
-
Well, there you go!
-
I'm not sure we have anything well documented for this so if you find yourself spinning your wheels please post any questions in the FrameWorks category.
-
No. It exists for entities because OI maintains a repository database that tracks this kind of metadata. Data records do not have their own intrinsic datetime stamp. The standard solution is to create fields in the dictionary for this and then use a…
-
You could also put a different background image in the MDI client.
-
The only way I know of is to read the SYSREPOSWINEXES record and parse it.
-
I can't be 100% certain, but an inspection of the object code does not show any references to Yield(). I believe Update_Index is really just a shell that calls other lower-level SSPs so perhaps one or more of those calls Yield(). You could create a …
-
Not to make light of the situation, but this happens and it is a royal PITA. My suggestion is to take a copy of the table (and its index) offline and go through the index rebuild process (assuming, of course, you've confirmed the indexes are corrupt…
-
If you kill OI while it's in Update_Index, it will probably create more corruptions. However, since you probably already have a corrupted index this is not likely to be a problem. Chances are you'll be recreating these indexes anyway.
-
When I mentioned "corrupted index", I wasn't exactly referring to an index that might be poorly created due to issues such as column length. While that could be considered a "corrupted index", insofar that the index is incomplete or inaccurate, what…
-
I know that corrupted indexes can cause this to happen.
-
I agree that this is a message coming from the SMTP server, but I think the problem might be due to the lack of an Authenticate argument in the SMTPMail function. Sally, I should apologize because I was the one who advised you during our phone call…
-
I am reasonably confident that something is wrong with your index. As I already noted, RList doesn't necessarily use Btree.Extract, so different behavior is not entirely unexpected, especially if the index itself has a problem. I'd be very reluctant…
-
You are saying that you had to change the justification from LEFT to RIGHT for a TEXT column in order for BTREE.EXTRACT to work?
-
Then I suspect it has to do with the difference between the internal delimiter (@TM, which is one character) and the Windows controls delimiter (CR/LF, which is two characters). I suggest adding an extra character per @TM you see in the string.
-
Do you suspect it is off by one character for each line in the edit box?
-
You can set the Raw Style Bit for this: Alternatively, you can programmatically set this style ES_NOHIDESEL (0x0100).
-
As I said, I'm pretty sure this is Windows themes controlling the look of a standard Windows control. You might be able to get what you want using the SRP Button control, which supports a toggle state.
-
I think this is a Windows theme issue. This is often why the controls in the Form Designer can look different than in runtime. Have you tried setting the FORECOLOR property? I am doubtful it will work, but it can't hurt.
-
You might also find the technique summarized in this OI 10 Blog article useful in crafting your own solution.
-
I don't believe you can achieve this automatically or through simple configuration options. The MSG function does support the ability to restrict modality to the parent window, but I believe this is done through additional programming similar to wha…