I was hoping to figure this out, but I'm struggling. I'm using the UltraPrintPreviewDialog, but when it runs, I'd like to set the Continuous button / property to be unchecked. The default seems to be checked.
Is there a way to do this when I instantiate the control? i.e. UltraPrintPreviewDialog.Something.Continuous = FALSE.
Thanks,
JL
Basically when the printpreviewdialog's load event occurs, the state of the toolbar button is initialized based on the value of the contained UltraPrintPreviewControl's Settings.Rows property where 0 is continuous. So if you want continuous to be false then you could (in code) set the ultraPrintPreviewDialog.PrintPreviewControl.Settings.Rows = 1 before you show the dialog.
Andrew, thanks. That worked perfectly.
I'm fairly new to .NET and I would never have figured Rows = Continuous :>)