J
JohnB
Hi,
I have written a program using C# to print out Access
Tables.
It is fairly trivial. I select the table then print.
oAccess.DoCmd.SelectObject
(Access.AcObjectType.acTable,table,true);
oAccess.DoCmd.PrintOut
(Access.AcPrintRange.acPrintAll,Missing,Missing,Access.AcP
rintQuality.acHigh,1,false);
I have encounterd a few bugs that I need to address, and
was hoping this group could assist me.
The first question I have is how can I make access
automatically set the width of the columns so that
records don't get cut off?
Also, if a table contains no data I would still like to
be able to see all the column names. This does not seems
to happen. Access will only print as many columns that
it can fit on to one page. How do I fix this?
Thanks,
JohnB
I have written a program using C# to print out Access
Tables.
It is fairly trivial. I select the table then print.
oAccess.DoCmd.SelectObject
(Access.AcObjectType.acTable,table,true);
oAccess.DoCmd.PrintOut
(Access.AcPrintRange.acPrintAll,Missing,Missing,Access.AcP
rintQuality.acHigh,1,false);
I have encounterd a few bugs that I need to address, and
was hoping this group could assist me.
The first question I have is how can I make access
automatically set the width of the columns so that
records don't get cut off?
Also, if a table contains no data I would still like to
be able to see all the column names. This does not seems
to happen. Access will only print as many columns that
it can fit on to one page. How do I fix this?
Thanks,
JohnB