Here are some code examples for how to use the TPrintwwGrid component.

Drop it on a form that uses a wwDBGrid.  Specify the name of the grid
in the wwDBGrid property.

If you use the PrintDialog method to print, the user can:
   1) chg printers
   2) chg DPI, or specify Draft vs. High Quality
   3) chg Orientation
   4) choose to print to a file
   5) whatever else the printer driver supports


To export to a file without any dialog box at run time:
-------------------------------------------------------
PrintwwGrid1.PrintFileDir:='C:\EXCEL\DATAIN';
PrintwwGrid1.PrintFileName:='FNAME.LST';
PrintwwGrid1.SaveToFile;   { do it }


To print on printer without any dialog box at run time:
-------------------------------------------------------
PrintwwGrid1.Print;  { default is to use printer }


To print on printer with a standard print dialog box at run time:
-----------------------------------------------------------------
PrintwwGrid1.PrintDialog;  { user can choose "Print to File" if desired }
