Johnny Drama
In need of beer...
- Local time
- Today, 15:12
- Joined
- Dec 12, 2008
- Messages
- 211
I've searched high and low through the forums and tried every piece of code I can find, but I still can't get this to work.
I've got a report with a combo box and an embedded image. The name of the combo box is deferrable and the image control is name Flag. I using the below code:
Private Sub Report_Load()
If Me.Deferrable = "Yes" Then
Me.flag.Visible = True
Else
Me.flag.Visible = False
End If
End Sub
If I set Deferrable to "No", then the image shows up, if I set it to "Yes" then no images appear. I want an image to appear next to all the records in the report that meet the "yes" criteria. This is driving me nuts.
I've got a report with a combo box and an embedded image. The name of the combo box is deferrable and the image control is name Flag. I using the below code:
Private Sub Report_Load()
If Me.Deferrable = "Yes" Then
Me.flag.Visible = True
Else
Me.flag.Visible = False
End If
End Sub
If I set Deferrable to "No", then the image shows up, if I set it to "Yes" then no images appear. I want an image to appear next to all the records in the report that meet the "yes" criteria. This is driving me nuts.