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

  • Dan - Kevin is on an extended vacation so we might have to wait to see if this is something he needs to look into. In the meantime, you and I can work on this together to try and isolate the problem. Before I copy your code and test it locally, I am…
  • Very good. Also, in case you didn't know, you can install an RDK from any application...not just the one from where the entities originated. Thus, you can install SYSPROG entities and your local application entities using the same RDK and OpenInsigh…
    in SRP Crash Comment by DonBakke July 2018
  • As a policy, when our tools are installed via an RDK, we include in the RDK the original SYSREPOSVIEWS record. This is to make it easier to accomplish what you are trying to do. You can open the SRP_UTILITIES Repository View item via the RDK main w…
    in SRP Crash Comment by DonBakke July 2018
  • Awesome. Thanks for responding and letting us know.
    in SRP Crash Comment by DonBakke July 2018
  • As previously suggested, the REV files are indeed the RDK related to the DLL. Sometimes we can fix a bug with just a change to the DLL, but best practice is to always install the RDK files along with the DLL. Colin, as Mark indicated, install the R…
    in SRP Crash Comment by DonBakke July 2018
  • Your Start_Window syntax doesn't look right to me. Where you have 'FORMLIST' is the ParentID argument. Thus, this is where @Window should go. Where you have @Window is the CreateParam argument. Thus, this is where your VOC or TCL command should go. …
  • It might help if you posted a screen shot of your Start_Window syntax if you were at all interested in trying to get the original design intent to work. Otherwise, seems like you have a reasonably good solution and now you can move on to other thing…
  • 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 still requires an AREV environment to run. This is why you can't expect AREV stuff to simply run within OI. The bes…
  • Somewhat ironic timing that you would ask about json-schema today. In answer to your question, our framework does not have anything built-in for schema validation and I'm not sure how I would approach this just yet. When I added those services it wa…
  • You can't call anything directly from OI that is in Arev32. ARev32 must always be the environment from which an ARev32 command is called.
  • That's my understanding. I haven't actually tested this, but that's what the CTO docs suggest.
  • Yes. You need to pass your Arev32 command line as the CreateParam argument into the Start_Window or Start_MDIChild function that calls your AREV32 form.
  • This is the SIZE property. Just set <1> and <2> to 0.
  • I've never been able to work this out. I know you've asked this question at least twice in the Revelation forum but have yet to receive an answer. I suspect that the variable is maintained internal to the engine and is not exposed. My only suggestio…
  • I'm very happy to hear that. Also, just in case you didn't know, the same dropdown feature also exists as a SRP EditTable CellType (look at Combo).
  • As Mark suggested, there is no way to get an edit field "look" within the cell itself. The SRP EditTable is more like Excel in this regard. I do think Mark is giving you sound advice to use cell colors to your advantage as well as use cell protectio…
  • I'm assuming you have found your way to the Online Discussion landing page. From there you need to pick a display category. I recommend Flat by Date. Scroll to the bottom of the list of posts and there should be a link called Create a new main topi…
  • Thanks for the suggestion. We'll add it, even if it is only a OAQ (Once asked question)! ;-) You are more than welcome to post your questions here. With regard to the Revelation support forum, there are actually two of them. One is the "public" for…
  • Daniel's method might work somewhat, but it won't remove any of the repository items that are keyed to the applications. You really want to do a Delete application to wipe the slate clean.
  • Unfortunately the only way to delete applications is to open them using the Author user. You could reset the users by hacking them in but this requires that you install a fresh copy of OI, recreate the applications using the same usernames, and then…
  • Hello and welcome to our forum. I believe Corby already emailed you privately but you asked a good question so I'll post a public response. Primarily this forum is for SRP product customers, but we welcome anybody in the OpenInsight (or, more broadl…
  • slowjams - To be honest, I'm a bit curious too. We added the ability for multiple header columns with the long term goal of creating an EditTable that would support multiple internal grids. However, that never reached fruition. I haven't tested thi…
  • Mark - You know you can update your notification preferences to get a notification for all new and updated threads right?
  • It was designed to allow a relatively easy transition and require little or no code changes. It does have an API based on/off mechanism so you can switch between it or the original OIPI on demand.
  • Open the CFG_OIPI record in SYSENV. It probably says VSPRINTER. Change this to VSPRINTER2. I've been deflecting your question about our possible fix because it will likely be moot if OI 9.x and OIPI.Net won't work. Our solution is our own implement…
  • The service doesn't set its own error as a result of the timeout because we can't assume that a response won't come back at the last millisecond. Or...perhaps it was there anyway and the XMLHTTP object wasn't acknowledging it properly. Either way, i…
  • I should also add that this is not a permanent setting. It will remain for this session only (it gets cached) but it is not stored as the new default. You can update the GetTimeoutDuration service if you want to make this permanent.
  • Howdy! Yes, I think you can accomplish your goals with the product "as is". First, you must call the SendHTTPRequest service with the UseAsynchronous flag set to 1 (which is the default, but I wanted to make sure you know this was required). Otherwi…
  • OI 8.x does not support OIPI.Net. We might have something to help you with this, but I'm not sure it will be worth pursuing versus upgrading to OI 9.x (assuming that is even possible). But, before we get ahead of ourselves, we should verify that OIP…
  • A few responses to this. First, we highly recommend that you check the ERROR status after each call to SRP_COM. This will help you identify the root of your problem. I was able to replicate your issue, but the problem originated in the "Open" method…