I have a database that has windows security (wizard) added. It runs perfectly on my hard drive, but when I move it to a network drive, my printing functions don't work correctly. My form has a tab control on it. I need to print Page 1, and Page 2, so I used:
docmd.goto Page 1
printout acselection, 1, 1
docmd.goto Page 2
printout acselection 1, 1
'SAME FOR PAGE 3 AND PAGE 4
When I try to print, only page 4 comes out.
If I use the wizard to make a button to print, it prints all the records. I only want to print the record that's opened. Maybe it's a path issue, but if I move the database to a different location on C, it works. Any suggestions are greatly appreciated.
docmd.goto Page 1
printout acselection, 1, 1
docmd.goto Page 2
printout acselection 1, 1
'SAME FOR PAGE 3 AND PAGE 4
When I try to print, only page 4 comes out.
If I use the wizard to make a button to print, it prints all the records. I only want to print the record that's opened. Maybe it's a path issue, but if I move the database to a different location on C, it works. Any suggestions are greatly appreciated.