ups - I was just about to reply :
Thanks Keya ~ good suggestions :-)
I tried to implement it somehow but am running from deadlock to deadlock.
Here's where I am at the moment. It either doesn't commence counting the time or doesn't interrupt until the duration limit is reached. .... when kenmo ...
Search found 778 matches
- Wed Oct 14, 2015 1:12 pm
- Forum: Coding Questions
- Topic: Trouble with ElapsedMilliseconds()
- Replies: 3
- Views: 1594
- Wed Oct 14, 2015 11:06 am
- Forum: Coding Questions
- Topic: Trouble with ElapsedMilliseconds()
- Replies: 3
- Views: 1594
Trouble with ElapsedMilliseconds()
Hello,
I simply don't understand ElapsedMilliseconds() :?
I am trying to develope a small fun prog wherein a number of moving sprites could be hovered and during this event should be allowed to be clicked to start the follow-up gimmik.
Well at first I had tried to implement ExamineMouse() to be ...
I simply don't understand ElapsedMilliseconds() :?
I am trying to develope a small fun prog wherein a number of moving sprites could be hovered and during this event should be allowed to be clicked to start the follow-up gimmik.
Well at first I had tried to implement ExamineMouse() to be ...
- Sat Oct 10, 2015 10:34 am
- Forum: Linux
- Topic: Select text to string
- Replies: 8
- Views: 4448
Re: Select text to string
Hi, I think I have already answered half of the request on the french forum last night but microdevweb replied that he doesn't test code that works on Linux.
so why ask for it ?
@ Oma
I exactly shared that example of yours :D
@ Admins/Mods :this thread is in the wrong forum - likely by ...
so why ask for it ?
@ Oma
I exactly shared that example of yours :D
@ Admins/Mods :this thread is in the wrong forum - likely by ...
- Wed Oct 07, 2015 9:28 pm
- Forum: General Discussion
- Topic: Now This Really Irritates!
- Replies: 35
- Views: 15340
Re: Now This Really Irritates!
Great idea davido 
@oldefoxx ~ count two out - I saw two doubled on first glance
ps: glad to hear you've found that hidden list

@oldefoxx ~ count two out - I saw two doubled on first glance

