J
Jesper Fjølner
Normally I automate to word from Access and insert data in the word document
at specified bookmarks.
Now I need to open a document and create a table and add some rows to it. I
need to use late binding.
I using something like:
Set oWord = CreateObject("word.application") 'late binding
oWord.Documents.Add "c:\template.dot"
oWord.Visible = True
But how do I add a table and add some rows and values in them?
I'll be looping a recordset and inserting values in x number of rows.
Thanks for any help.
at specified bookmarks.
Now I need to open a document and create a table and add some rows to it. I
need to use late binding.
I using something like:
Set oWord = CreateObject("word.application") 'late binding
oWord.Documents.Add "c:\template.dot"
oWord.Visible = True
But how do I add a table and add some rows and values in them?
I'll be looping a recordset and inserting values in x number of rows.
Thanks for any help.