Hi all,
I have a question, for printing out something I use the common dialog:
VB Code:
  1. With CDLG
  2.         .Copies = 1
  3.         .PrinterDefault = False
  4.         .Min = 0
  5.         .Max = 99
  6.         .Flags = &H4
  7.        
  8.         '.CancelError = True
  9.         .DialogTitle = "Select Printer"
  10.         .Flags = cdlPDHidePrintToFile Or cdlPDPageNums Or cdlPDNoSelection
  11.         .FromPage = 1
  12.         .ToPage = 9
  13.         .ShowPrinter
  14.         Debug.Print
  15.     End With

Does anybody know how to ENABLE the "current page" option?