I have this text inside textbox:
David a
Marry b
John c
i want to display msgbox if all letters: a + b + c are detected inside textbox, i tried this code but it failed
If InStr(Text1, "a", "b", "c") Then
MsgBox "Found"
End If
please help
David a
Marry b
John c
i want to display msgbox if all letters: a + b + c are detected inside textbox, i tried this code but it failed
If InStr(Text1, "a", "b", "c") Then
MsgBox "Found"
End If
please help