Consulting

Results 1 to 3 of 3

Thread: Solved: Open AN embedded word document in an access table

  1. #1

    Solved: Open AN embedded word document in an access table

    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?

  2. #2
    VBAX Tutor
    Joined
    Dec 2006
    Posts
    220
    Location
    You first have to set its verb property and then activate it. This assumes you are using a form.


    [vba]Private Sub Doc_Click()

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

    Doc.Action = acOLEActivate

    End Sub[/vba]
    "Intellectual passion occurs at the intersection of fact and implication."

    SGB

  3. #3
    Thank you.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •