Guest Vax Posted October 16, 2002 Posted October 16, 2002 How do we get the same functionality out of the common dialogs that we got with the Flags property? I'm desperately trying to figure out how the hell to preselect the Selection option button in the print dialog, and how to check if it has been selected after the dialog box has closed, but Microsoft's Help is worthless. Any suggestions/ ideas/ clues?:( Quote
*Gurus* divil Posted October 17, 2002 *Gurus* Posted October 17, 2002 Dim myPrintDialog As New PrintDialog() Dim mySettings As New Drawing.Printing.PrinterSettings() mySettings.PrintRange = Drawing.Printing.PrintRange.Selection myPrintDialog.AllowSelection = True myPrintDialog.PrinterSettings = mySettings myPrintDialog.ShowDialog() Quote MVP, Visual Developer - .NET Now you see why evil will always triumph - because good is dumb. My free .NET Windows Forms Controls and Articles
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.