nelson1
03-24-2000, 03:55 PM
Could you tell me how to make my forms open up ready to enter a new record?
|
View Full Version : Opening form in new record view nelson1 03-24-2000, 03:55 PM Could you tell me how to make my forms open up ready to enter a new record? Travis 03-24-2000, 06:12 PM Set the forms 'DataEntry' property to True. You can hard code this in the forms properties or set it in code: Me.DataEntry = True Also you can remove this by setting it to false. nelson1 03-25-2000, 05:19 AM Thank you Travis. It asked that question on the MOUS expert exam and as I prepare to take it again, the information will be valuable. It is just a common sense idea that should probably be taught early in form creation. |