I wrote the the following line of code:
Const c_Image1 = "<img src=" width=8 height=8 border=0>"
NOTE: the ";" following the .gif string was placed by tek-tips message software, not by me.
When I attempted to compile the code, I received the following message:
"Compiler error: Expected: end of statement"
The blue highlight ends up on the word http. I imagine that the problem is the extra double quote. Is there a special character that I can use or a function that will allow to to turn this HTML tag into a constant?
I would rather not have to chop the tag up, if I can avoid it.
Const c_Image1 = "<img src=" width=8 height=8 border=0>"
NOTE: the ";" following the .gif string was placed by tek-tips message software, not by me.
When I attempted to compile the code, I received the following message:
"Compiler error: Expected: end of statement"
The blue highlight ends up on the word http. I imagine that the problem is the extra double quote. Is there a special character that I can use or a function that will allow to to turn this HTML tag into a constant?
I would rather not have to chop the tag up, if I can avoid it.