List Box to show a label

B

Bob Vance

My listbox [lstModify] if Column(2), contains data , data being "e" to make
lblEmailAvailableC.Visible on the same form
 
B

Bob Vance

Amazing I must be getting it now :)..........Bob

Private Sub lstModify_AfterUpdate()
If Nz(Me.lstModify.Column(2) = "e") Then
Me.lblEmailAvailableC.Visible = True
Else
Me.lblEmailAvailableC.Visible = False
End If
End Sub
 
Top