Form1
Programmer
- Apr 27, 2005
- 12
I would like to prevent the user from entering new records
I used
With frm
.AllowAdditions = false
.AllowDeletions = True
.AllowEdits = True
End With
User should be able to update and edit.
If the form has no records then form will be blank. Form doesn't even show the controls.
How to make controls visible but user shoud not be allowed to enter new record. Is there any other solution for this?
thanks
I used
With frm
.AllowAdditions = false
.AllowDeletions = True
.AllowEdits = True
End With
User should be able to update and edit.
If the form has no records then form will be blank. Form doesn't even show the controls.
How to make controls visible but user shoud not be allowed to enter new record. Is there any other solution for this?
thanks