PRINT USING
' The apostrophe (') character causes only the first character of
the string to be printed.
\ \ A pair of backslashes may enclose n number of spaces. Ths prints
n + 2 characters from a string. Zero spaces allow 2 characters. If the
string is longer than the field, the extra characters are ignored. If the
field is longer than the string, the string is left-justified and padded
with spaces on the right.
& The ampersand signifies a variable- length fied. The string is
printed without modification.
+ The plus sign ( +) causes the sign of a number(plus or minus) to be
printed before or after the number as specified.
Note: these are some of the PRINT USING CHARACTERS used in QB.
there are a few others.
hope this helps
SammyD=QBNewbie
Quote:
> Hi,
> What is the line continuation character in QuickBASIC?
> I have a long PRINT statement. I know in C it is \
> Kris