projecttoday
Programmer
This may be a dumb question, but I can't find the answer in the help. How do you continue a statement, specifically one that contains a long character string and you want to maintain spaces.
Dim str as string
str = "the quick brown fox jumped
over the lazy dog"
How to continue the assignment above while maintaining a space after jumped. I tried using _ at the end of the line but it didn't work.
Dim str as string
str = "the quick brown fox jumped
over the lazy dog"
How to continue the assignment above while maintaining a space after jumped. I tried using _ at the end of the line but it didn't work.