RE: Multiple Select in a List Box????

2004-11-19 Thread Craig Austin
It's also fairly easy to do the same idea with just a normal listbox and custom draw elements. The list item works like a checkbox, the first time the user clicks, the row is selected, the second time, the row is un-selected. This saves screen space because you don't have to show the

RE: how to handle long pulldown lists...

2004-03-26 Thread Craig Austin
Another option is to wrap each options to take up several lines. You'll need to keep track of how many lines each option takes, so you can map that back to the correct selection. By using the custom draw routines for the list, you should be able make it appear as though you are selecting

RE: What am I doing wrong

2004-02-05 Thread Craig Austin
I want to load two arrays with the information of a database, but I have problems related with memory (the emulator and a palm device crashes with this sentences). This is the code, any idea??? ... typedef struct { Int16 conProvincia; Char nomProvincia[15]; } TRecProvincia;

PalmDebugger over USB with Handspring Visor

2004-02-04 Thread Craig Austin
I'm trying to run the PalmDebugger and connect to a Handspring visor with the USB cradle. Whenever I select the USB options from the Connection menu, the debugger window displays the message: error code: 040E over and over again. From the header files, I believe this error is

RE: Where is Handspring forum now ?

2004-01-29 Thread Craig Austin
What about the Developer link on that page. Do you know where that moved to? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Ben Combee Sent: Thursday, January 29, 2004 3:46 PM To: Palm Developer Forum Subject: Re: Where is Handspring forum now ?

RE: offtopic: who can figure out this for loop

2003-06-24 Thread Craig Austin
Sebastian is actually correct (at least for VC++). Don't know all the 'rules' but when I ran it, the result is 1 (not 2) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Kevin OKeefe Sent: Tuesday, June 24, 2003 1:46 PM To: Palm Developer Forum

RE: Sleep() function in Palm

2003-02-05 Thread Craig Austin
You could just set an alarm to fire in 3 seconds. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, February 05, 2003 1:30 PM To: Palm Developer Forum Subject: Sleep() function in Palm I am sitting here digging

RE: Sleep() function in Palm

2003-02-05 Thread Craig Austin
Probably SysTaskDelay() -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, February 05, 2003 1:56 PM To: Palm Developer Forum Subject: Re: Sleep() function in Palm SysDelay? I can't seem to find that in the

RE: Dynamic UI

2002-03-27 Thread Craig Austin
You could just use a non-editable field, then look for a fldEnterEvent to know when it has been clicked. (An underlined field looks like a link). -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Joseph Chan Sent: Wednesday, March 27, 2002 1:06 PM To: Palm

RE: Signature Printing on Printer

2002-03-25 Thread Craig Austin
Shailesh, I wrote a simple app that does this. Basically I handled all of the penDown and penMove events to create a list of 'lines', then I just outputted each of those lines to the printer. (I was just using sockets to a network printer, but I'm assuming that the symbol SDK will allow for

RE: Signature Printing on Printer

2002-03-25 Thread Craig Austin
: Craig Austin [mailto:[EMAIL PROTECTED]] Sent: Monday, March 25, 2002 9:29 AM To: Palm Developer Forum Subject: RE: Signature Printing on Printer Shailesh, I wrote a simple app that does this. Basically I handled all of the penDown and penMove events to create a list of 'lines', then I just

RE: gcc and long long int

2001-07-19 Thread Craig Austin
I've used gcc's long long and CodeWarrior's long long quite extensively, and it works great. (I haven't used it with prc-tools thoughjust with regular gcc) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of James Sent: Thursday, July 19, 2001 9:20

RE: gcc and long long int

2001-07-19 Thread Craig Austin
a long long can hold? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Craig Austin Sent: Thursday, July 19, 2001 10:32 AM To: Palm Developer Forum Subject: RE: gcc and long long int I've used gcc's long long and CodeWarrior's long long quite extensively

RE: Forcing const char *

