ciginfo Well-Known Member Licensed User Longtime User Oct 29, 2015 #1 Please, what is the syntax: If TextView1 is not empty Then If TextView.Text <> 0 Then ??? Thank you
JanPRO Well-Known Member Licensed User Longtime User Oct 29, 2015 #2 B4X: If Not(TextView1.Text = "") Then End If Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Oct 30, 2015 #3 Or: B4X: If TextView1.Text <> "" Then 'or If TextView1.Text.Length <> 0 Then Upvote 0