List Box to show a label

  • Thread starter Thread starter Bob Vance
  • Start date Start date
B

Bob Vance

My listbox [lstModify] if Column(2), contains data , data being "e" to make
lblEmailAvailableC.Visible on the same form
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Not finding Records 1
List Box format Question 3
Cant find subForm 5
Open Form addition 1
Visible Problem! 3
Move Control to another Form Problem 3
Access Cannot select items in listbox 1
Visible Question 1

Back
Top