nice simple one - using Access 2000, would like to bring up Save As... dialog box thhorugh VBA coding. Is this poss and if so what is the code? Many Thanks in advance.
Use the activex tool dropdown to select the microsoft common dialog control and paste this onto the appropriate form. Using a command button use the following code to open and get the filename desred
With comdlg1
.Filter = "All Files (*.*)|*.*"
.ShowOpen
End With
FileName = comdlg1.FileName
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.