How to print current form in MS Access?

0

Using a command button, I want to print the current form in MS Access in a database.

    
asked by anonymous 09.03.2017 / 08:59

1 answer

0

Try:

Option Compare Database

Private Sub Comando0_Click()

    DoCmd.PrintOut

End Sub

This method accepts the following parameters (after printout ):

  • PrintRange
  • PageFrom
  • PageTo
  • PrintQuality
  • Copies
  • CollateCopies

link

    
13.04.2017 / 19:36