This document was uploaded by user and they confirmed that they have the permission to share
it. If you are author or own the copyright of this book, please report to us by using this DMCA
report form. Report DMCA
Overview
Download & View Database Commands as PDF for free.
to add or append record data1.recordset.addnew to save record data1.recordset.update to delete record confirm=msgbox("are you sure you want to delete this record?",vbyesno,"deletion confirmation") if confirm=vbyes then data1.recordset.delete msgbox "record already deleted!",,"message" else msgbox "record not deleted!",,"message" endif