Simple Word macro/button to print out a form
April 1, 2008 • JP • No Comments • Rate This Article
• Links to this article
Happy April Fool's Day!
Here is a simple macro in MS Word that you can use to print out a document to the default printer.
- Go to View>Toolbars>Control Toolbox to display the Control Toolbox.
- Click the "Command Button" icon to insert a command button in your document. You can drag it anywhere you like and resize as needed.
- Double click the button to view the code window. You should be taken right inside an auto-created Click event that looks like this:
Private Sub CommandButton1_Click()
End Sub
End Sub
- Paste the following code in between those lines:
ActiveDocument.PrintOut
- Press F4 to view the Properties window for the command button and change the "Caption" property to something like "Print" or something else useful.
- Press Alt-Q to close the VB Editor and return to MS Word.
- On the Control Toolbox, click "Exit Design Mode". You can close the toolbar if you wish.
Test it out by pressing the button! It will send your document to the default printer. Keep in mind the button is displayed on the document so it will be printed as well.
Enjoy,
JP
Previous Post: New webstore
Next Post: Quickly Clear Conditional Formatting



Speak Your Mind
Tell us what you're thinking...Certain comments (including first-time comments) are subject to moderation and will not appear immediately. Please view the Comment Policy for more information. To post VBA code in your comment, use tags like this: [cc lang='vb']Code goes here[/cc].