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

Comments

  • Dan, Just so I am clear, you are using a wedge device? That is, one that inputs through the keyboard port?
  • Hi Matthew, That is a perfectly good way to test, and isolate, the SRP ActiveX controls. I take it, then, that you still have the individual controls that preceded SRPControls.ocx?
  • Hi Matthew, Are you storing the SRPControls.ocx file in a central location (i.e., on the server) or on individual workstations? This only matters because a centrally stored file can remain locked until every user is logged off of the application pr…
  • Hi Matthew, My apologies for the long wait before getting any response. Since you and I had already corresponded via email, I was allowing time for others to jump in. I thought it would be rude if I waited any longer. I see that in your post you h…
  • Matt, We have done this but Revelation have also published an article that can help you get there. Since OI also needs to install OLE controls, you could just use their information and include the SRP controls. With regard to the best way of doing…
  • Hi Dan, That is the exact issue we ran into with FrameWorks once we eliminated all dependencies upon QuickEvents. This is not a bug in OI as much as it is a design decision. By the way, you get the same problem with the HELP event. Remember, the O…
  • Babu, I have some ideas about this (like is the control registered on the target machine) but this topic has extended beyond normal OpenInsight help and tips. In my opinion we are delving into the world of consulting, which is how we earn our livin…
  • Babu, Like I said, you would deploy as you would for any other environment. This is a .DLL or .OCX file, is it not?
  • Babu, Getting the property of a control follows this syntax: Value = Get_Property(ControlName, PropertyName) So, an example of what you are trying to do would look like this: Text = Get_Property(@Window : ".EDITLINE", "TEXT") I am not sure what …
  • Babu, I don't know what you mean by "Edit Events". I suggested you put it in the CLICK event handler of a push button control. Is that what you are trying to do? Does the code even execute? For instance, if you add a debug statement do you get the …
  • Babu, I assume, then, that after you put your Prog ID in the Text field on the Form Designer that you can see the control on your form. Correct? If so, then the way you communicate with your control will be different than what I originally suggeste…
  • I'm very new to OpenInsight platform. Could you please give me the steps so that I can replicate. Please find the steps what I've done: 1. Opened Forms Designer Window, selected new form - put one OLE-Interface on to it and entered ProgID in the "t…
  • Babu, Then try this: Obj = OleCreateInstance("ProgIDClassLibrary.TestCOM") Result = OleCallMethod(Obj, "Test")
  • Babu, What version of OpenInsight are you using?
  • Jim, Just curious, which solution did you go with?
    in Detect exe Comment by DonBakke July 2013
  • Jim, Yes, there are ways of doing this. However, it is much easier to detect whether or not the class of a form or a specific caption is running rather than the executable itself. When I know what the caption is going to be, then I look for that in…
    in Detect exe Comment by DonBakke July 2013
  • Bryan, There is nothing built into OpenInsight to handle this for you. We wrote our own utility that takes an RDK deployment and renames the application for each of the entities We then install the RDK, which then puts this in the correct applicati…
  • Hi Dan, Oops! My apologies. I totally assumed this was an SRP EditTable question. I wondered why you had posted this in the OpenInsight forum rather than the SRP EditTable forum. Thus, I had moved the thread. I have now moved the thread back. :-D …
  • Dan, I wanted to verify that this would work as I expected. It does. Here is the code I used: BeforeDeleteRecords.OLE_EDITTABLE: SelPos = Get_Property(CtrlEntId, 'OLE.SelPos') ColPos = SelPos<1> RowPos = SelPos<2> …
  • Dan, Of course, I assume this is what you want to happen when the SRP EditTable is in navigation mode. If the cell is in edit mode and the content is selected, then you get the behavior you want already. I can see the value of a property that defi…
  • Dan, What behavior would you want it to do instead?
  • Dan, Once upon a time I would see those circular symbols instead of the arrows for sub-menus. When I switched fonts to Lucida Console I no longer saw this again. Now, however, I cannot get those symbols no matter what font I choose. I am not sure i…
  • Paulo, Moving from 9.2.1 to 9.3.2 will have far less impact than your move from 8.0.8 to 9.2.1. I would also add that the move is worthwhile if you have the opportunity to implement this. We have a few clients that made the exact same jump without …
  • Mark, Yes, this is what I was looking for. However, I think you mistook my suggestion to use a "system editor" for a "text editor". I meant the OpenInsight editor (which there are three: System Editor, Editor+, and Editor++.) Then there is our own …
  • Mark, Correct, your results suggest that neither one existed on the table. Thus, as I suspected, something unusual is going on with this table. It should not matter that this was originally an AREV table, unless the AREV table is pre-AREV 3.x. I d…
  • Hi Mark, That is the first I have heard of a BTREE index refusing to be created because of an existing quick/rightdex. What version of OpenInsight are you using? In my opinion something else is going on so I would tread carefully. At least make su…
  • Paulo, I am pretty darn sure there is no way to do this. Locks are managed by the server and LH service so one has to be at the server (or connected remotely) in order to release a lock. If the UD Manager was able to run 24/7 on the desktop then y…
  • Kevin, I am pretty sure this is a throw back to when OI was 16-bit and no record size could exceed 64K. However, some processes like this would set the threshold to be smaller, like 32K. I do not recall the exact size these were supposed to be. It …
  • Bryan, To elaborate on what Paul shared, REV_LOADREC is one of the core components within OpenInsight that is used to read data from system files, including stored procedures. So when REV_LOADREC itself is unable to be loaded onto the program stack…
  • Albert, I apologize for the long delay in writing back to you. I was rather certain I had used FindWindowByTitle before but I am unable to find any examples where I used it. However, I think I have a better solution for you. We have code that will f…