I'd like to be able to put a keypad for data entry on a custom form, that will look like the keypad on Form 12. Is this possible in Hotpaw basic? Thanks for...
No one answered the questions but as I have found out some of the answers I thought I'd post them for posterity. setting the buffer to 5000 characters works...
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...
May 7, 2005 3:05 pm
1708
Hello everyone, This is a quest for all you wonderful programmers out there. Here is some code which displays four arrows on your palm, you press an arrow to...
How many moves do you want to store ? Just store then in the rs() and after, for example, 10 moves, read the rs() and start to send via ir or com. Rubens...
Hi I don't want to sound too critical, but: Suggesting the use of the rs()-array to store moves, proves that the program and its functions are completely...
Does anyone have an example of using HotPaw to hand off an eMail address to the Palm's default eMail app? (ie. startup Snappermail, VersaMail, with an email...
Does anyone know if it is possible to obtain the original Ybasic code from a .PRC applet that was created using "bcdmakelauncher.prc"? I created a large Ybasic...
Hi That's quite easy. However, anybody can write 'I want to retrieve my lost code . so I'm a bit hesitant as far as publishing these means is conderned. But on...
Greetings everyone, Recently joined this group and would like to introduce myself. My name is Ruben van der Leun, currently studying for Application Design,...
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...