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

I am kind of a newbie to this stuff and need more step by step information on
how to do this.

"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
"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?