#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