Hello everyone, im a newbie here but we all gotta start somewhere. I am dead set on creating this particular application for my palm. My application is a real...
Hi If you want to keep the HEX-notation ( 0xff ), you would have to use: 100 print #5,chr$(val("0xff")); The ';' is important as it prevents an additional ...
Hotpaw Basic 1.4.5 runs a little strange on my new TE. I'm not sure exactly what things are different. I was hoping maybe someone else had already defined...
Thanks for the help Geert!! print #5,chr$(val("0xff")); How would i go about sending multiple hex characters, for instance 0xff 0xff 0xef as a string of...
Disregard earlier question, I got it to work :). I am now able to initialize my device as well as send command for real time variable stream in my ybasic...
sub getdata print #5,chr$(255);chr$(255);chr$(239);chr$(90);chr$(8val("0x08")); chr$(15); end sub should work as well and save a lot of memory ( remember the...
Ooops I made things a bit too copmplicated: Instead of print #5,chr$(val("0xff")); you use the simoler: print #5,chr$(0xff); I never use the 0x.. Hex-notation,...
You can simplify your program by concatenating the strings as follows: print #5,chr$(val("0xff"))&chr$(val("0xff"))&chr$(val("0xef")); As far as the other...
Wow, thanks for these replys guys, truly helpful. I have been trying to decipher as much as i can so that i can at least offer some valid questions for your...
Hi To monitor a ( more or less )continuous stream try the following approach: call initialize:'initialize serial comm.,send necessary strings 'Start of main...
Hello, mauseohr1944 made a routine to create a listbox from memo tittle, is it possible to create a lixtbox from the text of a memo ? Have you an example of...
Hi I just uploaded 'filelist' to the files section. You can choose a memo from a listbox - the lines 2 to 65 become the contents of listbox 2. Due to the...
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the cbaspadandhotpawbasic group. File :...
cbaspadandhotpawbasic...
Jun 19, 2005 10:37 am
1734
Whilst I have written my application and it works find with LSDB only having 3 fields is a little limiting (I could really do with 4 real ones - not 3+) Is...
I have spent almost two days intermittently trying multiple for loops, while loops, and arrays and combinations thereof to get a non-repeating series of ...
Hi here a quick ( and a bit dirty ) solution. This will work for up to 127 ( num ) selected numbers from 1 up to 255 ( mnum ) This is because string length is...
Hi If you don't like the limitations of the first solution and / or don't like to use stringconversion, try this version: #singlernd.bas cls num=7 mnum=10 dim...
I seem partially to have solved my problem in that the following will *usually* produce what I want; however, it sometimes yields a "Subscript err in line 24" ...
Thank you very much, Geert! I will install this today and try it out. Yours, Chris __________________________________________________ Do You Yahoo!? Tired of...
Hello again everyone, I have had some more time to work with my serial application, and things are going rather well as i continue to learn. Would it be...
Hi Not knowing, how you retrieve your data from the serial port, I would suggest to use i$=get$(#5,5) to read five characters, and then continue your own...
You don't need DBOS installed on the Palm to use the HotPaw DB interface. I will try to makeup some simple code for you to look at later this week. LT...
Larry I had assumed that I didn't need DBOS installed on the Palm, just like I didn't need LIST. However having it installed does make it easier to make minor...
If you are refering to Pilot-DB, the freeware database program, the versions I am successfully using are 0.7.6.1 for DB-Editor (Windows) and 1.1.3 for the...
Joe I believe that to use HotPaw Basic to manipulate a Pilot-DB, the DB must be version 0.2.5. So I assume that as you are running a much later version you ...
Clive, you may be correct, I have not used Basic to access the data. That is why I was hoping for some code that might do just that. I use the Database for...
Yes, there was a major format change from db 0.2 to db 0.3. HPB uses the older 0.2 format. However you can still use the newer version of db if you like....
I have HotPaw BASIC 1.45 running on a Tungsten T5 with PalmOS 5.4. The following program makes my T5 do a soft reset rather than running properly. If I add ...