Hi,
when I do something like the following:
Dim s As String
s = "this is a ""quoted"" string"
Code highlighting works 100% in the IDE editor but when I try to compile I get ...
------------------------------------------------------------------------
Compiling code. Error
Error parsing program.
Error description: Syntax error.
Occurred on line: 70
s = "this is a ""quoted"" string"
------------------------------------------------------------------------
Obviously I can go "s = "This is a " & QUOTE & "quoted" & QUOTE " string" but that's just stupid!
when I do something like the following:
Dim s As String
s = "this is a ""quoted"" string"
Code highlighting works 100% in the IDE editor but when I try to compile I get ...
------------------------------------------------------------------------
Compiling code. Error
Error parsing program.
Error description: Syntax error.
Occurred on line: 70
s = "this is a ""quoted"" string"
------------------------------------------------------------------------
Obviously I can go "s = "This is a " & QUOTE & "quoted" & QUOTE " string" but that's just stupid!