I need to append a string to a text file which has double quotation marks throughout it. How do I do that cause VBA is very confused at the moment
What the string should say/append the text file to (load "c:\test.lsp")?
I need to append a string to a text file which has double quotation marks throughout it. How do I do that cause VBA is very confused at the moment
What the string should say/append the text file to (load "c:\test.lsp")?
You can double the quotation marks inside the string:
"""The Professional"" is a killer movie."
Or use Chr(34)
:
Chr(34) & "The Professional" & Chr(34) & " is a killer movie."