If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > PC based Database Applications > Microsoft Excel > Pause to print back page

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 12-14-04, 18:00
surfacesys surfacesys is offline
Registered User
 
Join Date: Mar 2004
Location: Greenville, SC
Posts: 271
Pause to print back page

I am looking for a macro that will print... then put up a message and pause... so we can turn the paper over (to print the back) then I hit OK and it prints!!

Any help would be great!!

Michael
__________________
Gotta to do some code
Reply With Quote
  #2 (permalink)  
Old 12-15-04, 18:24
Smitty Smitty is offline
Registered User
 
Join Date: Dec 2003
Location: San Diego, CA
Posts: 153
How about something like this:

Code:
Sub PrintMe()
    Range("A1:C6").PrintOut
    MsgBox "Please click OK AFTER you've turned the paper over", _
        vbOKOnly + vbInformation, "Print Back Page"
    Range("A10:C20").PrintOut
End Sub
HTH,

Smitty
Reply With Quote
  #3 (permalink)  
Old 01-05-05, 10:01
surfacesys surfacesys is offline
Registered User
 
Join Date: Mar 2004
Location: Greenville, SC
Posts: 271
This is great if the info is on the same page. How do I specify, if the info is on a second tab?


Thank You,
Michael
__________________
Gotta to do some code
Reply With Quote
  #4 (permalink)  
Old 01-05-05, 12:08
Smitty Smitty is offline
Registered User
 
Join Date: Dec 2003
Location: San Diego, CA
Posts: 153
Change: Range("A10:C20").PrintOut to Sheets("Sheet Name").Range("A10:C20").PrintOut

Smitty
Reply With Quote
  #5 (permalink)  
Old 01-05-05, 12:33
surfacesys surfacesys is offline
Registered User
 
Join Date: Mar 2004
Location: Greenville, SC
Posts: 271
Thank You

Michael
__________________
Gotta to do some code
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On