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,129
- Last Active
- Roles
- Administrator
Comments
-
Hmmm...I used your code verbatim other than changing the drive letter to one that I have mapped to a NAS and it works as expected. So, not sure why this is giving you problems. While this does not answer the mystery you are dealing with, you might …
-
You've ventured out in the deep ocean where I have not visited before. I might be able to discern more if I was troubleshooting this myself, but based on your notes it seems that the critical BFS routine is missing. Whether that is a bug (i.e., it e…
-
From the Database Manager, Create Volume Pointers, the Type dropdown allows RTP57 or RTP50 (Memory Resident). Not sure how to assign a type of RTP51 or 59. Yep, that's what I saw and why I questioned whether ROS files can be attached. Are you con…
-
Actually...I don't think Rev/G is supported out of the box with CTO. I don't recall if OI has the ability to attach ROS files. Do you have a reference to documentation that says otherwise? It's been too long so I might be mistaken.
-
FYI, you can also use Ctrl+E to expand and Ctrl+Shift+E to contract. That's a shout out to us old AREV guys or anybody else who prefers to keep their fingers on the keyboard. :)
-
There is OI 9.1 to OI 9.3.2 all-in-one upgrade, but that will profit you little since you are already at 9.2. Furthermore, we have always counseled people away from the all-in-one upgrades. Anecdotally I have always had problems when relying upon th…
-
Hmmm...if you are getting an illegal opcode error that suggests to me that they did engineer this for OI 9.4. It seems they are calling something built into the OI 9.4 engine that was not present in OI 9.2. Normally when they publicize something as …
-
I'm not exactly sure of the cause, but I recognized the symptom. I imagine this is happening for the same reason that MDI Children are not supposed to be the parent of modal processes.
-
Are you absolutely sure that Dialog_Box hasn't already returned prior to using End_Dialog? That is, are you sure your dialog form is running as a modal form?
-
I honestly can't say with 100% certainty, but I strongly believe that the same utility will work for OI 9.2 as long as you are using the same Universal Driver.
-
You can also write a procedure to do this. Use the Get_Repos_Entities to get all your forms and then use the Repository COMPILE method for each entity.
-
Hi Dave, First, the original article I wrote follows a good practice but it does require a bit of housekeeping by way of backing up the original stored procedure. I much prefer the technique that I documented in my follow-up article called Hooking …
-
The reason I suspect that OLE controls were involved is because what you were describing (and the event log confirmed) resembles an issue which has been discussed on a few occasions: OI Crashing for remote users OI Crashing on Terminal Server SRP_C…
-
What version of Terminal Server?
-
This really isn't a lot to go on. What kind of crashing are users seeing? What does the event log show? What does the Task Manager for the OI processes look like? Are you using OLE controls? Do the problems go away when users exit OpenInsight on the…
-
Well, congrats on finding the solution. This is another reminder of why it is important never to assume too much and it is important to ask for code. You see, I had assumed you were following the examples from our TabColors article. Lesson learned a…
-
Are you seeing blank spaces (white boxes) elsewhere in the SRP Editor, such as in the toolbar?
-
The standard practice is to have the window be invisible at design time and then when the SIZE property is set this will display the form at the right location without the jump affect.
-
Based purely on eyeballing all this, I think preset width never actually comes into play, regardless of edittable size. Yes, that is really what I've been trying to say. Maybe we can come up with something else. Stay tuned.
-
First, my comments are not based on internal knowledge of the control. Kevin would have to give the definitive "here's how it was designed" type of answer. I'm speculating based on my own experience and interpretation of the documentation. Second, …
-
In the second screen shot, are all columns visible or are there some that are beyond the edge of the EditTable control?
-
But is column 1 narrower than the width of the EditTable itself?
-
I think what the documentation is referring to is when you have a mixture of non-autosized and autosized columns. If the total width of all columns (which must include one or more non-autosized columns) is greater than the table's width, then those …
-
Look at this thread as I think you can benefit from it as well.
-
The Why - These are to be used if you want to set an expiration date to the data stored in memory. The When - For instance, perhaps you want to store a list of keys in memory for quick access later. However, if these keys are dynamic then you might…
-
Also documented here.
-
BTW, since you have a framework product, you already have Memory_Services which is a convenient wrapper around the SRP_HashTable. You already have code using this so you can use that to guide you if you want to consider using it.
-
How do you mean? For instance, are you wondering if the value of @RECORD can be stored as a single value?
-
The SIZE event is triggered when you move or resize the form. You can then use the SIZE property to get the new size information.
-
Email was sent yesterday. This other symptom you described is because the OLE controls are not registered to the other computer. All OCX files need to be registered on each and every machine that will run OI. This is no different than installing th…