josephbupe
Registered User.
- Local time
- Today, 21:04
- Joined
- Jan 31, 2008
- Messages
- 247
Hi,
I have placed an image control in a form but I want the image to be visible only when the value in the combo box is "Deceased".
I am trying behind the combo box afterupdate:
With this all records opened in that form have the control visible. How can I handle this properly?
Joseph
I have placed an image control in a form but I want the image to be visible only when the value in the combo box is "Deceased".
I am trying behind the combo box afterupdate:
Code:
If Me.cboStatus.value="Deceased" Then
Me.imgDeceased.visible=True
Else
Me.imgDeceased.visible=False
End If
With this all records opened in that form have the control visible. How can I handle this properly?
Joseph