Greetings,

I have written a database, with a form interface. The form consists of a tab control, with two tab pages of data on them.

First issue.

When I print it out, only the first tab page prints, and it prints twice.

What would be the proper command for me to use, in order to get both tab pages to print?

Here is the print function as it stands right now:

VB Code:
  1. Private Sub cmdPrint_Record_Click()
  2. On Error GoTo Err_cmdPrint_Record_Click
  3.  
  4.  
  5.     DoCmd.DoMenuItem acFormBar, acEditMenu, 8, , acMenuVer70
  6.     DoCmd.PrintOut acPages, 1, 12
  7.  
  8. Exit_cmdPrint_Record_Click:
  9.     Exit Sub
  10.  
  11. Err_cmdPrint_Record_Click:
  12.     MsgBox Err.Description
  13.     Resume Exit_cmdPrint_Record_Click
  14.    
  15. End Sub

Once I resolve the first issue, I will let you know the second issue.

Thanks,
Jim