I jsut started to work with databases in VB. I want to print just the table and its contents to the printer. What object do I use?
thank you
michael
[email protected]
Printable View
I jsut started to work with databases in VB. I want to print just the table and its contents to the printer. What object do I use?
thank you
michael
[email protected]
Use ADO.
Use this SQL to return the recordset:
SELECT * FROM <tablename>
Then go through the recordset and print each row.