Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
It is not new to 2003 but XP?2002, so you don't have it with 2000.
-- HTH Bob Phillips (remove nothere from email address if mailing direct) "JMB" wrote in message ... Is FileDialog new to Excel 2003? I have Office 2000 and would have resorted to using API to browse for the directory http://www.vba-programmer.com/Snippe...ction_API.html then FileSearch to return all of the text files. Sub Import() Dim myFileName As Variant Dim FullNameOfDir As String FullNameOfDir = BrowseFolder("What Folder you want to select?") With Application.FileSearch .NewSearch .LookIn = FullNameOfDir .SearchSubFolders = True .Filename = "*.txt" .MatchTextExactly = True .FileType = msoFileTypeAllFiles .Execute If .FoundFiles.Count 0 Then For i = 1 To .FoundFiles.Count myFileName = .FoundFiles(i) 'rest of your code Next i End If End With End Sub "mudraker" wrote: martin have a look at FileDialog Extract from help file Sub UseFileDialogOpen() Dim lngCount As Long ' Open the file dialog With Application.FileDialog(msoFileDialogOpen) .AllowMultiSelect = True .Show ' Display paths of each file selected For lngCount = 1 To .SelectedItems.Count MsgBox .SelectedItems(lngCount) Next lngCount End With End Sub -- mudraker ------------------------------------------------------------------------ mudraker's Profile: http://www.excelforum.com/member.php...fo&userid=2473 View this thread: http://www.excelforum.com/showthread...hreadid=537097 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Need to Improve Code Copying/Pasting Between Workbooks | Excel Discussion (Misc queries) | |||
regular code module | Excel Discussion (Misc queries) | |||
can you entre a bar code into a excel cell? | Excel Worksheet Functions | |||
VLOOKUP for Zip Code Ranges | Excel Worksheet Functions | |||
Concatinate a filename | Excel Discussion (Misc queries) |