edittext label Lostfocus gotfocus

sultan87

Active Member
Licensed User
Longtime User
hello
can i have the events LostFocus and GotFocus on a edittext as with VB
can i have a label with relief
best regards
 

devlei

Active Member
Licensed User
Longtime User
The EditText view has the following event:
EditText_FocusChanged(HasFocus as Boolean)

In the sub you use:
If HasFocus = True for GotFocus, and
If HasFocus = False for LostFocus.

Check it out though, as I'm still a beginner at this.
 
Upvote 0

sultan87

Active Member
Licensed User
Longtime User
hello
Ok
but I want to seize several information (Name example, city, telephone) and when I click on the button to record to make the control of information and to position me on the erroneous field
how to make
Best regards
 
Upvote 0
Top