Using a command button, I want to print the current form in MS Access in a database.
Using a command button, I want to print the current form in MS Access in a database.
Try:
Option Compare Database
Private Sub Comando0_Click()
DoCmd.PrintOut
End Sub
This method accepts the following parameters (after printout
):