P
PaleRider
Hi,
I have several embedded pictures and depending on the value in cboPicture I
want to display the matching picture. I have tried setting the visible
property to true, but that is not working. I think I need a way to execute
the "Bring Forward" command. Is there a way to do this. My code follows:
Select Case Me.cboPictures.Column(1)
Case "Bronze"
Me.Bronze.Visible = True
Case "Silver"
Me.Silver.Visible = True
Case "Gold"
Me.Gold.Visible = True
Case "Platinum"
Me.Platinum.Visible = True
Case Else
Me.Blank.Visible = True
End Select
I have several embedded pictures and depending on the value in cboPicture I
want to display the matching picture. I have tried setting the visible
property to true, but that is not working. I think I need a way to execute
the "Bring Forward" command. Is there a way to do this. My code follows:
Select Case Me.cboPictures.Column(1)
Case "Bronze"
Me.Bronze.Visible = True
Case "Silver"
Me.Silver.Visible = True
Case "Gold"
Me.Gold.Visible = True
Case "Platinum"
Me.Platinum.Visible = True
Case Else
Me.Blank.Visible = True
End Select