function SuperForm1_Deleting(sender) {
return confirm('Are you sure you want to delete this record?');
}
function SuperForm1_Inserting(sender) {
return confirm('Are you sure you want to insert this record?');
}
function SuperForm1_Updating(sender) {
return confirm('Are you sure you want to update this record?');
}
|