Little_Man22
Registered User.
- Local time
- Today, 15:40
- Joined
- Jun 23, 2001
- Messages
- 118
Right now I have it so that the following is in the afterupdate event procedure of the canadian status field:
If canadian status = "other" Then
Me.OtherStatus.Visible = True
Else
Me.OtherStatus.Visible = False
End If
This works great when you update the field and actually select 'other' from the combo box. However, if you exit the form and come back in, although the combo box may be set to other, the otherstatus field is not visible (even though it may even have a value entered in it).
How can I get it so that if 'other' is selected, the otherstatus field is permanently visible until possibly a different value is chosen from the combo box.
Thanks,
Ryan.
If canadian status = "other" Then
Me.OtherStatus.Visible = True
Else
Me.OtherStatus.Visible = False
End If
This works great when you update the field and actually select 'other' from the combo box. However, if you exit the form and come back in, although the combo box may be set to other, the otherstatus field is not visible (even though it may even have a value entered in it).
How can I get it so that if 'other' is selected, the otherstatus field is permanently visible until possibly a different value is chosen from the combo box.
Thanks,
Ryan.