envelopes

  • Thread starter Thread starter Pam
  • Start date Start date
P

Pam

Is it possible to have a form showing on the screen and
set up a macro button that will pull the name and address
and print an envelope?
 
You can use two approaches:

1) Use ms-word (just download my super duper incredible word merge here):

http://www.attcanada.net/~kallal.msn/msaccess/msaccess.html

2) Build a report that prints out the name and address in landscape for
envelope printing (this is what I do). The code then to print just the ONE
record to the report is:

me.Refresh
docmd.Openreprot "rptEnvelope",acViewPreview,,"id = "& me.ID
 
Back
Top