Automate Word from Visual Basic to create a mail merge for ... private sub command1_click () dim oapp as word.application dim odoc as word.document 'start a new document in word set oapp = createobject ("word.application") set odoc = oapp.documents.add with odoc.mailmerge 'insert the mail merge fields temporarily so that 'you can use the range that contains the merge fields as a layout 'for your labels -- to …