Here are some answers to your questions:
1. How do get the contents of a checklistbox control when multiple rows are
checked ?.
Ans:
Use the SelectedItems collection to retrieve the items:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
Dim s As String
For Each s In CheckedListBox1.SelectedItems
Debug.WriteLine(s)
Next
End Sub
2. How can you make a function call when a tab is clicked.
Ans:
I assume you are referring to the Tab Control in which case you simply
define an event handler for the click event of each tabpage.
The designer drop downs can do this for you. Select the Tab page in the
left hand drop down and then select the CLick event in the right hand
dropdown and you will get code like this:
Private Sub TabPage1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles TabPage1.Click
End Sub
Hope that helps.
Cameron McColl
Microsoft.