Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 40
Default Envelope Size

Greetings ! and a Happy New Year !

The envelopes I wish to use are 163 mm x 114 mm.

How can I set up Excel to print to that size on my HP Laserjet 4L printer?


It seems as if VBA / Excel only has a limited number of envelope sizes -
#10
C5 (162 x 229)
DL (110 x 220
B5 (176 x 250)
Monarch
.... which can be applied by eg
"ActiveSheet.PageSetup.PaperSize = xlPaperEnvelopeC5"


Regards

Robin
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,942
Default Envelope Size

hi
technically....all excel does is send the data. excel does come with the
most popular sizes but due to the large number of speciality printers on the
market, excel does not have them all.
2003editpage setupoption button....
should diplay the default printer option. if your printer can print in the
size you wish, you can set it here. otherwise you may have to
get..."creative".
excel can not do what the printer is incapable of doing.

regards
FSt1

"Robin Clay" wrote:

Greetings ! and a Happy New Year !

The envelopes I wish to use are 163 mm x 114 mm.

How can I set up Excel to print to that size on my HP Laserjet 4L printer?


It seems as if VBA / Excel only has a limited number of envelope sizes -
#10
C5 (162 x 229)
DL (110 x 220
B5 (176 x 250)
Monarch
... which can be applied by eg
"ActiveSheet.PageSetup.PaperSize = xlPaperEnvelopeC5"


Regards

Robin

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10,124
Default Envelope Size


I print business size envelopes from a database where a double click puts
the address, etc on a page with an envelope set up, by TRIAL and ERROR, to
print to MY printer and look right. You have to adjust row and column sizes
so it will look right when printed. It may look wrong on print preview. If
you don't want to waste envelopes, practice first on plain paper. I once had
your same printer but now use an HP 2840.

I also have it set up so I can easily change the return address and print
one or many from the list. I also have it set up for either a "big envelope"
or #10
Sub EnvelopeSize()
'Note PaperSize 123 is #10 Envelope by recorded macro
On Error Resume Next
x = InputBox("1= Big Envelope ,2= # 10 Envelope")
Sheets("envelope").PageSetup.PaperSize = _
Choose(x, xlPaperExecutive, 123)
[addresses!d3] = "Now Set to " & _
Choose(x, "Big", "Regular") & " Envelope"
'Sheets("envelope").PrintPreview
End Sub
--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Robin Clay" <Robin_B DOT Clay AT virgin DOT net wrote in message
...
Greetings ! and a Happy New Year !

The envelopes I wish to use are 163 mm x 114 mm.

How can I set up Excel to print to that size on my HP Laserjet 4L printer?


It seems as if VBA / Excel only has a limited number of envelope sizes -
#10
C5 (162 x 229)
DL (110 x 220
B5 (176 x 250)
Monarch
... which can be applied by eg
"ActiveSheet.PageSetup.PaperSize = xlPaperEnvelopeC5"


Regards

Robin


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 40
Default Envelope Size

Thank .you both for responding.

Regards

Robin

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
envelope mail merge [email protected] Excel Discussion (Misc queries) 0 April 28th 09 11:54 PM
Maximum Envelope Value Kypp Excel Discussion (Misc queries) 0 August 8th 06 12:06 AM
envelope printing juma New Users to Excel 2 July 26th 06 12:05 AM
Envelope Printing libbyd Excel Discussion (Misc queries) 1 December 24th 05 02:51 PM
print envelope Gixxer_J_97[_2_] Excel Programming 2 March 9th 05 07:05 PM


All times are GMT +1. The time now is 03:40 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"