Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
MattCrozier
About
- Username
- MattCrozier
- Joined
- Visits
- 1,726
- Last Active
- Roles
- Member
Comments
-
Str_Unicode is more like a macro in that it "becomes" Ansi_Unicode if the UTF8 flag is off and UTF8_Unicode if the UTF8 flag is on. Ah ha! - Thanks Kevin :)
-
Both Str_Unicode() and ANSI_Unicode() are prototyped for the CRevExt DLL (so part of OI), but I'm not sure what the difference between the two is? Both seem to convert ANSI strings to Unicode.
-
Maybe SetNoOfDelimiters() is being called, or the SYSTEM.NO_OF_DELIMITERS property is being set, with a low value somewhere??
-
Wouldn't the NOT operation of the SRP_Array( 'Join') function handle this? The logical NOT operation returns only those items that appear in LeftArray but not in RightArray. In other words, think of RightArray as an exclusion list We use this f…
-
Indeed it does! - thanks :)
-
I've got an utility function that trims a multi-nested dynamic array of trailing system delimiters (and spaces) for all system delimiters. I use it to reduce highly structured arrays (typically records) and when checking for changes. Function Ut_…
-
As far as I know, using RTI_Lock_Owner() with a Linear Hash service is the only way you can test a lock without physically placing a lock. So this method depends on it being reliable, of course. I found that it did what it was supposed to do in my…
-
IMHO, I'm strongly in favour of Mark or Bob's structure as best practise. Any very lengthy code within a block structure should be taken out as its own subroutine or service module, leaving the conditional or loop structure clear and concise. I'l…
-
What I did was first check if there is an active connection to the Linear Hash service (v4.7.2). If so then I'll use RTI_Lock_Owner() to determine the lock status; otherwise I'll test the lock manually. isLocked = false$ lockStatus = '' If SRP_…
-
Yes, thanks Don. I've grabbed this from another machine and I've got SRPcontrols64.ocx registered now. Just want to figure out why I was missing it, and what else might be missing! Cheers, M@
-
Ah, thanks! Looks like I don't have a VCOMP120.DLL
-
Thanks Kevin. I've successfully registered SRPcontrols64.ocx on another Win 10 machine so it does seem there's something not right with my workstation. I've run Dependency Walker on both machines - it shows errors even with a successful registrati…
-
Thanks Jared - unfortunately it's not showing as blocked. Yes, I've been caught out by that before ;).
-
Yeap. Version 10.0.17134 Build 17134
-
I'm getting the error as above but on my Windows 10 desktop! It doesn't seem to matter where I put the SRPControls64.ocx file (v4.1.2) or which version of regsvr32 I use. I'm running it at the Administrator Command Prompt. It seems like there is …
-
Ok, I've just replicated the exact same report on two different workstations, both with the same intermediate pages missing, but with one missing an extra page. Interesting that when you look in the local Windows Temp folder while the PDF is being …
-
I can't find that particular issue now. We recall an instance where the first page was numbered page 5! But have another example where images were no longer being shown at some point in the report although the text was still output. That's more i…
-
IIRC we were getting missing pages, not necessarily at the end. The reports were not necessarily one record per page so it was possible to get truncated or merged records within the report. It appeared to be a problem specifically with the page ge…
-
We find similar issues with PDF generation from OIPI v1 (not the .net version), especially if the reports include images. I presume its a memory issue within OIPI on the workstation. We tell people to Print to a PDF driver if they are getting thes…
-
Hmm, interesting! We're using a third party 32bit DLL tool in OI 9.4, but we're going to have to find another solution going forward. I've considered MS Office OLE automation for this as we integrate this way already for other things. One issue f…
-
Is this a Frameworks thing?
-
The right-justified sorting in V119 appears to be quite complex. It can sort text strings that contain numbers, numerically by those numbers. This goes for decimals and negatives too. Eg, a V119 Right justified sort on these strings (comma delimte…
-
Not sure why a VNAV on that line, but I assume that beforehand you Swap '@' with @window in AllEditTables ? Also, shouldn't the next line be (note the underscore) NoOfCols=Get_Property(EditTableProp,"LIMIT")< 1> HTH, M@
-
Ha - good stuff! :). Fortunately the schema I'm building at the moment is fairly simple and flat, so should port well to anything you're building in the framework. I may need support of Object type properties in future though.
-
Thanks Don! I should have just tried to Search the blog for '#window', but assumed the search would ignore the hash ;) Cheers, M@
-
Ah, my bad! It turns out my syntax wasn't quite the right and neither precompiler was happy with it. I was doing this If (shape.right >= selection.left) AND | (shape.top <= selection.bottom) AND | (shape.left <= selection.right) …
-
I want to show a floorplan and highlight areas of it (dots or squares will do) depending on what data is in context. It seems like I just need some basic GDI capabilities. My attempts so far have found the same as you - either the GDI augmentatio…
-
Colin - did you get any further with this? I need to do something similar but I see that onCustomDraw has since been deprecated. I'd be curious if you found an alternative solution. Cheers, M@
-
Darn! Thanks for the update. It was a good idea but sounds like you've saved me from some complications. Cheers, M@
-
Good stuff, Don. You anticipated my thinking well ;). Looking forward to seeing what pans out. Cheers, M@