Printer Select in AdvStringGrid

Hello Forum, we wanted to use the Print-Function of the Component AdvStringGrid, but it only prints onto the defaultprinter of the OS.

Is there a way to pop up a preview where we can choose the printer?

We know there is a AdvGridPrintSettingsDialog, but u cannot select a printer in it.

Kind Regards

To allow that the user changes the printer, please use the TPrinterSetupDialog component.

if PrinterSetupDialog1.Execute then

   grid.Print;

It works.

Thank you