I'm putting some data from my vb app to word doc using the code

Dim WordDoc As Word.Document
newfile$ = App.Path + "\Temp.doc"
Set MyWord = CreateObject("Word.Application")
Set WordDoc = MyWord.Documents.Add
MyWord.Visible = True
MyWord.Activate


MyWord.Selection.TypeText "bla..bla..bla..."
'//MY TEXT ON FULL PAGE



Set WordDoc = Nothing
Set MyWord = Nothing


Now I've to put an faded image (like watermark) on the background of the page and text on it. how it's possible. can anyone suggest.