Tuesday 11 December 2012

Loop Through List box


Use this to Loop through a list box

Dim i As Integer = 0
            For i = 0 To listbox.Items.Count - 1
                Me.listbox3.SelectedIndex = i
                Me.textbox1.Text &= listbox3.Text
            Next

No comments:

Post a Comment

Passwords Made Easy

Today i thought i would write about password security. As we are all aware passwords are important but we continue to use very poor password...