Access needs a GetFileDialog and GetFolderDialog

Access needs to have a built in File and Folder dialog so that it doesn’t need to be calling the Office API as it requires a lot of work. It should be as simple as one would use it in Visual Studio.

Dim MyOpenFileDialog As System.Windows.Forms.OpenFileDialog

                MyOpenFileDialog.InitialDirectory = "C:\"

                MyOpenFileDialog.OpenFile()