ref : ("Code below"
I'd Like to NOt Show the Entire Path Of the XLS Files In the Combo Box Just the
XLS Names and Extension..
This Code Open's the Combo Selected XLS Workbook In a Whole new Excel Instance..
I Want the Selected sheet to Open In another Sheet TAB in the Current Workbook
Not another EXCEL Instance.....(" PLEASE HELP" )
Private Sub Worksheet_Activate()
With Application.FileSearch
.NewSearch
.LookIn = "C:\MyDir\files"
.SearchSubFolders = False
.Filename = "*.xls"
If .Execute > 0 Then
For i = 1 To .FoundFiles.Count
ComboBox1.AddItem .FoundFiles(i)
Next i
End If
End With
End Sub
' /// then In the change event of the COmbo Box i have
Private Sub ComboBox1_Change()
strSelect = ComboBox1.Value
Workbooks.Open Filename:=strSelect
End Sub