Opening a Word File

mikeparks

New Member
Joined
Jan 4, 2004
Messages
1
How do you create a command button to automatically open a word file from a form. I want my users to open an instructions word file.
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Hi Mike,

You can use code like this:-

Code:
Private Sub Command0_Click()
Dim oWordApp As Object


Set oWordApp = CreateObject("Word.Application")
oWordApp.Documents.Open "H:\temp\instructions.doc"
oWordApp.Visible = True

End Sub
 
Upvote 0
You don't need to use a macro as you can use a hyperlink from a button or label to open your word doc. this has the advantage of letting you jump to bookmarks as well!

The code that DK posted will work from the on click event of a button. You could pull the path from the value in a field in the form rather than hard coding it if you wanted.

HTH

Peter
 
Upvote 0

Forum statistics

Threads
1,221,618
Messages
6,160,855
Members
451,674
Latest member
TJPsmt

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top