Hi I found this code and it works but is there any way to prompt for filename and save location?
Thanks.
Fen
Private Sub Command276_Click()
Dim access As access.Application
Set access = CurrentProject.Application
access.DoCmd.OpenQuery "qry_si EXPORT FOR MAP"
access.DoCmd.TransferDatabase acExport, "dBASE IV", "c:\", acTable, "qry_si EXPORT FOR MAP", "MIDDLETON FOR ARCVIEW.DBF"
DoCmd.Close acQuery, "qry_si EXPORT FOR MAP"
End Sub