Greetings from GA.  I witnessed a strange occurance
using SelectDay so I created a brand new clean project
in Codewarrior.  Slapped one button and a select trigger
on the main form that calls this logic:

case MainDateSelTrigger: 
  title = MemHandleLock(DmGetResource (strRsc, SetReviewDateString ));
  if (SelectDay (selectDayByDay, &month, &day, &year, title))
  {
    ctl = GetObjectPtr (MainDateSelTrigger);
    label = (Char *)CtlGetLabel (ctl);
    DateToDOWDMFormat (month, day, year, sysPrefs.dateFormat, label);
    CtlSetLabel (ctl, label);
  }
  MemPtrUnlock (title);
  handled = false;
  break;

It seems that after calling SelectDay, my form no longer responses
to events correctly.  For instance, the button no longer works, yet
it does prior to tapping the select trigger.  

Any ideas on this would be GREATLY appreciated.

Stephen
[EMAIL PROTECTED]

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/

Reply via email to