View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
ExcelMonkey ExcelMonkey is offline
external usenet poster
 
Posts: 553
Default Pass highlighted list variable to caption

When the user click on an item in a list, I want the name of the item passed
to a caption box. What do I pass to the caption. The following below does
not work

Private Sub ListBox1_Click()
Me.Label2.Caption = List.Selected
End Sub

Thanks

EM