Create a "Save Report" Command Button

G

Guest

I have created a simple database and I am utilizing a modifiaction of the
Ad-Hoc Report sugested in a post.
Reference:(http://www.rogersaccesslibrary.com/Otherdownload.asp?SampleName='Ad-Hoc Report.mdb')

I have created a pop-up form that has several commands(i.e. print and return
to main form). On this form, I would also like to create a command button to
allow the user to save the report. Although they can easily save and print by
using the right-click mouse commands, some of my users will be more
comfortable learning to use the pop-up form.

Can a "save report" command be created on a form? Do you have any
suggestions on how to do this?

Thank you all very much for sharing your ideas...
 
G

Guest

Can a "save report" command be created on a form? Do you have any
suggestions on how to do this?

I use this command to send reports. Just create a button then on the click
event add this code.

stDocName = "YourReportName"
DoCmd.OutputTo acReport, stDocName
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top