column width
Hi,
I created an application a while back (for Delphi 7) that used
ReportBuilder. The report I built basically prints out a n x m
thumbnail sheet (I think it's also called a contact sheet..dunno).
i.e.
X X X X X
X X X X X
...
(Where each X is an image and a description).
Now with a recent request to update the report with a few additions,
I'm finding the width of each entry lacking so I need to increase
the width of the columns. Looking at the report, I've forgotten
how to do that.
So instead of the above, I have the following:
X X X X
X X X X
Thanks
Edmund
I created an application a while back (for Delphi 7) that used
ReportBuilder. The report I built basically prints out a n x m
thumbnail sheet (I think it's also called a contact sheet..dunno).
i.e.
X X X X X
X X X X X
...
(Where each X is an image and a description).
Now with a recent request to update the report with a few additions,
I'm finding the width of each entry lacking so I need to increase
the width of the columns. Looking at the report, I've forgotten
how to do that.
So instead of the above, I have the following:
X X X X
X X X X
Thanks
Edmund
This discussion has been closed.
Comments
The easiest way to adjust the width of columns in a report is to use the
Page Setup dialog. From within this dialog, you can easily define the
width and number of columns you wish to have. Access it by selecting
Page Setup from the File menu.
This can also be set using the Report.Columns, ColumnWidth,
ColumnPosition properties.
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
This worked! Thanks!
Edmund