I use this all over my app, but in a couple situations it doesn't execute immediately; it will eventually go to the new form after it's done executing the rest of my methods, but then the new form is overlayed on top of the old form. When I use the debugger it just steps over the FrmGotoForm() call and continues on its merry way. Is there something I'm missing about the event stack or method stack?
All that FrmGotoForm() does is post three events to the event queue
frmCloseEvent for the active form (if there is one) frmLoadEvent for new form frmOpenEvent for new form
It doesn't cause any immediate action -- that happens when you finish the current event handler.
-- Ben Combee, senior DTS engineer, PalmSource, Inc. Read "Combee on Palm OS" at http://palmos.combee.net/
-- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
