Hello all. I'm trying to print gray boxes using the Line Method:
VB Code:
  1. 'This is supposed to be a gray rectangle with a black border.
  2. Printer.DrawWidth = 10
  3. Printer.FillColor = RGB(50, 50, 50)
  4. Printer.Line (1440*2.0, 1440 * 6.125)-(1440 * 3.0, 1440 * 6.95), , BF
  5. Printer.Line (1440*2.0, 1440 * 6.125)-(1440 * 3.0, 1440 * 6.95), vbBlack, B
I'm getting solid black squares. Any ideas? Is there some sort of printer settings I need to verify/change, or should this print in the correct B&W grayscale on any printer?

Thanks everybody!