View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
Cole Cole is offline
external usenet poster
 
Posts: 8
Default Code to Open Excel File Please Help

Hi there,

I'm opening an Explorer window via pressing a button in Excel, so the
user can open another spreadsheet. Problem is - after the user double
clicks on a file to open it, the Windows Explorer window remains open.
Is there some flag I can use to close the explorer window after a file
is opened?

Here is my current code:

Private Sub CommandButton7_Click()
' This is button to Open a Check List

Dim myFolder As String
myFolder = "F:\smithfiles\"
ChDrive myFolder
ChDir myFolder
Shell "explorer.exe /n, /e, /select,F:\smithfiles\Operations Check List
v2.1.xls", vbNormalFocus

End Sub

Note 1: I'm just highlighting the most commonly selected file, but user
needs to be able to select any Excel file to open.
Note 2: I'm also open to using a standard Windows Open-File dialogue
box, but I could not make heads or tails of the examples I found on
google-groups. And I've already looked over Ken Getz' code - I'm too
much of a newbee to make sense of all that. Can someone please spell
it out for me.

Thank you in advance for your help ! MUCH Appreciated !

Cole