K
KK
How can I get Office 2000 file open
dialog box into my access application?
Currenlty I have added a reference to
MS office 10 library but can't find a way
to create an instance of fileDialog
Dim objFileDialog As Office.FileDialog
//This doesn't work cause there is no such method to get the
//reference
Set objFileDialog =
Application.FileDialog(Office.msoFileDialogFilePicker)
objFileDialog.AllowMultiSelect = False
objFileDialog.InitialFileName = GetAppPath()
objFileDialog.Filters.Add "Acrobat PDF File", "*.pdf"
Help!
KK
dialog box into my access application?
Currenlty I have added a reference to
MS office 10 library but can't find a way
to create an instance of fileDialog
Dim objFileDialog As Office.FileDialog
//This doesn't work cause there is no such method to get the
//reference
Set objFileDialog =
Application.FileDialog(Office.msoFileDialogFilePicker)
objFileDialog.AllowMultiSelect = False
objFileDialog.InitialFileName = GetAppPath()
objFileDialog.Filters.Add "Acrobat PDF File", "*.pdf"
Help!
KK