Hi
I have a table of participants for an event and I want to create the labels for them.
I created the labels but now I would like to make the labels more interactive.
I would like to make some picture visible or non visible depending on the data.
I tried to make this code :
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Me.[Langue préférée - Preferred language :] = "Français - French" Then
Me.FRA.Visible = True
Else
Me.FRA.Visible = False
End If
End Sub
Tried these after :
Private Sub Report_Filter(Cancel As Integer, FilterType As Integer)
Me.FRA.Visible = False
End Sub
Private Sub Report_Load()
Me.FRA.Visible = False
End Sub
All of them have no influence in the visibility of the image named FRA or ENG.
Can someone help me on this?
Thanks
Bruno
I have a table of participants for an event and I want to create the labels for them.
I created the labels but now I would like to make the labels more interactive.
I would like to make some picture visible or non visible depending on the data.
I tried to make this code :
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Me.[Langue préférée - Preferred language :] = "Français - French" Then
Me.FRA.Visible = True
Else
Me.FRA.Visible = False
End If
End Sub
Tried these after :
Private Sub Report_Filter(Cancel As Integer, FilterType As Integer)
Me.FRA.Visible = False
End Sub
Private Sub Report_Load()
Me.FRA.Visible = False
End Sub
All of them have no influence in the visibility of the image named FRA or ENG.
Can someone help me on this?
Thanks
Bruno