spidermman
Registered User.
- Local time
- Today, 14:05
- Joined
- Sep 17, 2008
- Messages
- 21
I am using Access 97 to print out the form.
I would like to have one command button whereby it can specify a canon printer to print the form and another command to use Microsoft office document image writer to save the same form as an image.
Is there a way to specify which printer to print the form?
thanks.
I would like to have one command button whereby it can specify a canon printer to print the form and another command to use Microsoft office document image writer to save the same form as an image.
Code:
[FONT=Times New Roman][SIZE=3]Private Sub Print_Click()[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]‘using canon printer to print the form[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]Docmd.PrintOut[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3] [/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]End Sub[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3] [/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]Private Sub Save_Click()[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]‘using Microsoft office document image writer to save the form as a .mdi file[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]Docmd.PrintOut’[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3] [/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]End Sub[/SIZE][/FONT]
Is there a way to specify which printer to print the form?
thanks.