This will disable the buttons....

static void AppEventLoop(void)
{
        Word error;
        EventType event;


        do {
                EvtGetEvent(&event, evtWaitForever);
                
                if (event.eType == keyDownEvent)
                {
                        if (event.data.keyDown.chr == calcChr)
                                continue;

                        if (event.data.keyDown.chr == findChr)
                                continue;

                        if (event.data.keyDown.chr == vchrHard1)
                                continue;

                        if (event.data.keyDown.chr == vchrHard2)
                                continue;

                        if (event.data.keyDown.chr == vchrHard3)
                                continue;

                        if (event.data.keyDown.chr == vchrHard4)
                                continue;
                }
                if (! SysHandleEvent(&event))
                        if (! MenuHandleEvent(0, &event, &error))
                                if (! AppHandleEvent(&event))
                                        FrmDispatchEvent(&event);

        } while (event.eType != appStopEvent);
}

-----Original Message-----
From: Javier Flores [mailto:[EMAIL PROTECTED]]
Sent: Friday, February 18, 2000 2:30 PM
To: Palm Developer Forum
Subject: how to unavailable bottoms on Palm III


Hi from Caracas, Venezuela.

I would like to know what could I do to unavailable the following bottoms on
the Palm Pilot III
.- Applications
.- Menu
.- Calculators
.- Find

Could you help me with that?

Regards,

Javier Flores, Webmaster
http://www.integradores.net Intranets on your hand!


-- 
For information on using the Palm Developer Forums, or to unsubscribe,
please see http://www.palm.com/devzone/mailinglists.html

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palm.com/devzone/mailinglists.html

Reply via email to