Print 1st page only in a 2 page access form

L

Lynn

I have an Access form that is made up of 2 pages. I would like to put a
button on the form so that when I click it it will print the 1st page of that
particular record. I have made a macro telling it to print the first page of
the record and that works, but it prints out the last record the was entered,
not the selected record.
 
O

Ofer

Hi Lynn
Have you tries this to print only one page, while the form got the focus

DoCmd.PrintOut acPages, 1, 1
 
L

Lynn

It worked to print out the 1st page of the record but it printed out the last
record not the selected record.
 
L

Lynn

Lynn said:
I have an Access form that is made up of 2 pages. I would like to put a
button on the form so that when I click it it will print the 1st page of that
particular record. I have made a macro telling it to print the first page of
the record and that works, but it prints out the last record the was entered,
not the selected record.
 
Top