Posted: Sun Sep 21, 2003 6:35 am Post subject: History of Word documents
Hi
My users have option to open word documents from within my vb app. Is it
possible to make an entry into one of my backend access tables if the user
saves the word document?
Thanks
Archived from group: microsoft>public>vb>enterprise
Posted: Mon Sep 22, 2003 3:36 pm Post subject: Re: History of Word documents
Yes,
Decalre your (Word) variable WithEvents
(Private WithEvents obj As Word.Application)
You'll now have the events:
Private Sub obj_DocumentBeforeSave(ByVal Doc As Word.Document, SaveAsUI As
Boolean, Cancel As Boolean)
End Sub
Private Sub obj_DocumentChange()
End Sub
and much more..
Kope it helps,
"John" wrote in message#fDHA.2352@TK2MSFTNGP09.phx.gbl...
> Hi
>
> My users have option to open word documents from within my vb app. Is it
> possible to make an entry into one of my backend access tables if the user
> saves the word document?
>
> Thanks
>
>
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum