--- "Edward P. Ross" <[EMAIL PROTECTED]> wrote: > I know this sounds reeeeal basic - but should I have one > MainFormInit() and one MainFormHandleEvent() per program or per form?
MainFormInit() is where you put code to initialize controls on your main form, before it is drawn. MainFormHandleEvent() is the event handler for your main form -- that's where you put code to respond to events that your main form should handle. If you have more than one form, you usually have one FormInit() and one FormHandleEvent() for each form, although it is possible in come cases to use the same code for multiple forms. Please note that you should change the subject line when you are asking a new question. That way, people can find the information when searching through the archives. __________________________________________________ Do You Yahoo!? Try FREE Yahoo! Mail - the world's greatest free email! http://mail.yahoo.com/ -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
