If I have a string wich contains " I get an error... Maybe I have to do something like chr(somenumber) to get this working.. Can someone tell me how ??
Printable View
If I have a string wich contains " I get an error... Maybe I have to do something like chr(somenumber) to get this working.. Can someone tell me how ??
if you need to assign a string with an embedded " code like this:
Dim s As String
s = "this is a ""test" ' watch the 2 "s
MsgBox s