T
Ton Kuipers
Dear all,
I use the following code in an Access program:
Public Function SavedFile() As String
Dim dlgSaveAs As FileDialog
Set dlgSaveAs = Application.FileDialog
(msoFileDialogSaveAs)
With dlgSaveAs
.Show
End With
End Function
My problem is that the constant "msoFileDialogSaveAs"
causes the following error:
Error 455, this action is not supported by the object.
The constant I use is a constant I select from the
constant list displayed by the Microsoft Visual Basic
Window. The other constants are working as expected.
Does anybody have a solution for this problem?
Thanks,
Ton
I use the following code in an Access program:
Public Function SavedFile() As String
Dim dlgSaveAs As FileDialog
Set dlgSaveAs = Application.FileDialog
(msoFileDialogSaveAs)
With dlgSaveAs
.Show
End With
End Function
My problem is that the constant "msoFileDialogSaveAs"
causes the following error:
Error 455, this action is not supported by the object.
The constant I use is a constant I select from the
constant list displayed by the Microsoft Visual Basic
Window. The other constants are working as expected.
Does anybody have a solution for this problem?
Thanks,
Ton