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,246
- Last Active
- Roles
- Administrator
Comments
-
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) …
-
No, you explained things rather well. You want OI to call a routine that is compiled within AREV32. Simple answer: no can do. It doesn't matter how simple the code is, OI simply cannot call AREV32 compiled code directly this way. Better answer: if …
-
We did discuss both forms and code. Here is the relevant answer I provided that applies to this current question: I think it is important to remember that ARev32 is an emulator. The R/BASIC code is precompiled so that it will run within OI, but it …
-
This appears to be the exact issue we discussed in this thread: https://forum.srpcs.com/discussion/723/arev-form-command
-
I'm pretty sure this is done using the RECEIVER property.
-
Can you post the data you used as an attachment?
-
Then I think you really mean /HE=0. This might be helpful: https://wiki.srpcs.com/display/WhitePapers/OpenInsight+Command+Line+Parameters However, since the engine only disappears when launching the app from the Launch App button, this tells me he…
-
Barry, did you mean /HE=1?
-
This is not normal OI behavior so I suspect this is happening within your code. Look for FindWindow in a CREATE event handler. This is a Windows API that can get the handle to an object class which is then passed to another API to hide it.
-
I know I've corresponded with you via email about this (and didn't offer much help), but I am curious: does it matter if you have a form loaded or not? If it does matter, does it seem like the same form or can it be any form?
-
You can do this in the CREATE event. There must be something wrong with your code. I hate to ask something so obvious, but is OLECtrlEntID populated correctly? Also, are you setting any other properties after the TabVisible property, such as TabCou…
-
I just copied your code verbatim (other than GetProperty...I changed to this to Get_Property) and successfully compiled and ran it without any issue. Not sure what the problem is.
-
To answer your question about when the SRP Editor will be available for OI 10, please read this post: https://forum.srpcs.com/discussion/comment/4038/#Comment_4038
-
To clarify something you referred to previously as "contrary to advise I had been given", I am rather certain that relates to a comment I had made suggesting that you only need the SRP Utilities to be installed in OI 10 in order to use the Enhanced …
-
I need to clarify something with you. Are you seeing VNAV runtime errors or VNAV warnings?
-
The normal way to do this is to trap the GOTFOCUS event for a control and then set the SELECTION property to select the text (we usually just set the value to 1 : @FM : 999). If you want to automate this then you'll have to utilize promoted events.
-
Our blog site it really the best way to be notified of major releases. You can subscribe to that. Minor releases won't always get a post. We've tried other notification methods in the past, but they haven't worked well for us or people tend not to u…
-
No need...unless you are experiencing a bug that we've fixed but haven't release publicly. Just go here: https://products.srpcs.com/srp-utilities/
-
BTW, you posted this question in the SRP HTTP Framework category...so I'm assuming you are working with code that ships with this product. In this case, you must install the SRP Utilities anyway for this product to work.
-
It will compile fine if you install the SRP Utilities.
-
That's been a part of how OI exposes OLE events (as well as WINMSG messages) from the very beginning (OI 4.x and higher). It's been documented in various places, including the Programmer's Reference Guide and our own white paper on Using OLE in Open…
-
Sweet...and phew.
-
All right. Please let us know if that ends up fixing the issue.
-
Just a quick observation, are you sending a QUALIFY_EVENT message to the control? I don't seem to see where you are doing that.
-
Not doubting you, but we've seen this situation happen many times. The real proof is what you see when you view the Properties dialog for the file and go to the Details tab. I'm going to assume you will see 2.0.2.8. We'll take a look at this furthe…
-
Having both DLLs is not the issue, but it is possible that SRPUtilities.dll (which is the file we are now using) did not get updated. This resource file is often locked so I recommended closing OI, renaming the original SRPUtilities.dll, and then ma…
-
All good...we basically posted at the same time. Two great minds thinking alike!
-
That should work, so the devil is in the details. Is the code you posted verbatim or is it generalized to provide an example? To be more specific, are you sure the window and NewSize variables contain the correct information? Normally you would just…