hello , I'm the classmate off "Gleba"

I use alsa microsoft visual basic express edition (2005)

I also use zedgraph

my problem is that :

I print my graph out with microsoft word (in word you must create booklet indicators to link them)

this is my code:

Code:
Code:
      Dim wordapp As New Word.Application


                doc = wordapp.Documents.Add("C:\Documents and Settings\Proximedia\Bureaublad\horizontale en schuine worp\Oefening op een horizontale worp.doc")
                doc.Bookmarks.Item("beginv").Range.Text = v
                doc.Bookmarks.Item("hoogte").Range.Text = txthoogte.Text
                doc.Bookmarks.Item("tottijd").Range.Text = txttott.Text
                doc.Bookmarks.Item("totafstand").Range.Text = txttotafst.Text
                doc.Bookmarks.Item("tekeninggrafiek").Range.Text = zg1.Created                  
                doc.WebPagePreview()

                CType(doc, Word.Document).Close(False)
                CType(wordapp, Word.Application).Quit()

Can someone say to me what I must change on the code with zg1.created ?