When using single quote in a string, the system still recognizes it as a comment. Here is an example:
Code:'This is a valid comment
Code:Dim strString As String
Dim strString2 As String
strString2 = "EXAMPLE"
strString = "But this is not correct, because it's part of an '" & strString2 & "'"
