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

S

SrMousse

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!!!
 
M

Marshall Barton

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.
 
Top