How do I make a table with some read-only records and some changab

  • Thread starter Thread starter chyc
  • Start date Start date
C

chyc

I have a database that has one table with over 10,000 records. In that
table, I need to make some records read-only. Can that be done? Thank you.
 
I have a database that has one table with over 10,000 records.  In that
table, I need to make some records read-only.  Can that be done?  Thank you.

sort of. Say there's a Yes/No field in your table that indicates
whether the record is read-only. In the OnCurrent event of your form,
set the AllowEdits property to Not(IsReadOnlyFlag).
 
Back
Top