I have started Painting again and to help transfer a photo to a Canvas to get the aspect correct it is helpful to draw a grid pattern on a photo that matches a...
37201
terry_prism
Jul 2, 2011 11:39 pm
I previously posted a Autorun replacement as a script. For some friends I put up a compiled version that can be downloaded from http://autorun.inkmon.org I may...
37202
mylistgroups10@...
ozwebwiz
Jul 3, 2011 12:08 am
... From: "terry_prism" I previously posted a Autorun replacement as a script. For some friends I put up a compiled version that can be downloaded from ...
37203
mylistgroups10@...
ozwebwiz
Jul 3, 2011 12:19 am
I have to write an app that needs to pre-process into files because of long and complex algorithms. So I will need a large hash table for index results. Can...
37204
mylistgroups10@...
ozwebwiz
Jul 3, 2011 12:30 am
... From: <mylistgroups10@... I have to write an app that needs to pre-process into files because of long and complex algorithms. So I will need a large hash...
37205
terry_prism
Jul 3, 2011 12:13 pm
... Thanks for info. I am guessing that the more units the better. I realize that the fastest I can get applications to run is in a virtual drive where no real...
37206
eeefiles
Jul 4, 2011 11:47 am
Hey All, I would be glad if someone direct me towards some solution to develop a particular application. Here is what I want to achieve : 1. The program will...
37207
David
burkleyd
Jul 4, 2011 12:25 pm
... RSS feeds are typical an XML file. You will need to parse the information (that's in this XML file) to suit your needs. (rss feeds {xml files} are by...
37208
johnk20042001
Jul 5, 2011 5:31 pm
... In a 32-bit OS, you might have some problems since AFAIK 4-GB is the limit. You should try a 5GB file, know exactly what the last 16 to 4 integers are then...
37209
johnk20042001
Jul 5, 2011 5:38 pm
... try this well-written tutorial http://rapidq.phatcode.net/examples/graphics/InfraView/ You might try working with a QBitmap (or QBitmapEx) because they are...
37210
terry_prism
Jul 6, 2011 2:42 am
... Thank you very much John. As I said "I believe programming is an art form" You must be one hell of an artist. Terry...
37211
Christopher W.
c45207
Jul 8, 2011 5:07 am
... Assuming the platform is Windows, you may need to resort to direct calls to ReadFile and the like to work with files this large. See, for example, ...
37212
Christopher W.
c45207
Jul 8, 2011 5:31 am
... Try DECLARE FUNCTION IsDebuggerPresent LIB "Kernel32.dll" ALIAS IsDebuggerPresentRQ AS LONG You can now use the function IsDebuggerPresentRQ() to call ...
37213
Christopher W.
c45207
Jul 8, 2011 5:38 am
A stylistic comment about: FOR k=0 TO 5 Umem(k).Close ' reset stream Umem(k).CopyFrom(Umem(k+1),0)' copy all of stream Umem(k).Position=0 ' resets the position...
37214
Christopher W.
c45207
Jul 8, 2011 5:42 am
... Here, if we add another layer of indirection, we can avoid copying the memory streams. For example, the array of Umem items is simply used as storage...
37215
Walter
waltersamsa
Jul 8, 2011 10:04 am
... Hi Christopher, in my project I solved using QSTRINGLIST. I had and idea like yours, but probably I'm messed up. As I get some time, I'll try again. Thank...
37216
d_homans
Jul 8, 2011 1:21 pm
Uploaded to the Files\IDE folder. Fixes 2 minor bugs, added Jacques Callback Forwarder code (taken out of RapidQ2.inc by necessity), and while doing nothing...
37217
hollmen
Jul 9, 2011 3:05 pm
Hi all, Replacesubstr$() is case sensitive. Has anyone developed a *case-insensitive* routine/function for replacing strings? If so, I would be grateful if you...
37218
johnk20042001
Jul 9, 2011 8:20 pm
... FUNCTION REPLACESUBSTRall$(srcstr AS STRING, replstr AS STRING, withStr AS STRING) AS STRING DIM retrn AS STRING 'need static storage retrn =...
37219
Slavko Kocjancic
slavkok
Jul 10, 2011 6:44 am
... Clever... But SHOWMESSAGE REPLACESUBSTRall$("abcdefgABCDEFG", "Gg", "zZ") wont work...
37220
johnk20042001
Jul 10, 2011 8:40 pm
... That's ok, there is no Gg string inside the other string!...
37221
Slavko Kocjancic
slavkok
Jul 11, 2011 6:54 am
... I mean if replace string is mixed. so let's assume "gA" example....
37222
paul ludgate
snakedile
Jul 11, 2011 8:38 am
... <snip> ... As one of the 2 or 3 users of RapidQ32.dll I can tell you that it all works fine for me. It must either be something to do with your FBinRQ or...
What function in RapidQ finds a string (variable length) within a string (also variable length) ??? ... From: "Andrew Shelkovenko" <diakin@...> To:...
37225
Jacques
erdemaal
Jul 11, 2011 4:39 pm
... Great to read you Paul, ... Well ! FBinRQ - and family - as you know, simply passes the RQ bytecode to the interpretor who is in RapidQ32.Dll, FB has...
37226
Andrew Shelkovenko
diakin2002
Jul 11, 2011 4:41 pm
... From: <mylistgroups10@...> To: <rapidq@yahoogroups.com> Sent: Monday, July 11, 2011 2:37 PM Subject: Re: [rapidq] Re: Case-insensitive...
37227
Jacques
erdemaal
Jul 11, 2011 5:29 pm
... Not deeply tested ' --- Start RQ Code --------------------------------------------------- ' Console Application ' $ESCAPECHARS ON $TYPECHECK ON $INCLUDE...
37228
mylistgroups10@...
ozwebwiz
Jul 12, 2011 1:18 am
... From: Jacques To: rapidq@yahoogroups.com Sent: Tuesday, July 12, 2011 3:29 AM Subject: Re: [rapidq] Re: Case-insensitive Replacesubstr$() ... That's ok,...
37229
mylistgroups10@...
ozwebwiz
Jul 12, 2011 1:57 am
... From: <mylistgroups10@... <snip> I don't understand this line - DefInt iFound = Instr (istart, ucsSource, ucsReplace) Because it is outside the WHILE/WEND...