PDA

View Full Version : Solved: Open AN embedded word document in an access table



leeweaver
08-27-2008, 10:46 AM
I have an embedded word document in an access table. When I double click on the field I want to open the document in a full word window. At the moment when I click in the field I can edit it but it doesn't open in a full word window.

can anyone help a newbie out here?

Carl A
08-28-2008, 12:31 PM
You first have to set its verb property and then activate it. This assumes you are using a form.


Private Sub Doc_Click()

'Where Doc is the name of your control
Doc.Verb = acOLEVerbOpen

Doc.Action = acOLEActivate

End Sub

leeweaver
08-29-2008, 05:48 AM
Thank you.