Report Preview

  • Thread starter Thread starter ak
  • Start date Start date
hi,
Once I click report I need preview in 75%.
Can I do this? How?

DoCmd.OpenReport AReportName, acViewPreview
Reports(AReportName).ZoomControl = 75


mfG
--> stefan <--
 
Where can I type the below stuff? Please inform.
DoCmd.OpenReport AReportName, acViewPreview
Reports(AReportName).ZoomControl = 75
 
hi,
Where can I type the below stuff? Please inform.
Use an event procedure for a button click instead of a macro, e.g.

Private Sub cmdShowReport_Click()
'place it here
End Sub


mfG
--> stefan <--
 
I get 100% preview. I need 75% preview. How can I do this? I know I have to
ask you in specific. But if this not working properly that means I did not
do as per your instruction. The reason will be only I did not get you, I
believe. So sorry to say could you please explain indetail please.
 
I typed as you told me. But not working. Please explain in detail. I have
done this in form. I have created a text box and went to properties. Then
went to event. But still not working as I want.
 
Back
Top