I would like to show the user a “File Open” and “File Save” dialog. When the user saves a document, I would like to save the full path to a profile. Then, next time the user wants to open, I will present the last saved as a default. I only want this functionality for one particular XL application and therefore I will provide the open and save buttons. I am not replacing built in menu functionality.
dlgAnswer = Application.Dialogs(xlDialogOpen).Show will show the dialogs I wish, but I cannot figure out how to return the selected file path and name to my code. I can reference an API to show a window’s common dialog, which will return the full path, but then I need to distribute a DLL.
Is there something I have missed.
Thanks.