Hello, I have a print on my form and the button uses a Function to print because thats the only way It would give me a choice of what page to print. My trouble is it only prints the forms header on the first page and I want it to print on first page I start with. For example, I choose pages 2-3 then page 2 would print with the forms header. How can I acomplish this? Here is the function im using and calling from the print button.
!--c1-->
CODE
Function PrintAdvancedSearch() As String
On Error Resume Next
DoCmd.SelectObject acForm, Screen.ActiveForm.Name
DoCmd.RunCommand acCmdPrint
End Function