Wednesday, May 19, 2010

Membatalkan entry data microsoft access

Kode berikut untuk membatalkan atau menghapus entri data di microsoft access. untuk lebih mudahnya buatlah tombol dan isikan dengan kode berikut:

------------------------------------------------------------ download access code cancelling entry
If Me.Dirty Then
Me.Undo
End If

If Not Me.NewRecord Then
RunCommand acCmdDeleteRecord
End If
-------------------------------------------------------------

No comments:

Post a Comment