- Sub OpenPath()
- Dim fd As FileDialog, FileName As String, FileFolder As String
- Set fd = Application.FileDialog(msoFileDialogFolderPicker)
- With fd
- .AllowMultiSelect = False
- If .Show = -1 Then
- FileFolder = .SelectedItems(1)
- Else
- End
- End If
- End With
- Set fd = Nothing
- End Sub
½Æ»s¥N½X ¦p¦ó¥[¤@Ó§PÂ_¦pªG¨S¦³¿ï¨ú®É´N¤£¯àÂ÷¶}FileDialog¡HThanks. |