I can't figure out why this won't work. :( keeps saying it has syntax error in line 9. ? code: #trial.bas h = 4 q = 0 d = 0 n = 0 for h = 2 to 0 step -1 let...
Two GOTOs in a row make no sense, as the second one can never be run. I think you meant to "gosub print" ... [Non-text portions of this message have been...
Ian Mackereth <ian@m...> wrote: Two GOTOs in a row make no sense, as the second one can never be run. I think you meant to "gosub print" Yeah, I figured it...
... Hi You must not use a reserved word like print as name of a label or variable. See the Hotbasic Reference for a list of thereserved words. HTH Geert...
'K, figured out the goto vs. gosub problem, and using "print" as a label Now I can't get the darn thing to print the leading zeros correctly. #trial.bas ~...
Hmmm, this seems to work. question, should I have the last endif after the skip: label or before? Not sure if it works, as the memo pad runs outa room before ...
Nevermind, seems like it doesn't care where the last endif goes. I tried it with the endif in either spot, and it worked both ways. I just took out the top...
... What is meant to do? ... The object of the project was to come up with all the possible combinations of coins that make up one doller. One I did originally...
... Hi I'm amazed ( but not totally surprized, since error handling in Hotpaw is a bit rudimentary ) that the omission of colons ( : ) between statements in a...
I got two programs from this list and the web but I keep getting errors when I try to run them. If any one could please help me debug I would greatly...
... 'put here a: print mc to check if mc is lager than zero ... get$("date", n, 10)gosub stnd ... or just make it two lines ... What kind of logical expression...
place the print mc after dim f$(mc) so I have #memo2todo.bas draw -1 call countmemos dim f$(mc) print mc call countcats dim c$(mxct) c$(mxct)="Unfiled" dim...
Im trying to basic tx / rx serial via the serial IR port, and cannot get the serial port to open in IR mode. I tried command: open "COM1:",9600,IR as #5....
... Brian There are a couple of "canned" programs that will do this, but to MY knowledge, it should be possible to do this using serial IR port and a basic...
Thanks Ed.I can't get the ir port to work.keeps returning "syntax error".But,I'll keep plodding on. Brian. ... to TV-VIDEO Brian There are a couple of "canned"...
This is an easy one! The line in the quoted portion near the bottom of this message should read: while (n<>-1) or, in English, "while n not equal to negative...
Can anyone tell me if Hotpaw is compatible with JFile versions >5.5. I understand that a new database format was implemented with this version and that version...
I have been trying to debug a program I found in one of the posts here and thanks for the initial help from those who replied. I would like to submit the...
Hi #if dur>60 then dur=60 if gt=60 then dur=60 this should be if dur>60 then dur=60 if m2>59 then should be replaced with if m2>59 - then in a multi...
Hi. I'm using my DateBook Notes as a sort of a daily journal, and I'm tring to access these notes with the yBasic. Unfortunately, the only way I've found out...
I want to use a Palm as a data logger for a PIC based pressure sensor that outputs serial format 9600 N81 data. I have an old Palm M100 with a serial cable and...