Try fldEnterEvent as said on API docs "The field routine FldHandleEvent() 
sends this event when the field receives a penDownEvent within the bounds of 
a field."

switch (event->eType)
{
    case fldEnterEvent:
    {
        switch (event->data.fldEnter.fieldID)
        {
            case MyField:
            {
                doSomething();
            }
        }
    }
}

Good Luck.

Eduardo Orea


"Durgesh Trivedi" <[EMAIL PROTECTED]> escribió en el mensaje 
news:[EMAIL PROTECTED]
> Is it possible that we can write the   click event on the text field  just 
> as the button click .
> I m  displaying a dynamic non editable text field on which i like to write 
> click event such that when some 1 click over the text field it would move 
> on to new form or launch the other application how do i do this?
>
> please  any help me out .
> 



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

Reply via email to