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,219
Last Active
Roles
Administrator

Comments

  • No GFEs either? If not, then I got nothing. I would need to test this myself to come up with any other ideas. Sorry.
    in FS111 Comment by DonBakke January 2019
  • Are you confident that all the records have been read by the time the FS111 message is displayed? I'm beginning to suspect you have a specific record that is creating a conflict for you.
    in FS111 Comment by DonBakke January 2019
  • Bottom line, if it is working the way you want then it is the right approach. We've significantly overhauled this logic in the upcoming v4 version of the HTTP Framework so none of the original logic related to these services looks the same. I'll ju…
  • Set the form's SAVEWARN property to 0.
  • @slowjams did any of this help you?
  • Yes, there is overhead but it is a tradeoff as to where you want the overhead.
    in FS111 Comment by DonBakke December 2018
  • That looks like an OI message, but I don't think it is using a message that is designed using the UI Workspace. Most likely it is created purely in code and called using the Msg() function. In which case you wouldn't be able to edit anything to make…
    in FS111 Comment by DonBakke December 2018
  • Yes.
    in FS111 Comment by DonBakke December 2018
  • The reason I asked about the type of select you were doing is because if you do a latent select (which is what you are doing with the selecting of a file variable), then it is possible for the pointer to get misaligned due to ongoing activity in the…
    in FS111 Comment by DonBakke December 2018
  • Oh, so you are seeing an actual message box appear? I'm sorry, I assumed you were describing a system error rather than a dialog box. I would need to see a screenshot of that message. If it is coming from the engine then it is likely hardcoded and c…
    in FS111 Comment by DonBakke December 2018
  • Are you performing a latent or active select?
    in FS111 Comment by DonBakke December 2018
  • There are a couple of ways of approaching this. If you simply want to change the default verbiage, then you can open the OIWIN_REQERR message and save a copy into your local application. Then you can change the wording and this will be the message t…
  • I shouldn't matter, but for the sake of isolating the problem I would start with just one OI session. From what you've said, this sounds like an environmental issue and @AusMarkB suggestion is one of the areas I recommend you look into. You are just…
    in Memory Comment by DonBakke December 2018
  • 8GB is my minimum recommendation for a workstation, but 6GB should not be a problem. Just to confirm, you launch OI and at that time the CPU utilization jumps to 90%+ and it never goes down even though the user is not doing anything?
    in Memory Comment by DonBakke December 2018
  • @slowjams it appears to work for me too. If you are still having problems please confirm the version of the SRP Controls you are using. Always upgrade to the latest version to make sure your problem hasn't already been fixed. Finally, this might be …
  • No problem. Yeah, that's unfortunate. My recommendation is to create temp entries in the REVMEDIA and then attach those tables so you can do a quick LIST F1 F2 F3 F4 and see what kind of data is being stored.
  • The REVMEDIA table should contain all the keys that map the OS files to OI database tables. I would start by attempting to attach this directly. From the System Monitor: RUN ATTACH_TABLE "", "REVMEDIA" Then you can use an editor to look at the recor…
  • If you need a UI to allow users the ability to toggle up to 200 (or so) columns, then I would definitely recommend against using a context menu. A dialog with a control that supports checkboxes in a list - such as the SRP Tree, SRP ReporTable, or SR…
  • Assuming you want to use the ShowContextMenu method, Mark is correct. This feature only supports simple context menus. The alternative is to implement your own context menu and call it using the OnItemClick event handler.
  • Colin - I believe the license has the first four numbers (8640) entered incorrectly as 8460. I will email you an updated license.
  • Correct. You can't set the property of an item in the control if that item doesn't exist.
  • Does the tab already exist before you call this property?
  • Is your REVPARAM updated to point to the new server rather than the old one?
  • I saw the thread. I'm happy to see that Bob recognized it was a bug he must have created but that doesn't help you to get back to a working form other than, as you say, restoring from a backup.
  • Not in my wheelhouse so I'll defer to others for this or just suggest you do a little more online research.
  • Jim, another thought...earlier I asked you what happens if you use Post_Event rather than Send_Event. I got the impression that you never tested that because you opted to call your code directly for testing purposes rather than call Send_Event. I wo…
  • This seems to confirm that it isn't anything wrong with your code, but something is different in OI 10 where calling this from within an OLE event handler causes problems. I saw your post on the Rev forum, so hopefully that will be enough for Carl t…
  • Is that path on a server? What I was considering was perhaps this was due to folder redirection. I've seen this happen before with OI, but only when OI was in a folder that was subject to redirection rules. It was the weirdest thing because OI was a…
  • I meant to ask you what is the full path to the appbackup volume.
  • I don't have enough experience with OI 10 to answer your question, but I would encourage you to see if closing the dialog differently prevents the crash. For instance, do you allow the "X" system menu button to exist? If so, what happens if this is …