how can I zoom page to Whole Page

T

thanks

is there any way to zoom page to Whole Page in code ?

i need to do the operation
View-->Zoom --> Whole Page

in .Net
 
A

AlEdlund

try something like this

Me.AxDrawingControl1.Window.Application.DoCmd(visCmdViewFitInWindow)

check the object browser for the rest of the visuicmds
 
Top