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,129
- Last Active
- Roles
- Administrator
Comments
-
Now that we can see the XML properly we can focus on the problem. In order to avoid repeating what you may have already tried, did you actually attempt to pass in the NameSpace data?
-
No, that didn't work but I edited it for you.
-
I meant use the forum Code formatting feature. When you post your XML, select it and then click the dropdown in the toolbar with the Paragraph symbol. Pick "Code". Your XML will look like this: foo
-
I assume you were posting XML but it appears that all the tags got stripped. Can you post it again but try using the Code formatting option?
-
The SRP Popup tool is not what you think it is. That is, it is not an OI Popup replacement. It is a window popup that works similar to how software notification popups (think Outlook) work.
-
No, there is no support for this. You would have to do something out of the box, like hooking, to get a feature like that to work.
-
I think this should be enough for us to test with. We'll get back to you ASAP. Thank you very much for posting the code.
-
Okay. I guess you were wondering if downgrading would help under the assumption that your issue was newly introduced. Given that didn't change anything, your best bet is to upgrade to 4.1.0 RC12 or just put together an RDK that duplicates your setup…
-
No, I'm not seeing that. When you say, "upgraded to the latest build" what version is that? Are you referring to the latest official release (v4.0.3)?
-
I'm not aware of a glitch in this method. In fact, I use it myself with a specific project I support that utilizes this control heavily. I am using 4.1.0 RC11. I can provide you a newer version of the control if you want to see if that helps, but I …
-
I don't think we have a singular property to do that. My suggestion is to use the Dimension property to pre-size the SRP EditTable to the number of rows you want and then set the AllowInserts and AllowDeletions properties to 0 (i.e., False) and the …
-
Word to the wise!
-
Just to give you a quick response, I'm most certain this is related to the same problem you've seen posted in previous threads. If someone on our team knows how to address this with Windows Server 2012 R2 they'll post an answer for you.
-
And after the data is read does navigating the edit table reproduce the problem? Just for grins and giggles, what happens if you read the record normally but then immediately do something like this from a pushbutton: AtRecord = Get_Property(@Windo…
-
I strongly suspect there is more to this picture than has been disclosed. You said that this control is databound. If that is so, then what happens if you manually create a record with the same data and then allow OI to read the record and populate …
-
Michael, I'm pretty sure Mark was suggesting that you use SRP_Array('Rotate') against the data before you attempted to stuff it into the edit table. The SRP_Array function does not directly work with any control. However, this suggestion would only …
-
I moved this post to the property category. What is the style of the SRP Button? Some styles don't allow the control to "get" focus so this might be why you are not "losing" focus with the SRP EditTable.
-
Brian, As soon as possible, give up the idea of sharing variables between sessions. This just won't work. The easiest way to look at this is as if you had two copies of OI running and ask yourself, "is it possible for my first OI to share data with…
-
Hi Brian, welcome aboard! Kevin beat me to the punch with some answers. His answers are similar to what I would have written so I'll focus on a tangential issue that I think will impact your approach to this. After reviewing your questions I have …
-
Are you referring to GetFileVersionInfo API?
-
See if this thread helps your situation.
-
Near as I can tell, your experience is not unexpected. The Clear method clearly states that it "removes all data leaving blank records". Formatting, especially custom formatting, is left alone. While I am thinking of possible better ways to handle …
-
Brian, a bit of friendly advice when it comes to questions related to software design issues is to provide us a brief description of what you are trying to accomplish. You are relatively new to OI, but even veteran developers ask questions (here and…
-
What Kevin wrote is true, but YMMV when it comes to layering non-OLE controls. Again, smoke and mirrors, but we've been able to put an OI button on top of an OI edittable control before we wrote our own control.
-
1. TBH, can't be done. Nature of the beast with OLE controls in OI. What is your functional goal here? That is, why do you want to do this? 2. I don't believe there is any official information about this, but I believe tab order and z-order are rel…
-
TBH, something is not right. If all you are doing is that and you've crossed all your t's and dotted all your i's, then this is not normal. Based on my experience, I would be inclined to think this is code related.
-
Can't help you on that one. That is the first I've heard of extra padding just appearing out of nowhere. Is this extra padding consistent? Does it matter what kind of data or how much data you are stuffing? What are you doing to stuff the data?
-
Jim, As you suspected, the SRP Mail Utility does not have a "GetMail" feature. Most of the times we've needed to make OI into an email listener we've been working with Exchange accounts so our solution was to use Office OLE Automation. A long time…
-
Very good...what step actually helped you?
-
I suspect you have an event handler that is populating a databound control after your WRITE event completes and this is causing the SAVEWARN property to get triggered once again. Since the intent is to always close the form after a WRITE, try removi…