How do I make a form "read only"?

S

scaast

I have a form with nearly 18,000 records that is searchable via combo box. I
want to restrict the form to search and view only. How do I do this?
 
K

Ken Snell \(MVP\)

Set its AllowEdits, AllowAdditions, and AllowDeletions properties to No
(design view of form).
 
Top