Hello all!
I have an array of numbers that I need to print through a word document onto little labels. (Using OLE/COM to program throgh DELPHI). So I have the following code:
Word := CreateOleObject('Word.Application');
Word.Visible := True;
wrdDoc := Word.MailingLabel.CreateNewDocument Name:="5167 address", Address:=addr, ExtractAddress:=False
to create a new document of labels, but the help example only shows adding one label. I need to go through the array and place them in order:
barcode(1) row 1 column1
barcode(2) row 2 column1
barcode(3) row 3 column1 until column 1 is filled (20 times) then move to row 1 column 2 for barcode(21).
Make sense?
Any help would be appreciated!
thanks,
leslie
I have an array of numbers that I need to print through a word document onto little labels. (Using OLE/COM to program throgh DELPHI). So I have the following code:
Word := CreateOleObject('Word.Application');
Word.Visible := True;
wrdDoc := Word.MailingLabel.CreateNewDocument Name:="5167 address", Address:=addr, ExtractAddress:=False
to create a new document of labels, but the help example only shows adding one label. I need to go through the array and place them in order:
barcode(1) row 1 column1
barcode(2) row 2 column1
barcode(3) row 3 column1 until column 1 is filled (20 times) then move to row 1 column 2 for barcode(21).
Make sense?
Any help would be appreciated!
thanks,
leslie