With Application.FileDialog(msoFileDialogOpen)
.InitialFileName = "*.txt"
.Show
If .SelectedItems.Count > 0 Then
fs = .SelectedItems(1)
Else
MsgBox "沒有選取檔案 !!!"
Exit Sub
End If
End With
處理後
結束為出現訊息 想覆蓋原舊檔名呢 Y OR N 或是想建新檔名 那更棒作者: GBKEE 時間: 2010-10-14 09:21