3 Smart Ways to Print Your Word Document without Background Color or Image

In today’s article, we decide to show you 3 smart ways to print your Word document without background color or image.

A proper and nice background color or image can make a document more eye-catching. Therefore, now and then, you will probably set background color or image for your document out of aesthetic purpose.

If so, there can be times when you will prefer to print document without its background color or image.

  1. First, you can save your ink to be cost effective.
  2. Second, as mentioned above, the background color is there only to please reader’s eyes. Thus, it shall not affect the document contents.
  3. Third, some additional words on the background can easily cause confusion.Print Your Word Document without Background Color or Image

In such scenario, a document without background color or image would be a better choice. To achieve so, you may try the following methods:

Method 1: Alter the “Word Options”

  1. First of all, click “File” tab in Word.
  2. Next click “Options” to open the “Word Options” box.
  3. Click “Display” on the left.
  4. Then on the right side under “Printing options” section, clear “Print background colors or images” box.
  5. Lastly, click “OK”.Click "Display"->Clear "Print background colors or images" Box->Click "OK"

Method 2: Print a Document without Background Color via VBA

  1. First and foremost, trigger the VBA editor in Word by pressing “Alt+ F11”.
  2. Next click “Normal” in the left.
  3. Then click “Insert”.
  4. And choose “Module” on the drop-down menu.Click "Normal"->Click "Insert"->Click "Module"
  5. Open the module with double click.
  6. Now paste these codes on the coding area:
Sub PrintOneDocWithoutBackgroundColor()
  Dim objDoc As Document
  Dim nBackgroundFill As Boolean
 
  Set objDoc = ActiveDocument
 
  With objDoc
    '  Save the current page color.
    nBackgroundFill = .Background.Fill.Visible
 
    '  Hide the page color from printing.
    .Background.Fill.Visible = msoFalse
  End With
 
  Dialogs(wdDialogFilePrint).Show
 
  With objDoc
    '  Restore the page color to original setting on screen.
    .Background.Fill.Visible = nBackgroundFill
  End With
End Sub
  1. Last but not the least, click “Run”.Paste Codes->Click "Run"

This macro enables you to print document without its background color or image. Meanwhile, the document on computer shall have its background color or image intact.

Method 3: Print Multiple Documents without Background Color via VBA

This macro aims to print a batch of documents without background color.

  1. First, start with arranging all target documents in one folder.
  2. Then install and run a macro following steps in method 2.
  3. Only this time, replace the macro with this one:
Sub PrintMultiDocWithoutBackgroundColor()
  Dim StrFolder As String
  Dim strFile As String
  Dim objDoc As Document
  Dim dlgFile As FileDialog
 
  Set dlgFile = Application.FileDialog(msoFileDialogFolderPicker)
 
  With dlgFile
    If .Show = -1 Then
      StrFolder = .SelectedItems(1) & "\"
    Else
      MsgBox "No folder is selected! Please select the target folder."
      Exit Sub
    End If
  End With
 
  strFile = Dir(StrFolder & "*.docx", vbNormal)
 
  While strFile <> ""
    Set objDoc = Documents.Open(FileName:=StrFolder & strFile)
    Set objDoc = ActiveDocument
 
    With objDoc
      .Background.Fill.Visible = msoFalse
      .PrintOut
      .Close SaveChanges:=wdDoNotSaveChanges
    End With
    strFile = Dir()
  Wend
 
End Sub

The macro will invoke the “Browse” window. Just choose the folder which contains all your documents and click “OK”.

Similarly, no change will be made to the digital version of document.

Keep an Eye on Your Word Document

It’s common and reasonable to store a number of documents on one’s computer. But, as time goes by, documents get old and forgot by us. So, some day, when you go to search for a specific document, you only find it inaccessible. Such a frustration is what we all hate to encounter with. However, the only way to retrieve data is to utilize a repairing tool to fix doc. So, get one as soon as possible before all is too late.

Author Introduction:

Vera Chen is a data recovery expert in DataNumen, Inc., which is the world leader in data recovery technologies, including Excel fix and pdf repair software products. For more information visit www.datanumen.com

One response to “3 Smart Ways to Print Your Word Document without Background Color or Image”

Leave a Reply

Your email address will not be published. Required fields are marked *