|
-
Jul 13th, 2006, 07:11 AM
#1
Thread Starter
Addicted Member
printing an access table in vb6
how would I print an access table(I am using ADO) in VB6?
-
Jul 13th, 2006, 07:15 AM
#2
Addicted Member
Re: printing an access table in vb6
With DataReport for example.
Using Visual Basic 6.0, access 2000, Visual Studio 2005
Rate the post that you approve 
-
Jul 13th, 2006, 07:18 AM
#3
Thread Starter
Addicted Member
Re: printing an access table in vb6
DataReport?
I am still new to a lot of stuff in VB6, could you forward me to a link or explain what that means?
-
Jul 13th, 2006, 07:21 AM
#4
Addicted Member
Re: printing an access table in vb6
On the project explorer right click -> Add -> DataReport.
It works with recordsets
I'll give you an example.
Using Visual Basic 6.0, access 2000, Visual Studio 2005
Rate the post that you approve 
-
Jul 13th, 2006, 07:23 AM
#5
Addicted Member
Re: printing an access table in vb6
Using Visual Basic 6.0, access 2000, Visual Studio 2005
Rate the post that you approve 
-
Jul 13th, 2006, 07:30 AM
#6
Thread Starter
Addicted Member
Re: printing an access table in vb6
quick question
is there an ADO command to just tell access to print the current open table?
-
Jul 13th, 2006, 08:16 AM
#7
Re: printing an access table in vb6
No... ADO is just a link between your program and a database, which allows you to transfer data (and meta-data) from one to the other.
Also, as far as ADO is concerned, there is no "current open table" - only a selection of recordsets which are open (which may possibly be based on whole tables).
If you want to print the data, you need to either use some kind of reporting tool (Data Report/Crystal Report), or print it yourself with code using the Printer object.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|