Problem to open new form with DataEntry=True.

awiezzz

New member
Local time
Tomorrow, 06:44
Joined
Jun 16, 2004
Messages
9
Hi,
I have Add button. When i click on the button, it will open frmstaff for me to enter new staff record. Now, i have to set DataEntry=True. It means i have 2 forms, one for data entry and another form to view previous staff records. Is it possible for me to do like this?

Code:
Private Sub cmdAdd_Click()    
   Set Forms("frmstaff").DataEntry = True
End Sub

but it will give me error,
Invalid use of property.

any idea? thanx in advance..;)
 
put the following in the onLoad event of your form

Me.DataEntry = True
 

Users who are viewing this thread

Back
Top Bottom