V
vbaNOOB
Hi All,
I'm not sure if it's the rite to post my question. Try by luck.
I used to write program by VBA.
This time, I need to write a program by VB Express that do similar as VBA.
I need a program that open a particular Doc files and accpet all change for
track change.
It can be done by VBA using : WordBasic.AcceptAllChangesInDoc
And in VB Express, U can create a word object By:
Dim objWord As Word.Application
objWord = New Word.Application
Open and file:
objWord.Documents.Open(strDocFile)
Access the activedocument by
objword.activedocuemnt... <--- Do whatever u what, just like VBA
However, I can access the "WordBasic.AcceptAllChangesInDoc"
Because, there is no AcceptAllChangesInDoc in wordbasic.
Do any1 have an idea about this
Many Thanks
I'm not sure if it's the rite to post my question. Try by luck.
I used to write program by VBA.
This time, I need to write a program by VB Express that do similar as VBA.
I need a program that open a particular Doc files and accpet all change for
track change.
It can be done by VBA using : WordBasic.AcceptAllChangesInDoc
And in VB Express, U can create a word object By:
Dim objWord As Word.Application
objWord = New Word.Application
Open and file:
objWord.Documents.Open(strDocFile)
Access the activedocument by
objword.activedocuemnt... <--- Do whatever u what, just like VBA
However, I can access the "WordBasic.AcceptAllChangesInDoc"
Because, there is no AcceptAllChangesInDoc in wordbasic.
Do any1 have an idea about this
Many Thanks