G
Guest
I am trying to use FileDialog to allow the client to select a valid folder. VBA seems to not recognize the object type, referring to it as "user-defined" when I try to DIM a varible with it
Alot of times, VBA will show you the valid objects and properties while you are typing in. FileDialog is not recognized as a valid part of Application. Below is the code I am attempting to use
Dim FolderSelector As FileDialo
Set FolderSelector = Application.FileDialog(msoFileDialogFolderPicker
Do I need to include a specific Refernce to allow FileDialog to be recognized as a valid object type
Ke
Alot of times, VBA will show you the valid objects and properties while you are typing in. FileDialog is not recognized as a valid part of Application. Below is the code I am attempting to use
Dim FolderSelector As FileDialo
Set FolderSelector = Application.FileDialog(msoFileDialogFolderPicker
Do I need to include a specific Refernce to allow FileDialog to be recognized as a valid object type
Ke