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:
Printer.Print Printer.Print "Manufacturer/Type/Size of Regulators" optChoice(8).Value = True GridCtrl.Row = 0 GridCtrl.Col = 0 For j = 0 To GridCtrl.Rows For i = 0 To 4 GridCtrl.Cols = i Printer.Print GridCtrl.Text; Next i 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?! :(
