mshafiee110 Active Member Licensed User Longtime User Apr 8, 2016 #1 HI, I 'm using the ACButton(Appcompact2.0). But this does not ,sub click!!! B4X: Sub ACButton1_TextChanged (Old As String, New As String) End Sub Sub ACButton1_FocusChanged (HasFocus As Boolean) End Sub this is bug? Last edited: Apr 8, 2016
HI, I 'm using the ACButton(Appcompact2.0). But this does not ,sub click!!! B4X: Sub ACButton1_TextChanged (Old As String, New As String) End Sub Sub ACButton1_FocusChanged (HasFocus As Boolean) End Sub this is bug?
somed3v3loper Well-Known Member Licensed User Longtime User Apr 8, 2016 #2 Buttons have ButtonEventName_Click events So if you initialized your button like this B4X: ACButton1.Initialize("ACB") You should have a sub like this B4X: Sub ACB_Click End sub I believe TextChanged events belong to EditTexts Upvote 0
Buttons have ButtonEventName_Click events So if you initialized your button like this B4X: ACButton1.Initialize("ACB") You should have a sub like this B4X: Sub ACB_Click End sub I believe TextChanged events belong to EditTexts