I AM TRYING TO DRAW STOCK GRAPH ON WINDOW AND CANNOT DRAW A THINGS. ANY HELP FROM ANYONE WILL BE MORE THEN APPRICIATED. WILL SHARE MY BUY AND SELL SIGNALS FOR...
32524
asdeskmichael
Dec 5, 2006 5:24 pm
... current date and time plus one second. ... the addition of one second should be omitted. ... I do not know if this will help you or not; but I have created...
32523
Eren KUTLUAY
erenkutluay
Dec 5, 2006 5:24 pm
Hi.. This may happen if you are redimensioning the same variable in a different part of program without being aware.. Also be careful to use the same letter...
32522
Stefan Pendl
pendl2megabit
Dec 5, 2006 11:43 am
32521
asdeskmichael
Dec 5, 2006 5:12 am
Here is some code that you may find helpful. -Michael 'ASdesk TextSeperator Example 'by: Michael Smith TextToSeperate$ = "This is the text you want to seperate...
32520
Howard Traxler
howard_traxler
Dec 5, 2006 3:54 am
Hi all, How long can an input string be? input x$ Is it the same if I read it from a file? I assume it must be terminated by a carriage return? What command...
32519
Stefan Pendl
pendl2megabit
Dec 5, 2006 1:24 am
32518
Chergarj@...
gjosefc
Dec 4, 2006 11:38 pm
I just rechecked: Create Application IS in version 4.02 but not in v4.01; I also tried using this feature as a test (using, I believe, v4.03) and it seemed to...
32517
Zachary Antilley
zantilley
Dec 4, 2006 11:08 pm
I'm using 4.03 and it still does not work. Zack ... [Non-text portions of this message have been removed]...
32516
Stefan Pendl
pendl2megabit
Dec 4, 2006 10:59 pm
32515
Stefan Pendl
pendl2megabit
Dec 4, 2006 10:56 pm
32514
Stefan Pendl
pendl2megabit
Dec 4, 2006 10:50 pm
32513
Chergarj@...
gjosefc
Dec 4, 2006 10:47 pm
Which version of Liberty BASIC? Is it v4.01 or v4.02? Carl Gundel made a repair of the Create... feature for version 4.03 G C In a message dated...
32512
Zachary Antilley
zantilley
Dec 4, 2006 10:31 pm
There seems to be a bug with the Create Application routine. A work around is to follow the steps specified in the help file under "Using the Runtime Engine." ...
32511
taz805327
Dec 4, 2006 10:23 pm
hi im tryin to create an application from the code i wrote but every time i try to no matter where the .bas file is i get an OS error: cannot find the file...
32510
carlgundel
Dec 4, 2006 7:35 pm
... Yes, the input statement was the mechanism used to stop and wait for events in early versions of Liberty BASIC. Some examples may still have this...
32509
Gordon Rahman
dutch_gordon
Dec 4, 2006 7:14 pm
Well, let me guess. This statements are there to stop the program from running further and wait for the user to interact first. Of course it's better to use...
32508
waxmanmj
Dec 4, 2006 6:34 pm
What is the function of these lines of code? [inputLoop] input r$ Neither [inputLoop] nor r$ appear anywhere else in the code. However if I comment them out...
32507
Gordon Rahman
dutch_gordon
Dec 4, 2006 1:03 am
dim month$(12) 'restore[monthArray] for indx = 1 to 12 READ desc$ month$(indx) = desc$ next indx for t = 1 to 12 print month$(t) next t restore[monthArray] for...
32506
Chergarj@...
gjosefc
Dec 3, 2006 9:04 pm
You have two identical branch labels, each labeled [tempjump]. Also, you should create the array before using it in your code; DIMensionalize the array near...
32505
William E. Lopez
welopez2001
Dec 3, 2006 8:37 pm
It's amazing what you can find in the helpfile... but you have to look. LPRINT expr Description: This statement is used to send data to the default printer (as...
32504
alan procter
procteralan
Dec 3, 2006 8:26 pm
The asterix are not part of the program code, and I can just replace the with rem or ' but could someone please tell what is wrong with the syntax. I guess I...
32503
stefanhes
Dec 3, 2006 8:12 pm
Hi, The word is LPRINT not PRINT Look at the examples in the help file: look for PRINTERDIALOG or LPRINT hth Stefan Hesseling...
32502
taz805327
Dec 3, 2006 7:20 pm
hi can you help me i am makin a simple notepad clone but i cant get the print code anywhere. my code is simple: -=CODE=- nomainwin windowheight = 650 :...
32501
Norman Eskriett
nompse
Dec 2, 2006 5:59 pm
Thanks for your response Stefan The project I am working on is a full year calendar (one page per month) for the local chapter of the pensioners society...
32500
Kirk Evans
kirkjevans
Dec 2, 2006 3:04 pm
OK, I happened yesterday to be trying to look for the same thing that Bob is/was after and searched this forum, found the reply by gjbilik and decided to do...
32499
muttwalton
Dec 2, 2006 1:53 am
Thanks to all who tried to help. Can all of you say "Dumb Ass" at one time? I'm so embarrased! Dim Master$(1434) master$(114) error subscript out of...
32498
pigmanpc
Dec 1, 2006 5:21 pm
I would like to thank John De Angelo for your sorting routine it worked perfect. I am sorry waiting so long to give this to you, but I have been busy with...
32497
Gordon
gordonsweet2000
Dec 1, 2006 11:36 am
I seem to remember on occasion I managed to use say DIM x$(1000) for a large array but as you found I was not able to use all the 1000 elements of the array...
32496
rod_bird001
Dec 1, 2006 10:32 am
... structure. ... my ... Make sure you Dim right at the start of the program and cant jump into master$() before it is dimmed. Also make sure spelling is ...