L
Lloy Sanders
I have a nice little script to find custom labels set up in Word.
Set objWord = CreateObject("Word.Application")
objWord.Documents.Add
For iCnt = 1 To objWord.MailingLabel.CustomLabels.Count
strLabel = objWord.MailingLabel.CustomLabels.Item(iCnt).Name
cboTemplates.Items.Add strLabel
Next
objWord.Quit
Set objWord = Nothing
Works great, but how do I find the built in labels (e.g. the Avery labels,
etc.)? Thanks
Set objWord = CreateObject("Word.Application")
objWord.Documents.Add
For iCnt = 1 To objWord.MailingLabel.CustomLabels.Count
strLabel = objWord.MailingLabel.CustomLabels.Item(iCnt).Name
cboTemplates.Items.Add strLabel
Next
objWord.Quit
Set objWord = Nothing
Works great, but how do I find the built in labels (e.g. the Avery labels,
etc.)? Thanks