Search found 141 matches

by Phoenix
Sun Jul 30, 2006 12:55 pm
Forum: Coding Questions
Topic: bug in FindString ?
Replies: 7
Views: 2042

kinglestat wrote:code reads

q$ = "SELECT list.data FROM list where ( list.index = <rnd=100> )"

Pos = FindString ( q$, "<rnd", 1 )
look = Pos + 3
start = FindString ( q$, "=", look )

start is 47 but should be 53
start is 53 here with both PureBasic versions 3.94 and 4....
by Phoenix
Sun Jul 30, 2006 2:38 am
Forum: Coding Questions
Topic: What is 'mod' in PB?
Replies: 11
Views: 2339

Re: What is 'mod' in PB?

..::Origin::.. wrote:I'm trying to convert RC4 encryption from another language to PureBasic.
Why reinvent the wheel???? Do a search: http://www.purebasic.fr/english/viewtopic.php?t=6905
by Phoenix
Sat Jul 29, 2006 4:32 am
Forum: Off Topic
Topic: 666 posts
Replies: 13
Views: 2606

dracflamloc wrote:Considering 666 is actually a mistranslation.... it doesn't mean anything.
Wrong.... The Bible says: Six hundred threescore and six. Now, because a "score" is 20, then 600 + (3 x 20) + 6 = 666.
by Phoenix
Thu Jul 27, 2006 10:03 pm
Forum: Announcement
Topic: [NEW BOOK] Purebasic - A Beginner's Guide To Programming...
Replies: 190
Views: 69033

Re: [NEW BOOK] Purebasic - A Beginner's Guide To Programming

Why did you call it "Purebasic" instead of "PureBasic"???? It's technically wrong....
by Phoenix
Thu Jul 27, 2006 6:54 am
Forum: Coding Questions
Topic: Ok, I compressed. Now how do I decompress it?
Replies: 5
Views: 1186

superadnim wrote:why dont you just keep on reading the paper then?, unless you didnt understand what you were reading, you should be able to pull this out.
:lol: What a great newbie response!!!!
by Phoenix
Wed Jul 26, 2006 1:49 pm
Forum: Feature Requests and Wishlists
Topic: [Implemented] IDE - Alphabetized Procedure list...
Replies: 14
Views: 3382

Image
by Phoenix
Wed Jul 26, 2006 4:51 am
Forum: Feature Requests and Wishlists
Topic: [Implemented] IDE - Alphabetized Procedure list...
Replies: 14
Views: 3382

Re: IDE - Alphabetized Procedure list...

It's already in the Preferences....
by Phoenix
Tue Jul 25, 2006 10:21 pm
Forum: General Discussion
Topic: Complete #VK_ list
Replies: 4
Views: 2373

Since VK_NEXT and VK_PRIOR are NOT the windows names but the LINUX names, wink wink. On windows it should be VK_PGDN and VK_PGUP!!
Huh???? Microsoft Windows has always called them VK_PRIOR and VK_NEXT.... take a look for yourself....
http://msdn.microsoft.com/library/en-us/winui/WinUI ...
by Phoenix
Tue Jul 25, 2006 9:43 pm
Forum: Off Topic
Topic: Black copies again :((
Replies: 43
Views: 7512

yoxola wrote:>A little bit of protection is needed so people can't just turn the demo into a full version

Yes, completely agree that.
From what I can see from the demo version it already has that sort of protection????
by Phoenix
Tue Jul 25, 2006 9:41 pm
Forum: General Discussion
Topic: Complete #VK_ list
Replies: 4
Views: 2373

Jan Vooijs wrote:Sadly two are missing:

Code: Select all

; Missing keys in the 
#VK_PGUP = 19
#VK_PGDN = 34
Or did I miss something??? :)

Jan V.
They are VK_PRIOR and VK_NEXT.... also why is this in the Bug Reports section????
by Phoenix
Tue Jul 25, 2006 1:21 pm
Forum: Off Topic
Topic: Sad News !
Replies: 17
Views: 5171

Skydiving accident???? :shock:
by Phoenix
Tue Jul 25, 2006 12:37 pm
Forum: Coding Questions
Topic: Maximum number of gadgets
Replies: 12
Views: 2247

Re: Maximum number of gadgets

How can a small application have more than 10000 gadgets????
by Phoenix
Tue Jul 25, 2006 11:46 am
Forum: Coding Questions
Topic: Multiple display positions
Replies: 10
Views: 2198

Re: Multiple display positions

Why not show the PB3.9x code and someone can update it to version 4 for you....
by Phoenix
Sun Jul 23, 2006 12:52 am
Forum: Coding Questions
Topic: Some questions about url escaping
Replies: 7
Views: 1720

I'm not sure but if you use this code then Windows will do it for you, so you don't have to worry about catching all characters....

url$="www%2edomain%2ecom%2fmy%5ffile%2ehtml"

If OpenLibrary(0, "shlwapi.dll")
CallFunction(0, "UrlUnescapeA", @url$, 0, 0, #URL_UNESCAPE_INPLACE)
CloseLibrary(0 ...
by Phoenix
Sun Jul 23, 2006 12:45 am
Forum: Coding Questions
Topic: Floating EditorGadget
Replies: 2
Views: 937

Re: Floating EditorGadget

Because when window 1 is opened your code then goes into a windowevent loop with that window, so clicking in window 0 can't happen until the event loop in window 1 is finished, but that only happens if you close window 1.... you can see this if you close window 1 - the event loop of window 0 then ...