Mi sto ancora arrovellando...

Ho trovato questo esempio sul web che però non riesco ad adattare alla mia esigenza:
codice:
'Printing using the CommonDialog Control
On Error Resume Next
With dlgCommonDialog
  .DialogTitle = "Print"
  .Copies = 6
  .CancelError = True
  .Flags = cdlPDReturnDC + cdlPDNoPageNums
  .ShowPrinter
  If Err <> MSComDlg.cdlCancel Then
    wndReportControl.PrintReport .hDC
  End If
End With
Cosa devo mettere al posto di:
codice:
wndReportControl.PrintReport .hDC