Feb 26, 2009 #1 scottian Programmer Jul 3, 2003 955 GB how would i check a string variable for a prtial match? ------------------------------------------------------------------------------ Ambition..........If you dont use it, you wont lose it
how would i check a string variable for a prtial match? ------------------------------------------------------------------------------ Ambition..........If you dont use it, you wont lose it
Feb 26, 2009 #2 vzachin Technical User Feb 10, 2006 305 US would this work for you? Code: MyString = UCase(Sess0.Screen.GetString (3,6,12)) If MyString Like "*ABC*" Then MsgBox "Found" End If Upvote 0 Downvote
would this work for you? Code: MyString = UCase(Sess0.Screen.GetString (3,6,12)) If MyString Like "*ABC*" Then MsgBox "Found" End If