Below is the code I have on a print command button on my
form. No matter what printer I have selected the form will
only print to a certain printer? It used to print to
the selected printer and now just to one printer. Any advice
or suggestions? I have added a new command button to print
current form but to no avail.
form. No matter what printer I have selected the form will
only print to a certain printer? It used to print to
the selected printer and now just to one printer. Any advice
or suggestions? I have added a new command button to print
current form but to no avail.
Code:
On Error GoTo Err_print_Click
DoCmd.DoMenuItem acFormBar, acEditMenu, 8, , acMenuVer70
DoCmd.PrintOut acSelection
Exit_print_Click:
Exit Sub
Err_print_Click:
MsgBox Err.Description
Resume Exit_print_Click