I am trying to print a number with a dollar sign in front ($). On the hardcopy (paper), it is always putting a space between the number and the dollar sign. If I mask, how? Here is my code:

Code:
dim iLine as Integer



Printer.Print "$"; iLine
Output (paper):
$ 2

I want:
$2.00

thank you