msoFileDialogSaveAs

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have AccessXP with ServicePack3 installed. I have referenced the
Microsoft Office 10.0 Object Library. I can access the FileDialogOpen and
FileDialogFilePicker but it refuses to let me access FileDialogSaveAs. Any
help would be appreciated.
 
regarrels said:
I have AccessXP with ServicePack3 installed. I have referenced the
Microsoft Office 10.0 Object Library. I can access the
FileDialogOpen and FileDialogFilePicker but it refuses to let me
access FileDialogSaveAs. Any help would be appreciated.

The SaveAs dialog isn't supported for Microsoft Access. If you want to
bring that one up, you have to call the Windows API yourself. See the
code posted at

www.mvps.org/access/api/api0001.htm
 
Dirk Goldgar said:
The SaveAs dialog isn't supported for Microsoft Access. If you want to
bring that one up, you have to call the Windows API yourself. See the
code posted at

www.mvps.org/access/api/api0001.htm

--
Dirk Goldgar, MS Access MVP
www.datagnostics.com

(please reply to the newsgroup)


You are abviously right, however, in KB article 279508 Microsoft says that the AccessXP version now allows direct access to that particular dialog box withbout using Windows API. Thanks for the info.

Bob Garrels
 
regarrels said:
You are abviously right, however, in KB article 279508 Microsoft says that
the AccessXP
version now allows direct access to that particular dialog box withbout
using Windows API.
Thanks for the info.

I see nothing in that KB article that talks about FileDialogSaveAs
 
Other dialogs are available by way of the FileDialog object, but not the
Save As dialog. That is true for Access, but not for other Office
programs.
 
Douglas J. Steele said:
I see nothing in that KB article that talks about FileDialogSaveAs

--
Doug Steele, Microsoft Access MVP

(no e-mails, please!)

You're right. I had downloaded two articles, the other was Using the FileDialog Objects at http://msdn.microsoft.com/library/en-us/dnoxpta/html/odc_filedlgobjs.asp?
It indicated that the SaveAs file dialog box was available directly within
the Office 10.0 object library and since the KB 279508 article also referred
to the Office 10.0 object library I assumed too much. Sorry.
 
Back
Top