Results 1 to 3 of 3

Thread: a couple issues with printing a tab

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Jun 2002
    Posts
    586

    a couple issues with printing a tab

    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

  2. #2
    PowerPoster
    Join Date
    Dec 2004
    Posts
    25,618

    Re: a couple issues with printing a tab

    is this dot net?

    pete

  3. #3
    Super Moderator si_the_geek's Avatar
    Join Date
    Jul 2002
    Location
    Bristol, UK
    Posts
    41,974

    Re: a couple issues with printing a tab

    Nope, it's VBA for Access.. moved to appropriate forum.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width