Epson Envelope Orientation

Home Up Search This Site What's New? Audio On CDR Favourites Downloadable files Photo Gallery 2002 Photo Gallery 2003 Photo Gallery 2004/5 Photo Gallery 2006/7 Photo Gallery 2008 Photo Gallery 2009 UK Photo Gallery Ireland Photo Gallery Cats Photo Gallery 

 

 

Google
 

 

 

Many people access the material from this web site daily. Most just leech what they want and run. That's OK, provided they are not selling on the material as their own; however if your productivity gains from the material you have used, a donation from the money you have saved, however small, would help to ensure the continued availability of this resource. Click the adjacent button to access PayPal.

Correct Epson Envelope Orientation Problems

Hack the registry

Word has no idea what the correct envelope orientation is for Epson inkjet printers. Here are a couple of fixes you could try. The first involves a simple registry hack.

Run Regedit and locate the entry for the errant printer under:

HKEY_CURRENT_USER\Software\Microsoft\Office\10.0\Word\Printername (Here EPSON Stylus COLOR 480SX - a cheap inkjet that I used with my laptop until it broke.)

Change the EnvFeed_7 entry to '3' (or 2 if the envelope appears upside down in the wizard).

The registry entry above is for Word 2002. I see no reason why this will not work for Word 97, and it does work for Word 2000 and 2003 - substitute \8.0\ or \9.0\ or \11.0\ for \10.0\ as appropriate.

Note:

When working on the registry, it is always advisable to backup registry keys before making changes.

Or try a Word macro

The second is more of a blunt instrument and can be used if the registry hack doesn't fix it for you.

Save this macro in a global template (one that's stored in Word's Startup directory):

Sub ToolsEnvelopesAndLabels()

Dim dlg As Dialog

Set dlg = Dialogs(wdDialogToolsEnvelopesAndLabels)

With dlg

    .DefaultOrientation = wdLeftPortrait

    .DefaultFaceUp = True

    .Show

End With

Set dlg = Nothing

End Sub

When you use the Tools/Envelopes menu command, this macro executes instead. It does not, however, pick up the address information from the document automatically. You will have to select it first. I also found that after using the macro for a while, Word would remember the required settings and the macro could be abandoned without losing the required functionality.