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

  • Does the issue occur every single time regardless of which type of control has focus when you save the row? I also should have asked some additional questions: * Is your code being called from the WRITE script event handler or from the QuickEven…
  • There might be other things to discuss, but as a possible quick explanation is the focus usually within an edit box control?
  • Jim, I'm guessing there is something else I need to do. I followed your steps. The one issue that did come up that was "a bug" (in my opinion) was that when I asked it to save the new stored procedure it tried to save it using the New Insert dialo…
  • Guys, I can't seem to duplicate this issue. Can someone provide me with some verify specific steps to follow...hopefully using OOB routines that come with OI in either SYSPROG or EXAMPLES?
  • Correct, index updates are triggered by changes in the record. SI.MFS tracks these changes and sets the appropriate flags. Indexes on symbolics work the same way but only if these symbolics reference data in the same row. The technical answer is "y…
  • I don't know. The SRP EditTable can do this but I do not see any options from the Send_Message function that would allow this to happen. Of course, the docs aren't always complete so you might want to research the Revelation forums.
  • Have you tried pressing F4 and then End?
  • But if I stuff the TEXT property, the text is filled in. I'm trying to duplicate the default handling ala Arev. It fills in when you press Enter. Doesn't the OI Editline default work the same way? No, that is not how the OI edit line default work…
  • Generally speaking you would use the TEXT property. What kind of combobox is this?
  • Comboboxes are a different type of control so the default is meant to identify which item in the dropdown list of items should be the default. OpenInsight 8.0.3 introduced a way to dynamically populate your comboboxes from one of four sources: * …
  • And if it wasn't obvious, your "return value" from your function is what gets put into the control.
  • FUNCNAME is just a place holder. You put your own function name there (without the return variable syntax). You can pass arguments but they must be enclosed within quotes. We have a function called WIN_DEF that we use. It programmatically checks to…
  • I think you are looking for the custom function default:
  • Actually, now that I think about it, the typo was not in the syntax but in the path to the image. We had a online meeting to resolve this.
  • Just for the sake of keeping all interested up to date, this was resolved by fixing a typo.
  • If you want to avoid extra UI on the form, you could also just make a context menu that gives the user the option to launch the URL.
  • Assuming you are really talking about the native OI edit line control, there is nothing built-in that supports this feature. I presume you want the content of the edit line control to be editable? If so, then your best bet is to capture the Windows …
  • Great catch Mark. I think that is what I recall being an issue I experienced. IIRC, it will occur with other controls as well.
  • If you find the problem reoccur with the 4.1.0 RC2 control, you can try the 4.1.0 RC12 control from this link. What you are describing now sounds a little familiar to me, but it may have been for something else. Keep us posted and we'll see what we …
  • Yes, 4.0.3 is still the latest official release. Can you explain a little more about the issue you are seeing? I use the splitter bar frequently and have not noticed any problems. Also, are you absolutely sure you don't have an auto-size checkbox ti…
  • M@ - Add this line to your code and compile: #pragma output SYSLISTS MY_PRECOMPILER_OUTPUT Then open this record up and let us know what seems to be the problem.
  • Yes, that is how I understand it. Might help if you posted code.
  • Should be "C". Just curious, are you positive your select is working? Have you actually confirmed that it is producing an active cursor?
  • I'm not aware of any changes and have never seen a popup fail from version to version. TBH, I have never passed in the select statement into the dummy popup record. I think I just perform the select myself in code and rely upon the popup to work wit…
  • VSRPINTER2 means it is trying to use OIPI.Net, VSPRINTER means OIPI Classic. It is really a matter of preference or requirements that determines which one you use. Knowing this is VSPRINTER2 is helpful because it tells us that the problem is not re…
  • Okay, then you misunderstood me. I asked if you knew how to tell what version OpenInsight is configured to use. This is a setting within OpenInsight itself, not the client setup. Open the SYSENV\CFG_OIPI record and report the contents in attribute 1.
  • Are you making an observation or a point? FWIW, that distinction is irrelevant.
  • You aren't prompted for an option. It just attempts to install both OIPI.Net and the OCX controls in the same setup. However, what really matters is how your OpenInsight is configured. Do you know how to tell what version of OIPI your system is atte…
  • Kevin explained this better than me, but I was going to suggest something along the same lines. Rather than use the ClientSetup.exe, which might obscure the real problem, try registering VSPRINT7.OCX and VSPDF.OCX manually (remember to "Run as admin…