Hi all
I have a worksheet containing a Userform which allows colleagues to arrange meetings and send the details to me.
The user is required to complete a userform with the meeting details then fill out a list in an ordinary worksheet with details of attendees.
I have a basic command button which prints off both the worksheet and the userform, but they are printing off on seperate pages, despite the printer being set to duplex.
Is there something I can add to the below code to force it to print off duplex?
Or perhaps a better way of doing this than I have thought of!?
Many thanks
I have a worksheet containing a Userform which allows colleagues to arrange meetings and send the details to me.
The user is required to complete a userform with the meeting details then fill out a list in an ordinary worksheet with details of attendees.
I have a basic command button which prints off both the worksheet and the userform, but they are printing off on seperate pages, despite the printer being set to duplex.
Is there something I can add to the below code to force it to print off duplex?
Code:
Private Sub CommandButton1_Click()
With UserForm2
Sheets("Attendees").Activate
Sheets("Attendees").PrintOut
.PrintForm
End With
End Sub
Or perhaps a better way of doing this than I have thought of!?
Many thanks