Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Word -> Access: I'm still stuck!

Status
Not open for further replies.

RobWalls

Programmer
Jul 25, 2001
15
0
0
GB
I posted a problem a couple of days ago which hasn't been resolved. Please can you help, because i can't continue with my project until it's solved. The problem is this:

How can i insert a Word97 document into an Access97 bound OLE object and have it display the WHOLE document. At present, it only displays the first page of every document. There is plenty of room in the OLE frame, so it's not being clipped, but i can't see how to solve this problem. Someone did suggest a download which combats this, but i checked it out and it only seemed to apply to access 2000, which i do not own.
I would be grateful for any suggestions,

Rob.
 
How about something like this

Code:
Private Sub Command7_Click()
    Dim objWord As Object
    Set objWord = Me!OLEUnbound5.Object.Application.Wordbasic
    Me!OLEUnbound5.Action = acOLEActivate
    With objWord
        .StartOfDocument
    End With
End Sub
Billy H

bhogar@acxiom.co.uk
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top