Can anyone tell me how I can search a String and tell if there is a \ on the end? I need to find out if there is a \ on the end so if there is not I can put one on the end of the string. Thanks
Printable View
Can anyone tell me how I can search a String and tell if there is a \ on the end? I need to find out if there is a \ on the end so if there is not I can put one on the end of the string. Thanks
If Right$(myString,1) <> "\" then...
Thank you that worked perfectly!!