Isac Active Member Licensed User Longtime User May 6, 2015 #1 hi, I would like to bring up a message when the mouse pointer is positioned on the editbox. Is there any library? I thank everyone.
hi, I would like to bring up a message when the mouse pointer is positioned on the editbox. Is there any library? I thank everyone.
Isac Active Member Licensed User Longtime User May 6, 2015 #4 I'm sorry when I press on the editbox Upvote 0
Isac Active Member Licensed User Longtime User May 6, 2015 #5 eurojam said: Click to expand... excellent solution Upvote 0
eurojam Well-Known Member Licensed User Longtime User May 6, 2015 #6 May be you can use the FocusChanged Event B4X: Sub EditText1_FocusChanged (HasFocus As Boolean) If HasFocus Then 'Do something End If End Sub Upvote 0
May be you can use the FocusChanged Event B4X: Sub EditText1_FocusChanged (HasFocus As Boolean) If HasFocus Then 'Do something End If End Sub