ps: glad to hear you've found that hidden list
- Wed Oct 07, 2015 6:32 am
- Forum: General Discussion
- Topic: Now This Really Irritates!
- Replies: 35
- Views: 15340
Re: Now This Really Irritates!
Well, I've now checked the PB-Helps: 3.81, 4.10, 4.50, 4.61, 5.30, plus small and full PDF-edition, plus CodeArchive-collection and former VisualDesigner.chm
No triple-parted lists to be found. The constantlist seems to have been introduced with PB 4.xx and looked the same back then as the current ...
No triple-parted lists to be found. The constantlist seems to have been introduced with PB 4.xx and looked the same back then as the current ...
- Mon Oct 05, 2015 8:13 pm
- Forum: General Discussion
- Topic: Now This Really Irritates!
- Replies: 35
- Views: 15340
Re: Now This Really Irritates!
There was a point awhile back where I actually found that there was a long list of all the #PB_ constants and what procedures they pertained to, but I only found it that one time and have no idea how I stumbled onto it. That must have been five days ago when jwrjrjwrjr answered to your opening ...
- Mon Oct 05, 2015 8:55 am
- Forum: Linux
- Topic: Building from text mode console
- Replies: 2
- Views: 2580
Re: Building from text mode console
Hi Hi-Toro,
A - /CONSOLE is a parameter for PB-windows (like all ' / 'parameters)
To get all available parameters for Linux-Systems see: ~> pbcompiler -h
But there doesn't seem to be a corresponding console switch.
B - PureBasic has to be installed in a way that the needed adresses are ...
A - /CONSOLE is a parameter for PB-windows (like all ' / 'parameters)
To get all available parameters for Linux-Systems see: ~> pbcompiler -h
But there doesn't seem to be a corresponding console switch.
B - PureBasic has to be installed in a way that the needed adresses are ...
- Mon Oct 05, 2015 6:45 am
- Forum: Coding Questions
- Topic: Flicker in example code from help file
- Replies: 6
- Views: 2043
Re: Flicker in example code from help file
Both examples exist since 2004 and there is no specific french help team.Mesa wrote:(i'm the creator of this example in the french help team)
- Sun Oct 04, 2015 4:57 pm
- Forum: General Discussion
- Topic: Now This Really Irritates!
- Replies: 35
- Views: 15340
Re: Now This Really Irritates!
Hey, now that's an example of my taste 
two things:
* messagerequest() should be MessageRequester()
* to give it a chance for being regarded/added to the help-doc it should be placed in: Feature Requests and Wishlists

two things:
* messagerequest() should be MessageRequester()
* to give it a chance for being regarded/added to the help-doc it should be placed in: Feature Requests and Wishlists
- Sun Oct 04, 2015 4:29 pm
- Forum: Tricks 'n' Tips
- Topic: TimeBoxGadget - Like DateGadget..
- Replies: 10
- Views: 3641
Re: TimeBoxGadget - Like DateGadget..
Some tips you might like to check out:
* DayOfWeek(Datum) (My_Date.pbi, gregorian)
* Date Calculations (julian)
* DateAndTimeA.pbi - advanced date-functionality (1601 - 9999, WIN only)
* DayOfWeek(Datum) (My_Date.pbi, gregorian)
* Date Calculations (julian)
* DateAndTimeA.pbi - advanced date-functionality (1601 - 9999, WIN only)
- Sun Oct 04, 2015 11:21 am
- Forum: Coding Questions
- Topic: Get image width and height without loading image
- Replies: 50
- Views: 15382
Re: Get image width and height without loading image
Wishing you good results Fangbeast and happy celebrations 

- Sun Oct 04, 2015 11:07 am
- Forum: Linux
- Topic: What is the problem? Console arguments.
- Replies: 5
- Views: 3105
Re: What is the problem? Console arguments.
Aah ~ you got it 
btw: Welcome to PureBasic zer0c0de

btw: Welcome to PureBasic zer0c0de

- Sun Oct 04, 2015 10:52 am
- Forum: Linux
- Topic: What is the problem? Console arguments.
- Replies: 5
- Views: 3105
Re: What is the problem? Console arguments.
cmd$ = "cd " +Chr(9)+ "/some/where/Else" +Chr(9) + " "
If Left(cmd$, 3) = "cd "
arg$ = Mid(cmd$, 3) : Debug Mid(cmd$, 3)
arg$ = Trim(cmd$) : Debug Trim(cmd$)
arg$ = Trim(cmd$, Chr(9)) : Debug Trim(cmd$, Chr(9))
; SetCurrentDirectory(arg$)
Debug "arg$ = " + arg$
EndIf
Debug "*********"
If ...
If Left(cmd$, 3) = "cd "
arg$ = Mid(cmd$, 3) : Debug Mid(cmd$, 3)
arg$ = Trim(cmd$) : Debug Trim(cmd$)
arg$ = Trim(cmd$, Chr(9)) : Debug Trim(cmd$, Chr(9))
; SetCurrentDirectory(arg$)
Debug "arg$ = " + arg$
EndIf
Debug "*********"
If ...
- Sat Oct 03, 2015 11:05 pm
- Forum: General Discussion
- Topic: Now This Really Irritates!
- Replies: 35
- Views: 15340
Re: Now This Really Irritates!
Thanks Danilo
it's within: purebasic_home/sdk/compilerinterface.txt

it's within: purebasic_home/sdk/compilerinterface.txt
- Sat Oct 03, 2015 10:49 pm
- Forum: General Discussion
- Topic: Now This Really Irritates!
- Replies: 35
- Views: 15340
Re: Now This Really Irritates!
So it's now called "purebasic_compilation0.out", and if you want to keep it, you need to do a "sudo mv /tmp/purebasic_compilation0.out ~/newname, right?
Yes that is possible to do. But if the debugger is enabled that executable is much bigger as without debugger turned on.
It's likely easier to ...
Yes that is possible to do. But if the debugger is enabled that executable is much bigger as without debugger turned on.
It's likely easier to ...