2001-06-06 Thread Craig Austin
Why don't you just type cast it? MyCall((const char **)myPointer); -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jeffrey Pahren Sent: Wednesday, June 06, 2001 2:40 PM To: Palm Developer Forum Subject: Re: Forcing const char * Can you clarify

RE: Form Greater than 160 Pixels in height.

2001-05-10 Thread Craig Austin
Hi Mark, I had the same problem. I ended up creating a bunch of invisible controls, and then I move and show then as appropriate in response to the scroll events. It was kind of a pain to set up, but it seems to work fairly well. Craig -Original Message- From: [EMAIL

Button doesn't get pushed in Palm OS 3.3

2001-05-10 Thread Craig Austin
I'm seeing a strange problem that only appears to be showing up in PalmOS 3.3. I have a simple button on a form (along with a couple of images, and a few labels). The problem is that the form never get's a CtlSelect event. (It get's penDown penUP events, but not ctl select.) Again, this

RE: Button doesn't get pushed in Palm OS 3.3

2001-05-10 Thread Craig Austin
:[EMAIL PROTECTED]]On Behalf Of Scott Johnson (Bellevue) Sent: Thursday, May 10, 2001 10:39 AM To: Palm Developer Forum Subject: RE: Button doesn't get pushed in Palm OS 3.3 From: Craig Austin [mailto:[EMAIL PROTECTED]] the form never get's a CtlSelect event. (It get's penDown penUP events

RE: why are my button labels getting trashed?

2001-04-10 Thread Craig Austin
I had the same problem a while back and posted here, but never got any information. It seems like it depended on how many dynamic UI elements were added...once you passed a certain number, the button texts would get hosed. I ended up just creating everything at design time, and hiding and

RE: What is the preferred method for creating a PDB file?

2001-03-28 Thread Craig Austin
Thanks all for the input. I figured I would have to just write my own from scratch, but when I read the dislaimer in the docs that the format might change, I was wondering if there was another way. Thanks again, Craig Austin TheraDoc [EMAIL PROTECTED] -Original

What is the preferred method for creating a PDB file?

2001-03-27 Thread Craig Austin
Hello, I need to be able to create a PDB file on the desktop without going through a conduit. (i.e. using the Sync Manager API's.) I've been reading the PDB Database Format document and it says: "...One the host computer, the PDB file is written by the Palm backup conduit and read by

RE: Hotsync not connecting

2001-01-24 Thread Craig Austin
Check your Serial port settings under HotSync-Setup under the local tab, and make sure the correct Serial port is selected. (I've had that problem before, and it behaved just as you described) Craig -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of

RE: Number of items on a form

2001-01-22 Thread Craig Austin
Thank Steve, Does anyone at Palm know what the actual limit is? Thanks, Craig -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Steve Sent: Sunday, January 21, 2001 11:37 AM To: Palm Developer Forum Subject: Re: Number of items on a form

Number of items on a form

2001-01-18 Thread Craig Austin
Hello, I asked a similar question a while back but didn't get a response, so I'll try once more. There seems to be a limit on the number of items you can add to a form in constructor. (I couldn't add any more than 99). After that, constructor won't create any more. Is there a

Object Limit?

2001-01-10 Thread Craig Austin
Hello Everyone, Does anyone know if there a limit on the number of object that can be dynamically created on a form at run time? (Given that there is enough memory for all of them?) Thanks, Craig Austin -- For information on using the Palm Developer Forums

RE: Change Popup Trigger label

2001-01-09 Thread Craig Austin
To Change the Selected item in the List: LstSetSelection(lstPanels, OffsetOfSelection); To Change the Label of the PopTrigger: CtlSetLabel(popupTrigger, LstGetSelectionText(lstPanels, OffsetOfSelection)); Craig -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: Popping up a list from a button

2001-01-09 Thread Craig Austin
If it's a list you are trying to popup, just use the API call: LstPopupList(ListPtr ListP); The return will be the item index that was selected from the list. Craig -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Robert Kozak Sent: Tuesday,