Something like this should work:
VB Code:
  1. Private Sub Command1_Click()
  2.     AcroPDF1.LoadFile "C:\MyPDFFile.pdf" 'Load a file
  3.     AcroPDF1.printPages 1, 1 'Print first page
  4. End Sub