datasheet view

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

I'm trying to do this.
After user enter a record in a datasheet view within a subform and the
cursor is on another row, I want to disable the row that has a record(make it
not editable).
Dunno how to make the row not editable. Help pls....
 
To lock a form so that no saved record can be changed or deleted, set the
form's AllowEdits and AllowDeletions properties to No.

If you wish to set those properties conditionally on some other value in the
record, do that in the Current event of the form.
 
Back
Top