My english is not so good but I'll try to do my best to help u

U can't do "clic" on the text field, but u can try adding something like this 
in the Event Handler of your form

if(event->eType == penDownEvent){
    RectangleType limites;
    FrmGetObjectBounds(FrmGetActiveForm(), 
FrmGetObjectIndex(FrmGetActiveForm(), the_name_or_number_of_your_text_field), 
&limites);
    if( (event->screenX < limites.topLeft.x || event->screenY < 
limites.topLeft.y || event->screenX > (limites.topLeft.x + limites.extent.x) || 
event->screenY > (limites.topLeft.y + limites.extent.y))){

                   //In this part the action to do

                   }

FrmGetObjectBounds will return the limits of your text field and usign the 
condition u can know if the clic had been done within the text field
-- 
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/

Reply via email to