Hi guys
i need the not equal symbol so i can write if and else correctly
if the editbox dose not contain the word "all" it shows some msg sayn that the word dosent exist
Sub edtPattern_TextChanged (Old As String, New As String)
'zmienna pomocnicza
Dim A As Int
For A=0 To New.Length -1
If New.CharAt(A) <> "0" AND New.CharAt(A) <> "1" Then
Log("ERROR")
edtPattern.Text = Old
Exit
End If
Next
End Sub