Click to See Complete Forum and Search --> : How do I diplay " in a string


inhumanoid
October 20th, 1999, 09:17 AM
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 ??

Lothar Haensler
October 20th, 1999, 09:19 AM
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