TTMSFMXGridPrintPreviewDialog and size

Hi;

I'm trying printing of a grid for the first time using the TTMSFMXGridPrintPreviewDialog and C++ Builder.

Everything work's but the printed grid result are only using about 5% of the paper sheet, it's way too small to be readable.
(It's displyed small in the preview window too, you can barely see the grid)

Any ideas  ?

Did you install the latest version? Can you give us your printer information (brand, model, supported dpi if possible) Can you perhaps try by forcing the DPI to


  TMSFMXGrid1.Options.Printing.DPI := Point(600, 600);

before executing the print dialog.

Kind Regards,
Pieter

Wow! 7 minutes, that's a fast reply...

Printer; Minolta BizHub C280
Lib version: 1.8.0.1
(However; The version property of the TTMSFMXGrid says: 1.5.3.1)

When trying to compile;
Grid->Options->Printing->DPI = Point(600,600);
...I get this;
[bcc32 Error] spTmsGridForm.cpp(340): E2316 'DPI' is not a member of 'TTMSFMXGridPrintingOptions'

Hi, 


I suggest you download and install the latest version, 1.8.1.0, the DPI property has been introduced in version 1.8.0.2 due to several printing report issues similar to the one you have described. Unfortunately the FireMonkey framework does not retrieve the Active DPI of the printer correctly forcing us to manually set the correct DPI. 

Kind Regards, 
Scheldeman Pieter

Just reporting back; Upgrade and then setting the DPI did the trick. Thanks.