--- "Edward P. Ross" <[EMAIL PROTECTED]> wrote: > Thanks for the tips - maybe I asked the wrong thing. I wanted the > buttons to be visible/invisible and I thought that you are > supposed to use the usable property for that... Can you clarify?
First off, you can set that at design time using Constructor. Either check or uncheck the Usable property. If you want to hide or show a control at runtime, use CtlShowControl() or CtlHideControl(), which: 1. Sets the usable bit to true (false for hide). 2. Sets the visable bit to true (false for hide). 3. Calls CtlDrawControl() to redraw the control (or CtlEraseControl() to hide it). All this info is in the docs. __________________________________________________ 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/
