Windows now protects and secures the Program Files directory. So don't even bother trying to store your files in Program Files directory. The Roaming directory...
46461
Stefan Pendl
pendl2megabit
May 19, 2013 9:08 pm
... SCAN is only executed when it is encountered, the TIMER is executed periodically on the other hand. -- Stefan Pendl http://stefanpendl.runbasichosting.com/...
46462
Rod
rod_bird001
May 19, 2013 9:26 pm
Scan checks for outstanding events, key presses or mouse clicks that are queued. Scan is immediate and single actioned. Scan is useful in a loop and lets you...
46463
Fred Jensen
auburnham53
May 19, 2013 10:43 pm
... My application needs to keep real-time by interrogating the computer and needs to exchange keep-alive messages with a PIC controller. Consequently, once...
46464
Ivor
volpas
May 20, 2013 2:04 am
Hi Rod and Stefan, Complete code list as follows, but I will be able to condense it with Stefan's neat print trick. The code was amended from the LINE demo...
46465
Stefan Pendl
pendl2megabit
May 20, 2013 6:34 am
... Ivor, I was not requesting the entire listing, I was just requesting to post code that can be run without any changes. The solution is no trick, it is how...
46466
Rod
rod_bird001
May 20, 2013 7:06 am
A timer event is needed to compliment the wait statement. The timer fires as often as you require. The benefit is that the processor gets to rest and allowed...
46467
Gary Passmore
garpmore
May 20, 2013 10:00 am
Having created a TKN file, I double-click (or open, or run as administrator) the Runtime engine to test the application, and get a "file not found" error...
46468
Carl Gundel
carlgundel
May 20, 2013 10:59 am
What file is not found? -Carl Gundel Liberty BASIC for Windows - http://www.libertybasic.com Run BASIC, easy web programming - http://www.runbasic.com...
46469
Bob Rantzow
rantzow
May 20, 2013 1:26 pm
The filedialog command works well and is quite powerful. Is there a similar way for the operator to select a path (i.e. to select a folder which may be an...
46470
Stefan Pendl
pendl2megabit
May 20, 2013 1:29 pm
... No native command, but LB ships with an API example, see BrowseForFolder.BAS -- Stefan Pendl http://stefanpendl.runbasichosting.com/ LB 4.04 Pro ......
46471
Ivor
volpas
May 20, 2013 4:51 pm
HI Stefan, I was hoping that there was a simple method, I must have just missed it on my read through of the help section. Thanks again , both. Ivor Cogdell...
46472
Stefan Pendl
pendl2megabit
May 20, 2013 5:05 pm
... Ivor, if you check out the examples shipping with JB, you should find some with the ability to display text in the graphics area. -- Stefan Pendl ...
46473
Stefan Pendl
pendl2megabit
May 20, 2013 5:06 pm
... One last note: the official support forum of JB is at http://justbasic.conforums.com/index.cgi ;-) -- Stefan Pendl http://stefanpendl.runbasichosting.com/ ...
46474
Fred Jensen
auburnham53
May 20, 2013 6:17 pm
... Well Richard, *must* is a very strong word. I don't have the DLL call, and everything works just great, Windoze 7 is very happy, and I normally run with...
46475
Rod
rod_bird001
May 20, 2013 7:29 pm
I'm not quite sure why you don't value the advice. Both the timer statement and the Sleep statement cause the processor to pause and look elsewhere for tasks...
46476
Gary Passmore
garpmore
May 21, 2013 12:04 am
Never mind, Carl. Just to confute me, the double-click started working again, when I tried it once more, as I was copying the pertinent file names/locations to...
46477
tomcoll2294
May 21, 2013 7:38 pm
Has anybody heard about the latest, status of the Beta Testing. Just wondering, about any improvements, of major changes that will be of a benefit to the...
46478
Fred Jensen
auburnham53
May 21, 2013 7:40 pm
... The advice is fine, Richard just said I *must* have a timer loop and that's not true. ... Windows runs all those things [anti-virus scans, some chron tasks...
46479
Stefan Pendl
pendl2megabit
May 22, 2013 5:58 am
... LB5 is currently in alpha testing, which was never open to the public. Currently there are still many things missing. Carl will announce the public beta...
46480
tomcoll2294
May 22, 2013 5:44 pm
Thanks for the information, didn't know it was still in Alpha. Know what patients means when waiting for a new release. Don't like software that will not...
46481
Stefan Pendl
pendl2megabit
May 22, 2013 5:52 pm
... Problem is that it must be compatible to LB4, while it was build from scratch. So it will take some time to get it into shape ;-) Looking forward to see...
46482
Sarmed
sarmednafi
May 24, 2013 5:33 am
Dear Sir, The following sentence works but the MINIMIZE not worked, under Win7. Is it normal or I make some mistake? run "Token.exe 2 "; filename$, MINIMIZE ...
46483
green8819
May 24, 2013 6:03 pm
You may be right: MINIMIZE does not work in Win7. The following works: run "notepad "; filename$ (without MINIMIZE) Your "Token.exe 2" is strange. Example...
46484
Rod
rod_bird001
May 24, 2013 6:13 pm
This runs perfectly well for me, .txt file rod.txt is opened by notepad and sits minimized on the taskbar. filename$="rod.txt" run "notepad "; filename$...
46485
Sarmed N.
sarmednafi
May 24, 2013 7:13 pm
Hello Mike, Thank you forĀ response, nothing strange mike, the name not real I just chose it to reflects the exists of both the exe run engine and the normal...
46486
Henrik
henriknilson
May 24, 2013 7:18 pm
To me, this is work OK under Win7 nomainwin RUN "NOTEPAD min.txt", SHOWMINIMIZED ________________________________ From: Sarmed <sarmednafi@...> To:...
46487
Sarmed N.
sarmednafi
May 24, 2013 7:23 pm
Dear Rod, The only examples in help file works fine, if a user program not system program seems no result with MINIMIZE. Of course we run the program first in...
46488
Sarmed
sarmednafi
May 24, 2013 8:02 pm
Hi All, I uploaded the final version of smd-code book. This version consists of two programs can works either together or you may use each one as single...
46489
Rod
rod_bird001
May 24, 2013 8:12 pm
So is it working now? Can you post the code for other readers?...