Re: No form event handler error at notification

2005-03-30 Thread Henk Jonas
Tam Hanna wrote: Hi, First of all thank you Henk et al for all the help. I now moved the form event handler into the same file as the routine that shows the form. Still no effect whatsoever. I am starting to get desperate-Ben, any ideas maybe? Best regards Tam Hanna Still the question remains: Do

Re: No form event handler error at notification

2005-03-29 Thread Tam Hanna
Hi, First of all thank you Henk et al for all the help. I now moved the form event handler into the same file as the routine that shows the form. Still no effect whatsoever. I am starting to get desperate-Ben, any ideas maybe? Best regards Tam Hanna -- For information on using the Palm

Re: No form event handler error at notification

2005-03-28 Thread Tam Hanna
Hi, the program still doesn't work. I use an automake project in PODS and don't thing that it multi segments the code. Here is what RSRCedit shows: code 0 code 1 data 0 data 1 pref 1 .. However, the HsFormEventHandler resides in a different file than PilotMain-and the event is handled in

Re: No form event handler error at notification

2005-03-28 Thread Henk Jonas
Tam Hanna wrote: Hi, the program still doesn't work. I use an automake project in PODS and don't thing that it multi segments the code. Here is what RSRCedit shows: code 0 code 1 data 0 data 1 pref 1 .. However, the HsFormEventHandler resides in a different file than PilotMain-and the

Re: No form event handler error at notification

2005-03-26 Thread Tam Hanna
Hi Henk, I already tried out to modify the code, and it now looks like this: FormPtr myform; myform=FrmInitForm(SyncForm); FrmDrawForm(myform); FrmSetActiveForm(myform);

Re: No form event handler error at notification

2005-03-26 Thread Logan Shaw
Tam Hanna wrote: I already tried out to modify the code, and it now looks like this: FormPtr myform; myform=FrmInitForm(SyncForm); FrmDrawForm(myform); FrmSetActiveForm(myform);

Re: No form event handler error at notification

2005-03-26 Thread Chris Tutty
From: Tam Hanna [EMAIL PROTECTED] I already tried out to modify the code, and it now looks like this: FormPtr myform; myform=FrmInitForm(SyncForm); FrmDrawForm(myform); FrmSetActiveForm(myform); FrmSetEventHandler(myform, HsFormHandleEvent); Why have you chosen this sequence? I ask because

Re: No form event handler error at notification

2005-03-26 Thread Henk Jonas
Chris Tutty wrote: From: Tam Hanna [EMAIL PROTECTED] I already tried out to modify the code, and it now looks like this: FormPtr myform; myform=FrmInitForm(SyncForm); FrmDrawForm(myform); FrmSetActiveForm(myform); FrmSetEventHandler(myform, HsFormHandleEvent); Why have you chosen this sequence? I

Re: No form event handler error at notification

2005-03-26 Thread Henk Jonas
Tam Hanna wrote: Hi Henk, I already tried out to modify the code, and it now looks like this: FormPtr myform; myform=FrmInitForm(SyncForm); FrmDrawForm(myform); FrmSetActiveForm(myform);

No form event handler error at notification

2005-03-25 Thread Tam Hanna
Hi you all, I have a program that responds to the sysExternalConnectorAttachEvent notification by popping up a form with an own event handler. The form pops up just fine with the following code: LocalID idx;UInt16 cardno; FormPtr myform; SysCurAppDatabase(cardno,idx);

Re: No form event handler error at notification

2005-03-25 Thread Henk Jonas
Tam Hanna wrote: Hi you all, I have a program that responds to the sysExternalConnectorAttachEvent notification by popping up a form with an own event handler. The form pops up just fine with the following code: LocalID idx;UInt16 cardno; FormPtr myform;