S
Sunny
I have created one form frmParam for users to enter parameter for one of my
report, In click event of OK button I have included following code"
....
'evaluate arguments here and stores into cArgu variable.
....
Me.Visible = False
DoCmd.OpenReport "MyReport", View:=acViewPreview, _
WindowMode:=acDialog, OpenArgs:=cArgu
Me.Visible = True
It displays the report and waits till I hit ESC. But the problem with report
view window is, I can not print the report means I can not click on print
button and and view window is small window and I can not resize window.
It works fine if I use normal window mode but then it doesnt wait for users
to view and comes back to param form.
Can anyone suggest me the solution ?
Thanks
report, In click event of OK button I have included following code"
....
'evaluate arguments here and stores into cArgu variable.
....
Me.Visible = False
DoCmd.OpenReport "MyReport", View:=acViewPreview, _
WindowMode:=acDialog, OpenArgs:=cArgu
Me.Visible = True
It displays the report and waits till I hit ESC. But the problem with report
view window is, I can not print the report means I can not click on print
button and and view window is small window and I can not resize window.
It works fine if I use normal window mode but then it doesnt wait for users
to view and comes back to param form.
Can anyone suggest me the solution ?
Thanks