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

Comments

  • The SearchIndex service relies upon Btree.Extract which is one of the lowest level and fastest ways to search OI tables using Btree indexes. If that is not performing well then I suspect there is a problem with your index. TCL searches are higher le…
  • Alternatively, you can just use SRP_DateTime's Parse service: oDateTime = '10/15/2023 07:30:59AM' iDateTime = SRP_DateTime('Parse', oDateTime)
  • Since the portion after the period in DateTime represents the fraction of an entire day, you can extract the formatted time (07:30:59AM), get the number of seconds it represents using MT conversion, and then divide this by the total number of second…
  • I'm inclined to just advise you to upgrade to OI 9.4.6. If the problem is rooted in OI 9.4.2, then I doubt you'll be able to resolve the matter without upgrading or perhaps updating the relevant entities in OI 9.4.2 from OI 9.4.6 (such as moving ove…
  • Yes it does, as I said in my first post - the PBC one ATTACH_PBC_DATABASE deploys to the DEALER account. I think we are talking past each other. I meant that in OI 10, whether or not fields 15 and 16 are populated, it deploys the same. Would you a…
  • So, the beta issue post still stands. Can you point me to where you posted this? I can't seem to find it.
  • @BarryStevens - yes, that is a difference but I don't think it deploys any differently. You need to deploy and check the SYSUPGRADE table like I suggested previously.
  • Interesting. It has worked for me for as long as I can remember: Not only do I see inherited entities when I uncheck the box, I see entity types that only exist in the inherited app.
  • @BarryStevens - Are you saying you've tried that before and it never worked? If so, do you mean it never displayed inherited entities or it never deployed the inherited entities you selected?
  • @AusMarkB technically the problem is not using F6 versus the RDK tool itself. The problem is being logged into the child application when you create the Repository View since that is the application you'll be deploying from. Remember, you can add in…
  • @AusMarkB I suspect not. As I pointed out, Repository Views do not add an application identifier for each entity. Therefore, when a Repository View is extracted, the logic has no way to determine which version of the entity you intend to deploy. Thu…
  • I take it that DEALER is the child application you are currently logged into and PBC is the parent application where the entities are stored? You can answer your own question by creating the same RDK in OI 10 strictly using the built-in RDK tool. F…
  • Chances are that you used RDP to connect to this server. If so, what IP or machine name did you use? That's what you would put into this field. Alternatively, you can do either of the following: * From a command prompt enter IPCONFIG. Use the IP…
  • Actually, the answer is yes and no. The CtrlEntId of the radio button (not simply the radio group) won't be changed nor will the VALUE property for the radio group, but you can change the TEXT property of a button: Set_Property(@Window : '.RADIO.RAD…
  • I don't have access to source code at the moment due to traveling, but I think query params are case sensitive. Can you confirm you are matching the exact case and spelling?
  • The answer to your original question is to use AREV32 and have it put CTODICT.MFS on the dictionaries so you can support the dots.
  • It reached 1 million people!
  • What, did you get the Hong Kong email too?
  • Will the Rnd function serve your needs? Unfortunately, older (and unsupported) versions of Windows are missing key functions that many of our products need.
  • It's a way to automatically implement BASIC+ hooking as described in this blog article. It is a technique we use frequently to understand how OI works, or customize the way OI behaves, so it made sense to finally create a feature in the SRP Editor t…
  • LOL....I knew I had a good reason for suspecting that.
  • The Create_Table documentation has a little bit of information but the old Help file in OI 9 for the New Table dialog has more complete information: Estimated Data Size Number of Records The estimated initial number of records. It is not necessary…
  • My understanding is that Update_Index pays no attention to the Delay before Indexing setting.
  • Oh...as far as sending us a package, if you really think sending us an entire system is best, then we would prefer a copy of the entire OI folder, zipped up, and then uploaded to a web page that we can provide. Sending us an AppBackup will require u…
  • As Kevin mentioned, we are calling Revelation's BLINT routine as we always had. So if this is behaving differently in OI 10 versus OI 9 (i.e., same code does not product the warnings in OI 9 but you are still using the SRP Editor) or if the OI 10 ed…
  • * Maybe quarantined by AV software? * Does installing this first help?
  • Would you expect success on a non-set password when given, well, anything as the password? Yes, but only because I have always known that usernames with no passwords just ignore whatever is passed in as the password. I was always curious as to why…
  • @Opto_Will and @BarryStevens I need to be clearer in my response. I think perhaps I misread Barry's original question and I was also thinking of a different dialog that is used to authenticate the user (I've been doing a lot of OI 10 upgrading late…
  • Oh, yeah, I've seen that. It's because of the redone IDE. In OI 10 you can do this: // Close the application Call Exec_Method( "SYSTEM", "DESTROY", "SYSTEM" ) This comes from 065-system-object.pdf.
  • We do exactly the same thing. In the CREATE event handler of the MDI form, if the user cancels the Login form, we do the following: End_Window(@Window) Does this work for you?