In the code below Im calling a sub "DisplayQuestion(TheQuestion)" In this sub I have a list of 5 responses (and might have a comment Texbox.)
I can display the TB and selections with a button for when the client is done but I want the code to wait for a user input (the button to be clicked) before going back and hitting the listview for statement.
Thanks
.net 2005 CF
I can display the TB and selections with a button for when the client is done but I want the code to wait for a user input (the button to be clicked) before going back and hitting the listview for statement.
Thanks
.net 2005 CF
Code:
For Each item In ListView1.Items
If item.Checked = True Then
TheQuestion = Me.ListView1.Items(WhichOne).SubItems
DisplayQuestion(TheQuestion)
Else
'do somthing else
End If
Next item