Hi!
In the previous version, I defined a string DQ as """, and inserted it in my code like this:
ResultsPage = "<html><body>" & _
"<style Type=" & dq & "text/css" & dq & "media=" & dq & "all" & dq & ">" & _
...
To produce this:
<html><body><style Type="text/css" media="all">
...
Since upgrading to V2.50, I get an error defining string Dq as """, but understand that inline double quotes are now allowed. So updating the code from above now reads:
ResultsPage = "<html><body>" & _
"<style Type="text/css" media="all">" & _
The program fails on compile, telling me "An error occurred. Error parsing program. Error description: Syntax error." I'm then shown the above lines with inline double quotes.
I've tried removing the continuations, no fix. I've tried splitting it differently so that there were no more than two inline double-quotes per line, and that didn't work.
I am probably missing something, but I don't know what. Help please? Thanks!
In the previous version, I defined a string DQ as """, and inserted it in my code like this:
ResultsPage = "<html><body>" & _
"<style Type=" & dq & "text/css" & dq & "media=" & dq & "all" & dq & ">" & _
...
To produce this:
<html><body><style Type="text/css" media="all">
...
Since upgrading to V2.50, I get an error defining string Dq as """, but understand that inline double quotes are now allowed. So updating the code from above now reads:
ResultsPage = "<html><body>" & _
"<style Type="text/css" media="all">" & _
The program fails on compile, telling me "An error occurred. Error parsing program. Error description: Syntax error." I'm then shown the above lines with inline double quotes.
I've tried removing the continuations, no fix. I've tried splitting it differently so that there were no more than two inline double-quotes per line, and that didn't work.
I am probably missing something, but I don't know what. Help please? Thanks!