Feb 26, 2009 #1 scottian Programmer Joined Jul 3, 2003 Messages 955 Location 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 Joined Feb 10, 2006 Messages 305 Location 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