View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
jonjo jonjo is offline
external usenet poster
 
Posts: 12
Default prompt for # of copies in print macro



"jonjo" wrote:

Hi,

Build a little dialog form add a Label, TextBox, Button rename it to something
like PrintDlg, give it a title, add a click eventhandler with the following
code

Private Sub CommandButton1_Click()
Me.Hide
ActiveSheet.PrintOut Copies:=Me.TextBox1.Text
End Sub
TextBox1 Should contain a valid number when you click the Button,
else you will get a runtime error

Greetings Jonjo

Add a second inputBox for the name and write

Sheets(TextBox2.text).PrintOut ...

"SteveH" wrote:

I need a simple print macro that prompts a user for the sheet to be printed
and the number of copies. Anyone have any code for that purpose?