hello!
i have a few graph charts in Word and i would like to be able to insert data into the datasheets from my vb app.
how do i go abt accomplishing this?
i already have some bookmarks in the Word doc template and this is how i insert the values:
******************************
Dim AppWord As Word.Document
Set AppWord = GetObject(strFileName)
AppWord.Bookmarks("Value1".Select
Selection.TypeText frmPersonal.txtName(0).Text
*************************************
the solution shld be something close to this i hope.
Thank You