Steve,
Thanks very much. I didn't know how to handle a "single-select" listbox. Your code works fine.
Thanks again.
Jim
Main Topics
Browse All TopicsI am trying to run a private module when a List Box item is selected. I have a List Box named "lstScens" (no multiple selection) on a form named "frmScens". I have the "On Click" property for "lstScens" set to "Event Procedure" and pointing to a private subroutine called "lstScens_Click()". Following is the code on "lstScens_Click()":
Private Sub lstScens_Click()
Dim lstScenarios As ListBox
Dim varItem As Variant
Set lstScenarios = Forms!frmScens!lstScens
For Each varItem In lstScenarios.ItemsSelected
ScenName = lstScenarios.ItemData(varI
Next varItem
End Sub
Even though "lstScenarios" has 5 items, the above "For Each" statement does not find any items. While trying to debug the problem, I noticed that the "lstScenarios" List Box is temporarily cleared as soon as the Sub "lstScens_Click" is called - the items reappear once the subroutine is concluded. Therefore the For Each loop is just skipped over. The Sub works fine when run independently from the "On Click" event. But I want it to run each time the User selects an item from the "lstScens" List Box.
Any suggestions?
Thank you for any help.
Jim
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: stevbePosted on 2004-02-05 at 12:23:41ID: 10283982
if it is not multi-select then you do not need to loop
Private Sub lstScens_Click()
ScenName = Me.lstScenarios.Value
End Sub
Steve