vba to print Form from Excel ?

  • Thread starter Thread starter tmb
  • Start date Start date
T

tmb

I've got a for for entering data into a spreadsheet.

Can you print the Form as it is using Excel VBA ?

If so, any code snippits that may give me the idea?

thanks for any help.

tmb
 
You can use the PrintForm method:

Private Sub cmdPrint_Click()
frmOrders.PrintForm
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top