Search results

  1. M

    Image Visibility

    Hi Paul, No sorry, I haven't tried that - I've never used debugging before though in Access\VBA. I don't understand why its not working, I must be missing something. Regards, Michael
  2. M

    Image Visibility

    Hello pr2-eugin, Thanks for the reply. Yes, just tried Private Sub Report_Current() If Me.field1.Value = "TN11" Then Me.Image146.Visible = True Else Me.Image146.Visible = False End If End Sub and also Private Sub Report_Current() Me.Image146.Visible = (Me.field1.Value = "TN11") End...
  3. M

    Image Visibility

    Hello, I am using Access 2010 32-bit and I have placed an embedded image (Image146) in the detail section of a report, and then set the Visible property to No. There is a Text box (field1) also in the detail section. When the value of the Textbox = "ABC" I want the image to display...
Back
Top Bottom