我發現這個代碼在這裏StackOverflow上:使用FileDialog的打開工作簿,並操縱它
Dim fd As Office.FileDialog
Set fd = Application.FileDialog(msoFileDialogFilePicker)
With fd
.AllowMultiSelect = False
.Title = "Please select the file to kill his non colored cells"
.Filters.Add "Excel", "*.xls"
.Filters.Add "All", "*.*"
If .Show = True Then
txtFileName = .SelectedItems(1)
End If
End With
我知道這個代碼應該在FileDialog
選擇一個文件。 但是,一旦我選擇了.xls文件,我該如何操作文件?換句話說,我的文件對象在哪裏操作?
我希望有人繼續這段代碼對工作簿進行一些簡單的操作,以便我可以學習如何在打開的工作簿上完成這些簡單的事情。