L
ladybug via AccessMonster.com
I have a form called sfrm_status_of_lif_notes. In this form there is a text
box called status. This text box is bound to a previous form.
In the Detail of the form I have a text box called approved_dt. I have the
visibility set to No.
I would like approved_dt only to be visible if the status is "Approved"
I tried this in the On Open event of the form:
Dim blnVisible As Boolean
blnVisible = (Me.status = Approved)
Me.approved_dt.Visible = blnVisible
It did not work.
Does anyone have any suggestions?
box called status. This text box is bound to a previous form.
In the Detail of the form I have a text box called approved_dt. I have the
visibility set to No.
I would like approved_dt only to be visible if the status is "Approved"
I tried this in the On Open event of the form:
Dim blnVisible As Boolean
blnVisible = (Me.status = Approved)
Me.approved_dt.Visible = blnVisible
It did not work.
Does anyone have any suggestions?