B
Bellyjeans
Hi all,
I have two text boxes in a form that are only visible if their
respective check boxes are clicked. The coding on the After Update
event of the check boxes is as follows:
Check box one:
Me.txtOne.Visible = Me.chkOne
Check box two:
Me.txtTwo.Visible = Me.chkTwo
I then have the following code on the form's On Current event:
Me.txtOne.Visible = Me.chkOne
Me.txtTwo.Visible = Me.chkTwo
The problem is when I create a new record. My error looks like "94 -
Invalid Use of Null - Form_Current()". Where am I going wrong on my
form's On Current event?
Thanks in advance.
I have two text boxes in a form that are only visible if their
respective check boxes are clicked. The coding on the After Update
event of the check boxes is as follows:
Check box one:
Me.txtOne.Visible = Me.chkOne
Check box two:
Me.txtTwo.Visible = Me.chkTwo
I then have the following code on the form's On Current event:
Me.txtOne.Visible = Me.chkOne
Me.txtTwo.Visible = Me.chkTwo
The problem is when I create a new record. My error looks like "94 -
Invalid Use of Null - Form_Current()". Where am I going wrong on my
form's On Current event?
Thanks in advance.