Set height of a reports detail using vba... and more

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to set the height of a reports detail using vba... how do you do
that???

Also, how can I change the print settings, i.e. page boarders, paper size,
printer, etc., also using vba... I can't find anything on it.

Thanks!!!
 
SrMousse said:
I need to set the height of a reports detail using vba... how do you do
that???

Also, how can I change the print settings, i.e. page boarders, paper size,
printer, etc., also using vba... I can't find anything on it.


AXP or later:

Me.Section(0).Height = xxx

See Help on the Printer object.
 
Back
Top