any one know where i can find a list of methods for this object?
Set oApp = CreateObject("Word.Application"
oApp.Visible = True
Set objWord = CreateObject("Word.Basic"
objWord.FileNew
'creates a new document which you can then use
objWord.Insertfile "a:1CoversecBulletin.rtf"
objWord.InsertPara 'inserts a space
objWord.Insert
i am trying to insert reports directly into a word file
i think i can do it by saving the reports as documents first but its a bit messy
Set oApp = CreateObject("Word.Application"

oApp.Visible = True
Set objWord = CreateObject("Word.Basic"

objWord.FileNew
'creates a new document which you can then use
objWord.Insertfile "a:1CoversecBulletin.rtf"
objWord.InsertPara 'inserts a space
objWord.Insert
i am trying to insert reports directly into a word file
i think i can do it by saving the reports as documents first but its a bit messy