#Event: TextChanged (Old As String, New As String)
Private Sub flEditText1_TextChanged (Old As String, New As String)
CallSubDelayed3(CallBack, EventName & "_TextChanged", Old, New)
End Sub
You will see an "unexpected event" warning in the logs, in debug mode. Ignore it.
#Event: TextChanged (Old As String, New As String)
Private Sub flEditText1_TextChanged (Old As String, New As String)
CallSubDelayed3(CallBack, EventName & "_TextChanged", Old, New)
End Sub
You will see an "unexpected event" warning in the logs, in debug mode. Ignore it.
Many thanks,I try and it works well in B4I. There is one thing I don’t understand. I don’t know how to represent the first parameter. I left it blank, but it doesn’t affect the result. for example:
B4X:
Private Sub numpadButton_Click
Dim b As Button = Sender
If b.Text = "." And flEditText1.Text.Contains(".") Then Return
flEditText1.Text = flEditText1.Text & b.Text
flEditText1_TextChanged ("", flEditText1.Text)' I left first parameter blank'
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.