I'm building a database for a real-estate project and for each home/lot I am displaying a whole bunch of info. I have a transparent background image - Image78, and I'm laying it over the house pic.
What I want is for each record, that the Image78.visible=Was_Sold.value
I set up:
Code:
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
End Sub
Private Sub Report_Current()
Image78.Visible = Was_Sold
End Sub
This overlays the Image78 over all or no records depending on whether I click on a sold or unsold lot.
Why is this affecting all or no records? I've been poking at this for hours now. Thanks to any responses in advance!