I cant store "" marks in a string and i HAVE
to.. I need a way to do it, or I need another
variable.. how do I do that?
Printable View
I cant store "" marks in a string and i HAVE
to.. I need a way to do it, or I need another
variable.. how do I do that?
Hi Evan,
Here what I would do...
Text1 = "'" + "'" + "Put your string here" + "'" + "'"
VBonliner
Just in case the single quotes were not visible
inbetween the double quotes...
Text1 =
" ' " + " ' " + "Put your string here" + " ' " + " ' "
VBonliner
Use Chr(34) = "
Try this:
Code:Text1 = Chr(34) & "Put your string here" & Chr(34)
Thanks so much!