Hi all,
I have a question, for printing out something I use the common dialog:
VB Code:
With CDLG .Copies = 1 .PrinterDefault = False .Min = 0 .Max = 99 .Flags = &H4 '.CancelError = True .DialogTitle = "Select Printer" .Flags = cdlPDHidePrintToFile Or cdlPDPageNums Or cdlPDNoSelection .FromPage = 1 .ToPage = 9 .ShowPrinter Debug.Print End With
Does anybody know how to ENABLE the "current page" option?


Reply With Quote