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,220
- Last Active
- Roles
- Administrator
Comments
-
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?
-
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…
-
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…
-
Albert, Are you running VSPRINTER or VSPRINTER2? What happens if you switch to the other one? Both problems you are reporting sound like permissions issues. For the first problem you may also want to install a new printer driver, such as an HP Las…
-
Albert, This appears to be a problem with your print driver. What is the default printer you have selected on your workstation? Would it happen to be a label printer?
-
Jim, I have been away for a while so I was unable to get back to you on this. I also see that have been cross posting your questions on the Rev site. FWIW, we are not averse to posting on the Rev site nor are we trying to replace the Rev forum with…
-
Jim, Is this something you are starting in design mode or just during runtime?
-
Jim, I don't have a magic bullet for this, but I do want to get some clarity. Are you unable to stretch the MDI Frame when it is in resizable mode or are you simply saying that when you maximize the form it won't stretch? I was able to stretch my M…
-
Jim, Well Carl has the advantage of seeing the internal code so he would know better than me. However, my comments come from multiple conversations with Bob Carten, who is using ADO to create the OpenInsight SQL Connector. Here is a comment he sent…
-
Jim, I cannot tell you if performance is faster. I think all of this goes through the same API sooner or later. ADO is just more flexible and is the solution Microsoft is promoting again after they came to realize that OLE DB is not a viable altern…
-
Jim, One way to do this is to create an entry in SYSREPOSDATASOURCES programmatically. You will probably want to use the Repository function to do this as I am sure that XOInstance will use the Repository to get access to this record. The other wa…
-
Jim, We use XOInstance in our internal OpenInsight based billing application. In our case we connect to a MySQL database that support our web-based project management system (JIRA). We have a window that our developers use to pull down the JIRA wor…