Imprimir un formulario

Categoría

¿Cómo puedo imprimir un UserForm’Place the code below into the worksheet module

Private Sub cmdDialogCalling_Click()

frmPrintAndMsg.Show

End Sub

‘Place the code below into the userform module
Private Sub cmdCancel_Click()
Unload Me
End Sub

Private Sub cmdMsg_Click()
MsgBox “I’m the MessageBox”
End Sub

Private Sub cmdPrintForm_Click()
Me.PrintForm
MsgBox “I’m the MessageBox”
End Sub