I did a search but did not find much help on this.

I need to know how to modify text in the document, and also how to insert a picture (that is NOT in a file, it's a picturebox in my program)

For example I have to find "FirstName" and replace with actual first name let's say "John Doe" (keeping the same font and formatting).

Also, I need to insert a picture in the document in the top/right corder, and have no clue how.

This is the code I found by searching, and did not find anything to do the rest of what I need...
VB Code:
  1. Option Explicit
  2.  
  3. Private objWord As Word.Application
  4. Private objDocument As Word.Document
  5.  
  6. Private Sub Form_Load()
  7.     Set objWord = New Word.Application
  8.    
  9.     Set objDocument = objWord.Documents.Open("C:\Template.doc")
  10. End Sub
Any help apreciated, thanks