Hi, I am trying to split a very long line of code into many lines but with no success...
I have a string variable that is very large as it has an html code inside... so I'm trying to have it in many lines and not in just one line but I can't find how to do it...
This is an example of my code:
Dim Html As String
Html = "<p align=""center""><font color=""#3D1565"" size=""3"" face=""Verdana, Arial, Helvetica, sans-serif"">HELLO WORLD <br />"
and I need to split it in two lines... something like this:
Html = "<p align=""center""><font color=""#3D1565""
size=""3"" face=""Verdana, Arial, Helvetica, sans-serif"">HELLO WORLD <br />"
How should I do it?
Thanks for any help
Massy