I want to get rid of the double quotes when inserting from the clipboard into a string.
Tried Left$ and Right$ but the double quotes are outside the string.
Printable View
I want to get rid of the double quotes when inserting from the clipboard into a string.
Tried Left$ and Right$ but the double quotes are outside the string.
try using the Replace function after it is copied to the string
ie
Dim Clip as string
'after copying the clipboard to the string
Clip = replace(Clip, chr(34),"")
Have a good one