Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
KevinFournier
About
- Username
- KevinFournier
- Joined
- Visits
- 2,124
- Last Active
- Roles
- Administrator
Comments
-
You were right. I did have them reversed, but in my defense, it's because OI made TILE work the opposite of WM_MDITILE in windows, which is what TILE uses. So, I don't understand why they flipped it in the first place. At any rate, you can downloa…
-
Regarding the expired licenses, that was my fault. I updated the build year to 2021 but didn't update the month, make the build date December 2021, which exceeded your August 2021 expiration. You can download the latest build here for a corrected bu…
-
Good catch. I can't keep up with how many different ways OI does things.
-
Passing 0, in my tests, gets the same results as passing 0 to the TILE event. The documentation for the TILE event refers to 0 as horizontal and 1 as vertical. I tried following the above steps, but I cannot recreate this issue in a standard MDI fr…
-
AddValueArray is meant as a convenient shortcut to add an array of values to an array. In this case, you want to call SetValueArray to add an array of values to an object member called site_address: address = "Level 3":vm$:"21 Smith St" SRP_Json(c…
-
AddValueArray adds an OI delimited array. You are passing JSON. If you pass this: [ "Level 3", "21 Smith St" ] Then it is parsed (using the delimiter you passed in, which was a comma), then AddValueArray breaks it into two elements... [ "Level…
-
@jimvaughan, this is fixed in 4.1.16. Using the "TILE" event should behave as expected. However, if you want smarter tiling, there is a new option I just added, but you have to call a Subclass control method instead of sending the "TILE" event. I a…
-
I'm looking into this.
-
I'm assuming this is running on a virtual machine or remote desktop. I don't have control over the SIZE property, OI does. All the SIZE property does is ask Window's what the control dimensions are. We've learned that in some remote desktop situatio…
-
There is no such shortcut. You have to type out the debug statement.
-
There could be several factors. Are you using promoted events? If so, perhaps it's interfering with the CLICK event. There could be a corruption in the popup data. I assume the problem persists after a restart of OI. Is this on a desktop or virtual …
-
One option that I have no experience with is enabling user-mode dumps. This is something Carl Pates suggested in the Revelation forums. He says, once you have those, you can use WinDbg or DebugDiag to analyze the dumps. I can't really say how usefu…
-
Not in OI. There is no way to capture these exceptions and get useful information. All you get with OI are memory dumps, which don't tell us much. All we can really do is find out what users are doing when things crash. This is OI. This is the way.
-
With our OCX being local, that at least eliminates one potential point of failure. Unfortunately, I'm not sure what else I can offer without specific steps to recreate the crash. The fact that it crashed by merely clicking on the tab control is conc…
-
For the Tab Control crash, you got Exception code: 0xc0000005, which is a bad pointer. That could be a bug, but it could be related to your second report. That one got Exception code: 0xc0000006, which is a network error. With these two bugs at wor…
-
My guess is that your RDP's emulation of uxtheme.dll was failing, which is what the edit table uses to draw UI elements. I can't work around these kinds of RDP issues. I've had RDPs suddenly give incorrect SIZE property values. The edit table uses …
-
You can use your old method. The installer was just meant to automate things for people unfamiliar with the registration process.
-
Thanks for jumping in @AusMarkB. Since CellPrompt is multi-valued, I treat "" to mean don't change. That is why you have to pass a SPACE character to make it go away.
-
I don't think the Status Window saves it's state, so that is not a bug.
-
I'd expect the layout to be bad because the startup code does a lot of layout work. (Many people don't realize that OI 9 has some frustrating bugs that try to constantly 'reset' controls after I resize them). So, if the SIZE property is returning ""…
-
RDPs add a source of failure. Since they emulate certain aspects of Windows, they can confuse the UI sometimes. So, unless we can recreate this in a non-RDP scenario, I'm not sure how to fix it, especially if it's a matter of the SIZE property simpl…
-
I've not encountered this yet. The code in question is just reading the SIZE property of a control, which is concerning. Is this happening on a remote connection?
-
Thanks for posting, @prattspets. I let this post slip through the cracks. @Mihyar, is this on a modal dialog box? The problem with modal dialog boxes is that they do not allow for synchronous event handling. It's an age-old limitation of OI. If this…
-
Fixed in 3.2.3. When select a predefined theme, it should fully apply the theme and no longer leave behind the black backgrounds. Note, if you are unable to update to 3.2.3, you can alternatively Export your SRP Editor Options from a good copy and …
-
My guess is that your PC is losing the font somehow.
-
Have you run OI's client install? I'm just using the OIPI's printer control.
-
The main issue is duplication. One thing that might help me investigate this. On the "broken" machine, click the Export button on the Options window and send that to me.
-
Here you go
-
Fixed in 2.1.9.
-
That's a bug. It should return 1. The problem is that Locate uses indexing, and it appears that later values are replacing the hashtable keys of earlier values. I'll get that corrected for the next release. I can't really say why you can't edit New…