Thread: listboxes
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_6_] Bob Phillips[_6_] is offline
external usenet poster
 
Posts: 11,272
Default listboxes

Hi Mandy,

Is this what you mean?

Private Sub ListBox1_Click()
Me.ListBox2.ListIndex = -1
Me.ListBox3.ListIndex = -1
End Sub


--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Mandy" wrote in message
...
I have a 3 listboxes, the items in which the user can
click. How can I get make it so that if an item is
clicked in listbox1 then selected items in listboxes 2 &
and 3 are deselected?

Many thanks