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,092
- Last Active
- Roles
- Administrator
Comments
-
How are you assigning the value to OleSubClass$? I am wondering if this is a problem related to multi-instance forms and the form name portion of that variable is no longer valid.
-
Understood.
-
You are making web requests to these APIs and simply getting a response back. The "out of the box" way to do this in OI 9 is to call the OLE_GetWebPage function. This works for most purposes, but it does have some limitations that we have worked aro…
-
That was one of the options in the link I provided. I watched their video. From what I can tell, the web API is straight forward. Doesn't seem much different than other web APIs have interfaced with.
-
@BarryStevens - Kevin is correct, I don't think anybody here has integrated fingerprint scanning. As he noted, if this is going to be an SDK based API, wrapping it up so RevDotNet can consume it is often the best way to go. However, according to thi…
-
I concur. We've used Dialog_Box to open multipage windows without a scrollbar for years (technically decades) and this has never been an issue.
-
@AusMarkB - Does this thread help?
-
Thanks for the catch on this. I believe I have updated the page where this was misspelled. Please confirm.
-
Yes, I've made that suggestion many times. However, I don't rank very high within our team so my suggestions always get shot down. ;-)
-
This property only affects adding and removing rows. It will have no affect when modifying existing rows. This is why I didn't suggest the AutoPopulate property. I didn't think it was applicable.
-
You could try to upgrade to 4.0.11 and see if that makes a difference (but I'm doubtful).
-
Another thought...instead of updating these properties individually, why not just update the ColumnList property array in your loop and just do one ColumnList Set_Property?
-
Well, I'm doubtful the OpenInsight REDRAW property is useful with the SRP ReportTable control. As far as I know, the SRP ReportTable does not have its own Redraw property the way the SRP EditTable does. If you are changing the visible settings of 56…
-
@ColinRule - You can use the code paragraph feature to format your code: CALL Set_Property(TableControl,"REDRAW",0) ColumnList=Get_Property(TableControl,"OLE.ColumnList") ColCount=DCOUNT(ColumnList,@FM) For Column=1 TO ColCount ColName=Colum…
-
@BarryStevens - I'm wondering if the code didn't post correctly due to markup issues. Otherwise, you are correct, ColName isn't getting populated correctly.
-
I agree that time seems excessively long, but would you humor me and place the Start and Stop calls just before and just after the ColumnWidth property settings? This will provide better isolation and it will also give us an average for each iterati…
-
I want to confirm a couple of things: * You are loading the data into the ReportTable before setting the column widths? * Did you actually set a benchmark (e.g., using the SRP_Stopwatch utility) to isolate the time it takes to set the ColumnVis…
-
I've never seen that before. I'm going to assume that the report you are exporting is on par with previous reports you've exported (i.e., not noticeably bigger). It appears to be using your OI folder as the default path. Try setting your Sort Path t…
-
Yes, all licensed products can have their own expiry date. We do this for controls because some customers might not want to continue renewing a specific control. SRP Controls Pro licenses have all controls grouped together so I only have to update o…
-
M@ - I just sent you an email with an updated license. I overlooked the Tree and Subclass controls when I updated the expiry date. I'll let Kevin address your other issue.
-
You could convert this to a CHECKBMP control and use a custom bitmap to give yourself a very specific look and size.
-
Better question...how did it get there? It is clear you have source code from the debugger. I guess we must have supplied a copy of the source some time in the past for troubleshooting purposes and this has been recompiled in the OPTO application. I…
-
Can you check to see if you have more than one copy of $SRP_LIST in the SYSOBJ table? You should at least have the one in SYSPROG, but you might have another in a local app like $SRP_LIST*OPTO or similar.
-
Are you using SRP_List in your code? If so, can you post a snippet so we can test it here? If you aren't using SRP_List, please send me a screenshot of the Call Stack so I can see what might be calling it indirectly.
-
My first guess is that the DLL didn't get updated.
-
@Opto_Will - is there a bug in the new release or is there a backwards compatibility issue?
-
No, you are correct. They would need a way to decode it. However, decoding libraries are pretty standard. When you say you are "zipping and uploading them to a Blob", is the "uploading" part being handled by the Web API? I'm tempted to say that FTP…
-
I was going to ask if Base64 was acceptable for your project. We've always been successful using that.
-
I think getByteSize() should work fine. However, Content-Length is not a requirement for the full payload to be received. It is meta-data that may or may not be used by the server to truncate the body after it is received. I'm inclined to think that…
-
So the PNG file worked but the ZIP file didn't via SendHTTPRequest?