Search the web
Sign In
New User? Sign Up
cbaspadandhotpawbasic · cbasPad and HotPaw Basic - Discussions about cbasPad and HotPaw Basic
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1499 - 1528 of 2112   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1499
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...
cyber_phunk_design
cyber_phunk_...
Offline Send Email
Jun 3, 2004
1:55 am
1500
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_mackereth
Offline Send Email
Jun 3, 2004
7:00 am
1501
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...
cyber_phunk_design
cyber_phunk_...
Offline Send Email
Jun 3, 2004
7:36 am
1502
... 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...
mauseohr1944
Offline
Jun 3, 2004
8:25 am
1503
'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 ~...
cyber_phunk_design
cyber_phunk_...
Offline Send Email
Jun 3, 2004
8:52 am
1504
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 ...
cyber_phunk_design
cyber_phunk_...
Offline Send Email
Jun 3, 2004
9:15 am
1505
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...
cyber_phunk_design
cyber_phunk_...
Offline Send Email
Jun 3, 2004
9:34 am
1506
Just out of interest: What is the practical application of this? What is is meant to do? Nick _____ From: cyber_phunk_design...
Dr Nicholaos Kakouros
n.kakouros
Offline Send Email
Jun 3, 2004
6:17 pm
1507
... 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...
cyber_phunk_design
cyber_phunk_...
Offline Send Email
Jun 4, 2004
6:33 am
1508
... 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...
mauseohr1944
Offline
Jun 4, 2004
8:18 pm
1509
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...
jhundleyj
Offline Send Email
Jun 17, 2004
5:33 pm
1510
... '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...
mauseohr1944
Offline
Jun 17, 2004
5:49 pm
1511
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...
jhundleyj
Offline Send Email
Jun 17, 2004
6:17 pm
1512
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....
n3sdo
Offline Send Email
Jun 18, 2004
3:14 pm
1513
Hi.I am trying to use basic to send and receive IR data to and from TV and VIDEO.I would be gratefull for any advice on this. Brian. ...
Brian Rankin
bodach64
Offline Send Email
Jun 21, 2004
12:45 pm
1514
... 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...
n3sdo
Offline Send Email
Jun 21, 2004
1:50 pm
1515
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"...
Brian Rankin
bodach64
Offline Send Email
Jun 21, 2004
2:52 pm
1516
I would like to cause the backlight to be on all the time in all applications. Does anyone know how to make this happen? Thanks in advance Andy...
runals1
Offline Send Email
Jun 28, 2004
1:21 pm
1517
I'm wondering if anyone here has tried to port a HotPaw BASIC app to the B2C BASIC, and tried compiling it? Jay...
JayWigley
Offline Send Email
Jul 12, 2004
9:36 pm
1518
Hi : If you are talking about B2C4Palm, that uses Palmdev and Cygwin, I didn't even get it to work. Jorge ... From: JayWigley To:...
Jorge Ramon Hernandez V
ai7921
Offline Send Email
Jul 13, 2004
12:35 am
1519
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...
jay1958@...
jay1958
Offline Send Email
Jul 24, 2004
5:13 am
1520
Hi I just meant, that the expression would not work with any dialect of Basic Geert...
mauseohr1944
Offline
Jul 24, 2004
9:54 am
1521
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...
pud200
Offline
Aug 1, 2004
10:36 pm
1522
... I use JFile 5.61. Works fine, except you can't access fields beyond the 32nd......
proatnight
Offline
Aug 5, 2004
12:16 pm
1523
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...
jhundleyj
Offline Send Email
Aug 5, 2004
12:39 pm
1524
Hi #if dur&gt;60 then dur=60 if gt=60 then dur=60 this should be if dur>60 then dur=60 if m2&gt;59 then should be replaced with if m2>59 - then in a multi...
mauseohr1944
Offline
Aug 5, 2004
3:31 pm
1525
Thanks...
jhundleyj
Offline Send Email
Aug 6, 2004
12:30 pm
1526
I am getting a syntax erro in line 52 any ideas? James...
jhundleyj
Offline Send Email
Aug 6, 2004
12:48 pm
1527
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...
bakdar
Offline Send Email
Aug 8, 2004
6:08 pm
1528
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...
David Saum
davesaum
Offline Send Email
Aug 17, 2004
4:43 pm
Messages 1499 - 1528 of 2112   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help