I need to print the content of a MsFlexGrid. How can I do so ? And while talking about printing things, what are VB printing commands ? I know of the printer object, but I can't use it for something else than strings.
Printable View
I need to print the content of a MsFlexGrid. How can I do so ? And while talking about printing things, what are VB printing commands ? I know of the printer object, but I can't use it for something else than strings.
Printer.PaintPicture MSFlexGrid1.Picture, 0,0
Printer.EndDoc
this will print the grid but to specify individual items you will have to loop thro each col and row
------------------
Thanks it worked.
But could you please tell me what these 0 stands for ?