MelissaBerrett
MIS
I have a table that has a checkbox for every record. Once the check box has been checked, I would like to export the record to another database, or even another table if that is easier. How do I do this? Thanks!!!
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub chkMyField_AfterUpdate()
Me.Dirty = False
DoCmd.TransferDatabase acExport, , , , "tblMyTable", "c:\temp\db1.mdb"
End Sub
tblMyTable
c:\temp\db1.mdb
Me.Dirty