Multy Records from Access to Word

orna

Registered User.
Local time
Today, 13:11
Joined
Oct 13, 2002
Messages
78
Hi
Tried it in another forum and didn't got an answer.
I'm transfering a record from Access to Word with this code:

Set objword = New Word.Application
Do Until rst.EOF
With objword
.Visible = True
.Documents.Add Template:=("\\Server\a.dot")
.Selection.GoTo Name:=("CustName")
.Selection.TypeText Text:=rst![CUST_NAME]
.Selection.GoTo Name:=("OpenDate")
.Selection.TypeText Text:=rst![OpenDate]
.....
End With
Loop

How do i transfer more then one recode.
for instance: an order with lines

TIA :(
 
please explain: "an order with lines"

:confused:
Hi,

Can you please explain a bit more (maybe with an example ?)

It is maybe easier to understand what you are trying to accomplish.
 

Users who are viewing this thread

Back
Top Bottom