J
Jay Wilson
I have placed a "Print" button on a form. When I press the button, I want
to print only the record that I am currently looking at. When I press the
button, I get all records in the table.
I tried the following, to limit the record to the currectly selected record
and I still get all records.
DoCmd.PrintOut acSelection
I then tried the following and get an error message that the Currently
Selected isn't available.
RunCommand acCmdSelectRecord
DoCmd.PrintOut acSelection
What am I doing wrong?
Thanks
to print only the record that I am currently looking at. When I press the
button, I get all records in the table.
I tried the following, to limit the record to the currectly selected record
and I still get all records.
DoCmd.PrintOut acSelection
I then tried the following and get an error message that the Currently
Selected isn't available.
RunCommand acCmdSelectRecord
DoCmd.PrintOut acSelection
What am I doing wrong?
Thanks