How can I open a module, with a click on an EditText? :sign0085:
Thanks
Thanks
You can catch EditText_Click event, although it is not listed. However the user may find it a bit strange. You may want to use a button or at least a label.
You should not use an EditText for that. EditText handles the first click internally.
...
dim edt1 as EditText
edt1.Initialize("edt1")
...
Sub edt1_FocusChanged (HasFocus As Boolean) 'if focus change
If HasFocus = True Then
...
End If
End Sub
Sub edt1_Click 'if you are in the focus
...
End Sub