How to add EDraw Office Viewer Component to your Access Form
1.      Open Access
2.      Create a new blank database
3.      Create a new form in Design View. You should now be in design mode
4.      From the Insert Menu select “ActiveX Control…”
5.      Select WordViewer.WordView and click the OK Button
6.      The control should appear on the form
7.      Resize and move the control on the form as desired
8.      Add a button to the form. If the wizard appears cancel it
9.      Right-click on the button to invoke the popup menu
10.    Select “Build Event…” then select Code Builder and click OK Button
11.    You should be inside the Visual Basic Development Environment
12.    Within the Command_Click enter the following code:
‘Note: Modify code to point to an existing Word Document file on your web server
EDrawOfficeViewer1.Open “http://www.ocxt.com/demo/sample.doc”
13.    Save your changes and close Visual Basic
14.    Save the form and close it
15.    Double-click on the form to run it.
16.    Click the button. The Word Document should appear!
17.    Experiment by changing the file path to a local file such as:
EDrawOfficeViewer1.Open “c:\test.xls”