You need to use CtlSetLabel on the popup trigger.  Something like to set the
label to the empty string:

    UInt16 index = FrmGetObjectIndex( formPtr, triggerResourceID ) ;
    ControlType *popupTriggerPtr = (ControlType *)FrmGetObjectPtr( formPtr,
index );
    if( popupTriggerPtr != NULL )
        CtlSetLabel( popupTriggerPtr, "" );


Jeff Ondich
[EMAIL PROTECTED]


"Todd Cary" <[EMAIL PROTECTED]> wrote in message
news:60506@palm-dev-forum...
>
> Thanks to some great help from people on this forum, I have a Popup List
> working.  Using the conventional layout on an Edit Form (Label, "v" for
> the Popup, and the Field), the user presses the "v" and the List appears
> covering a certain part of the screen.  The Selection is made and the
> List disappears leaving the Popup with ["v" MySelection].  I grab
> "MySelection" and do something with it.
>
> Now I want the screen to return to what it was - I need to get rid of
> the ["v" MySelection] and just have "v".  Do I repaint the screen?
>
> Todd
>
> --
> Todd Cary
> Ariste Software
> [EMAIL PROTECTED]
>
>
>
>



-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/tech/support/forums/

Reply via email to