
March 29th, 2003, 06:45 PM
|
 |
Contributing User
|
|
Join Date: Jan 2003
Location: USA
|
|
|
Just drawing on my old experience with BASIC -- I have made a few half-hearted stabs at VB, only to be frustrated by the development environment and and end up home-sick for the expressiveness of C++.
We used to be able to use either single quotes or double quotes to create a string literal. You could try (spaces inserted to separate the quote marks):
' "Hello, World" '
If that doesn't work, then you could try doubling the quotemarks:
""Hello, World"" (" "Hello, World" ")
|