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,056
- Last Active
- Roles
- Administrator
Comments
-
Roger - This is one of those trade-offs between the EditTable and the ReportTable. If you want to keep using the ReportTable, you might consider using the OnHeaderRightClick and a context-menu. Context menu support is a built-in feature of the Repor…
-
I assume you confirmed that Get_Status() and @FILE.ERROR return nothing of significance. I am a bit stumped but I think this is mostly due to some missing information. I recommend Barry's previous suggestion to move the symbolic code into a stored p…
-
Also, you should call Set_Status(0) before calling Attach_Table and then check Get_Status() to make sure there are no problems.
-
I'm writing some code to pull some data from an OI table that is external to my app. What does this actually mean? Are you running code within an OI application, but not the "app that contains the data", or are you calling code from an interface …
-
It would be helpful to know what kind of crash you are seeing. Is this a Windows crash or a runtime error? If a runtime error, what error are you seeing?
-
Change RECORD to @RECORD.
-
Roger - As Mark commented, the same limitation in header rows applies to header columns. Also as Mark suggested, you could hide the headers and style a data column/row to mimic a header and then you'll have more options. The ReportTable is a great a…
-
Hi Roger - The SRP EditTable does not have a property for creating a checkbox in the header row. However, you can put a hyperlink there as a way of communicating to the user that they can click there. Either way, you can capture the click on the hea…
-
Using the format function on an existing program, it seems that it doesn't indent unless there's a label first. When else would you expect the intent format to occur?
-
I see. So you would programmatically generate the XML based on the png files being dropped onto the control. Do I understand you correctly? If so, how would you know which commands the png file would be associated with?
-
I wasn't expecting you to test all OLE controls. Just establishing a pattern based on what we know. Help me understand your use case. You want to add icons to the ribbon without typing in the XML file. How exactly would this work out? Let's say the…
-
Jim - I want to make sure I'm up to speed. Please confirm if this is accurate: * You set the ACCEPTDROPFILES property for the form. * You can successfully drop files on OI controls and most SRP controls and this will trigger the DROPFILES event…
-
I suppose you could add it back and debug to see if the search tool is hitting the MFS.
-
Does removing your MFS restore functionality?
-
Don't know what the problem is. Nothing you described should have an impact, especially with the way Kevin noted the tool works. I might have imagined your MFS creating interference with SYSPROCS searches. But since you said it applies to all tables…
-
Can you give me an example? Do you mean searching in general (i.e., any table), or searches against the SYSPROCS table specifically?
-
Do any of the comments (especially the end) of this thread help?
-
Most of what you wrote is a duplicate of your prior post. You didn't comment at all on my suggestion, so I'm curious as to why that route didn't work.
-
Your 'official' release of srpcontrols is showing version of 4.2.4, you are showing this updated version as 4.2.5.12, which is nowhere near where I would expect the current release to be of 4.2.5.11 The 4th position is never displayed on our site.…
-
Might I suggest that you create a simple hook so you can observe the incoming and outgoing values when you do a normal compile?
-
Use the COMPILE method for the Repository function to compile your code. Use the Blint() stored procedure to check for VNAVs. Blint is not documented, but you can pretty easily figure out how to call it by looking at the argument names.
-
Putting an MFS on SYSREPOS is doable but I consider it to be too risky. I suggest creating a hook for the Repository function and adding logic that bypasses the DELETE request for certain conditions.
-
@Opto_Will, I was referring to the versions of OI that were available 25 years ago, so that would have primarily been 2.x and 3.x (16bit versions of OI) and 4.x (the first 32bit version of OI). Newer 32bit versions, especially 9.x, have exposed mor…
-
I took a quick look at the Cursor_Position code...which is 25 years old! The xPos and yPos values should always be correct. Those are coming from a Windows API. The Col and Row are calculated because older versions of OI don't have a way to conver…
-
For my problem lines, the Col and Row returned from the Cursor_position call to the Position variable are both 0. This line also confuses me because your original post notes that the problem is that the row position is offset by 1, not that it is…
-
The culprit is obviously Cursor_Position. Can you clarify something, when you say "it has the x and y co-ordinates" are you referring to the xPos and yPos that are also returned (positions 3 and 4 in the array)?
-
I'm all for playing around. Your sin was not having a better recovery plan!
-
When you create a new promoted event using the Event Designer tool, it also begins to recompile your forms so they become aware of this new event link in the chain. Those forms you found were those that got modified because of the promoted WINMSG ev…
-
@Opto_Will - I'm glad that my comments are clearing some of the mud for you, but I am not sure my question was understood property. I'll ask my question again (albeit differently) after quoting this comment from you: However, InitMenu wont work for…
-
What exactly are you debugging and what exactly is populating the Row value? I think I'm missing some critical data here.