data entry form

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

Guest

I'm about to finish my database and I will start using it to do a research,
and someone has suggested me to make my form as "data entry" in order to not
let anyone change the information in my database. What should I do to make my
form "data entry"?

Miguel
 
Two ways
1. Set the form DataEntry Property to Yes
====================================
2. On the On open form command line, specify that it for data entry
docmd.OpenForm "FormName",,,,acFormAdd
 
Back
Top