Hi all,
I need some code that will allow me to open an Excel Workbook from a
command button I have placed on my Userform.
My Userform form has various command buttons that allow me to open Word
documents, and I need the equivalent that will allow me to now open
Excel files as well.
This is an example of the code that sits under a command button that
will allow me to open a Word document.
Private Sub cmdShowDocument1_Click()
Call OpenFile("C:\Document1.doc")
End Sub
.... and this is the called function.
Public Sub OpenFile(ByVal File_Name As String)
Dim OpenFileVar
OpenFileVar = ShellExecute(0&, "open", File_Name, vbNullString,
vbNullString, 1)
End Sub
I need something similar that will allow me to open Excel Workbooks.
Thanks very much for your help with this.
Regards
Karen
Bookmarks