Shipping Label Design

  • Thread starter Thread starter chaucersmom
  • Start date Start date
No, it is all done by the code. See my first response in this thread.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
Note her second paragraph, where she says "the template opened" but
"the variables weren't filled in," as if she expected them to be. I
suppose she means that she opened a document based on the template
(such as by double-clicking on the template's name).
 
In the code in the Outlook Visual Basic Editor, replace

cname = .FullName
ccompany = .CompanyName
cstreet = .BusinessAddressStreet
ccity = .BusinessAddressCity
cstate = .BusinessAddressState
czip = .BusinessAddressPostalCode
ccountry = .BusinessAddressCountry

with

cname = .FullName
ccompany = .CompanyName
cstreet = .HomeAddressStreet
ccity = .HomeAddressCity
cstate = .HomeAddressState
czip = .HomeAddressPostalCode
ccountry = .HomeAddressCountry


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
 
Back
Top