Hey all,

I have a grid control that I populate right before I print it out... so my question is, how do I print the control with the gridlines and everything? Here's my code:

VB Code:
  1. Printer.Print
  2.         Printer.Print "Manufacturer/Type/Size of Regulators"
  3.         optChoice(8).Value = True
  4.         GridCtrl.Row = 0
  5.         GridCtrl.Col = 0
  6.         For j = 0 To GridCtrl.Rows
  7.             For i = 0 To 4
  8.                 GridCtrl.Cols = i
  9.                 Printer.Print GridCtrl.Text;
  10.             Next i
  11.         Next j

I know that's probably not even close, but I'm tryin here... when I do that, it empties the contents of of the control and I get a bunch of white space when it prints out... help?!