Visual Basic Programming Code Examples Visual Basic > Other Code Examples Print the contents of a grid Print the contents of a grid >I have a requirement to print the contents of Grid control that can be >bound or ubound. I don't know if this is a better way but... Sub PrintGrid Dim t%, s% For t% = 0 To Grid1.Rows -1 Grid1.Row = t% For s% = 0 To Grid1.Cols -1 Grid1.Col = s% Printer.Print Grid1.Text Nex s% Next t% End Sub Return