can any one spot the misstake? The bookmark exists in my template
VB.NET:
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Dim oWord As Word.Application
Dim oDoc As New Word.Document
'Start Word and open the document template.
oWord = CreateObject("Word.Application")
oWord.Documents.Add("C:\Documents and Settings\Tim\My Documents\Work\Templates\TimeSheet.docx")
oDoc.Bookmarks.Item("MondayDate").Range.Text = "17/01/2010"
oWord.Visible = True
End Sub