You can just use a modal form. When the user selects the About menu item,
show the form:

        FormPtr frmP;
        
        switch (command) {
        case Options_About:
                frmP = FrmInitForm (About_Form);
                FrmDoDialog(frmP);
                FrmDeleteForm(frmP);
                handled = true;
                break;
        ...

Then make a model form in constructor with whatever you want in it.

 ==-
John Schettino author of
Palm OS Programming For Dummies, http://schettino.tripod.com

-----Original Message-----
From: Elizabeth Chang [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 30, 1999 11:24 AM
To: [EMAIL PROTECTED]
Subject: Help: About Box


I want to write a function to display general application information in the
About box.  Is there a function already so I don't have to write one up
myself?  Thanks.

Elizabeth Chang
ISSI Consulting Group
[EMAIL PROTECTED]


Reply via email to