start is 53 here with both PureBasic versions 3.94 and 4....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
Search found 141 matches
- Sun Jul 30, 2006 12:55 pm
- Forum: Coding Questions
- Topic: bug in FindString ?
- Replies: 7
- Views: 2042
- 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?
Why reinvent the wheel???? Do a search: http://www.purebasic.fr/english/viewtopic.php?t=6905..::Origin::.. wrote:I'm trying to convert RC4 encryption from another language to PureBasic.
- 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....
- Thu Jul 27, 2006 6:54 am
- Forum: Coding Questions
- Topic: Ok, I compressed. Now how do I decompress it?
- Replies: 5
- Views: 1186
- Wed Jul 26, 2006 1:49 pm
- Forum: Feature Requests and Wishlists
- Topic: [Implemented] IDE - Alphabetized Procedure list...
- Replies: 14
- Views: 3382
- 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....
- Tue Jul 25, 2006 10:21 pm
- Forum: General Discussion
- Topic: Complete #VK_ list
- Replies: 4
- Views: 2373
- Tue Jul 25, 2006 9:43 pm
- Forum: Off Topic
- Topic: Black copies again :((
- Replies: 43
- Views: 7512
- Tue Jul 25, 2006 9:41 pm
- Forum: General Discussion
- Topic: Complete #VK_ list
- Replies: 4
- Views: 2373
They are VK_PRIOR and VK_NEXT.... also why is this in the Bug Reports section????Jan Vooijs wrote:Sadly two are missing:
Or did I miss something???Code: Select all
; Missing keys in the #VK_PGUP = 19 #VK_PGDN = 34
Jan V.
- Tue Jul 25, 2006 1:21 pm
- Forum: Off Topic
- Topic: Sad News !
- Replies: 17
- Views: 5171
- 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????
- 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....
- Sun Jul 23, 2006 12:52 am
- Forum: Coding Questions
- Topic: Some questions about url escaping
- Replies: 7
- Views: 1720
- 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 ...