I have form which has a tab control in the tab there is a combo box for names and date field. The date field is not visible.
In the afterupdate event for the combo box i have this code:
Private Sub Name_AfterUpdate()
Date_Closed.Visible = Now()
End Sub
This will enable the date field to become visible once a name has been selected.
In the on current of the form I insert this code:
Private Sub Form_Current()
Call TabCtl59_AfterUpdate
End Sub
(This is suppose to allow me to add a new record without seeing the date field, meaning that when I move to another record and return the saved record I am able to view the date of the record that is saved)
This is not working what am i doing wrong...I need help this is very important thanks...
In the afterupdate event for the combo box i have this code:
Private Sub Name_AfterUpdate()
Date_Closed.Visible = Now()
End Sub
This will enable the date field to become visible once a name has been selected.
In the on current of the form I insert this code:
Private Sub Form_Current()
Call TabCtl59_AfterUpdate
End Sub
(This is suppose to allow me to add a new record without seeing the date field, meaning that when I move to another record and return the saved record I am able to view the date of the record that is saved)
This is not working what am i doing wrong...I need help this is very important thanks...