current
as u se those 2 chars what other good ways i can do this has to be affective please i do not wish users to bypass this , att all times this must be checked before anything else gets done
Code:
Private Sub txtSend_Change()
If txtSend.Text = "#" Then
txtSend.Text = ""
Else
If txtSend.Text = "|" Then
txtSend.Text = ""
End If
End If
End Sub
as u se those 2 chars what other good ways i can do this has to be affective please i do not wish users to bypass this , att all times this must be checked before anything else gets done