E
eggman
I have the following vba code:
Sub Macro1()
' print 1 copy
Application.PrintOut Copies:=1
' close word
Application.Quit
End Sub
Where would I place the above code so that it:
1: Runs upon opening the document it is placed in
2: Does not ask to enable macros
3: Does not ask to save upon closing after it prints
TIA!!!
Sub Macro1()
' print 1 copy
Application.PrintOut Copies:=1
' close word
Application.Quit
End Sub
Where would I place the above code so that it:
1: Runs upon opening the document it is placed in
2: Does not ask to enable macros
3: Does not ask to save upon closing after it prints
TIA!!!