Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Save As dialog, Tools option missing

Status
Not open for further replies.

gustaf111

Programmer
Jan 16, 2011
87
SE
Hello all! I have the code below which open a SaveAs dialog, it works BUT, the Tools Options at the bottom only allows tou to look at mapping the drive ... ? I'm using excel 2007

What do I need to add to see the Tools options ?


Set fileSaveName = Application.FileDialog(msoFileDialogSaveAs)
fileSaveName.FilterIndex = 2 'select to save with a ".xlsm" extension
fileSaveName.Show
fileSaveName.Execute
 
My experience with msofile anything is that the full features are not available, it gives only a skeleton set of controls.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top