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,725
- Last Active
- Roles
- Member
Comments
-
Very quick and dirty program ;) n = 9999999 f = 0; t = 499 min = (f+t)/2; max = min InitRnd time() For i = 1 to n r = rnd( t-(f-1))+f If r < min then min = r If r > max then max = r Next n Return min: '-': max
-
Curious - I'm finding different behaviour between OI9 and OI10, and the help is not accurate in both places!? In OI9, this expression returns random numbers between 1001 and 3457 - implying that RND(n) is inclusive of n. This is as documented in t…
-
It works for me!? v2.2.2 and v2.2.7. Today, that expression return '8'. For tomorrow it returns '9'.
-
I did some benchmarking on these techniques a while ago. This showed (among other things) that manipulating a pre-filled string (using putBinaryValue, in my case) performed linearly as N increased, compared to order N-squared using concatenation. …
-
Ok, thanks - it must be my set up
-
@BarryStevens - I'm finding in the new OI 10.2.1 beta 2 that pressing the ... option you've shown in this thread, just crashes the system. Does the same happen for you?
-
Interesting! Thanks Barry
-
In this case it was a fresh install of OI 10.2.1, on which I ran the SRP Editor installer. But I forgot that it was an Option that needed to be set - sorry! Thanks :)
-
Sorry, I'm assuming the context viewed in the thread. Referring to the 'Launch the SRP Editor' menu item that in OI 10.1 was visible in the Tools menu of the IDE.
-
Ah, makes sense :)
-
Just to add that when installing SRP Editor 3.4.1.2 into OI 10.2.1, the Launch SRP Editor shortcut does not appear at all - although the Help menu does remain intact.
-
I got this too, but after installing SRP Editor (3.4.1.2) into OI 10.2.1. Curious that it's looking for SRPEditor.ocx rather than SRPEditor64.ocx !?
-
Interesting! Previous versions of the RList documentation would state: I wonder if RList always had that functionality but it wasn't exposed, especially in the 16bit days.
-
That seems to be a mistake in the blog article. It appears that the HEX_SHA256 method is only supported in OI 10. CRC32 isn't a documented method either, for that matter - although it does return a value. However the returned value is different b…
-
Are there any duplicated rows in the !CLIENTS index definition record in the !CLIENTS file? I'd try clearing all the pending transactions then deleting the ! record in the !CLIENTS file, forcing it to be recompiled.
-
We saw this many years ago, mainly in peer-to-peer configurations without a linear hash service. I think this might be low level locking within the linear hash system internally.
-
Is the second line shown there valid? (specifically the extra '<' at the beginning), or even needed? It seems to be redundant.
-
Probably noteworthy that the default [SRP_DATE] conversion has its own interpretation of unformatted dates, different to OI. Iconv( '20099', '[SRP_DATE]') = 15239 = September 20, 2009 Iconv( '20100', '[SRP_DATE]') = 11982 = October 20, 2000 Iconv( '…
-
We've found that for customers using UNC paths, some have to add the UNC path to the list of Trusted Sites in Internet Options on the desktop for the installers to work. Does that help?
-
Ah yes, that works now. Thanks Kevin :)
-
Yeah I've toggled that several times. When enabled, I just get a line for the borders without any content.
-
Although it seems with this version, the Status Window is minimised and I can't see compiler errors. Is that just me?
-
Good work Kevin :)
-
It seems to work within OI's editor so presumably there must be some way of doing it? Maybe they have an internal mapping table of keywords to help pages.
-
Ah, I missed the Options step - thanks :)
-
There is the OI function SetNoOfDelimiters (or the NO_OF_DELIMITERS or DELIMCOUNT properties in SYSTEM) that can be used to override this. It's useful if you have highly structured configuration records, for example.
-
Yes!! This works for all the tests above, 32 and 64 bit, and in our application. Thanks very much Kevin :)
-
Oh dear, we've now discovered a different problem with v2.2.1.5 (and 4) 32bit - and this is quite weird! We're calling ImageMagic via SRP_Run_Command() just to return the dimensions of a thumbnail image, eg '75x114'. It seems that in cases where t…
-
Great - thanks! :)
-
The output comes back to OI with the correct characters: In 2.2.1.4, 64bit _run evalv "c= 'dir F:\media\æ.jpg /b'` @ans = 'VAR'` Call SRP_Run_Command( c, @ans)" æ.jpg _run evalv "c= 'dir F:\media\飞蛾.jpg /b'` @ans = 'VAR'` Call SRP_Run_Command( c…