Hi,
Anyone can help, pass all checked listview items into my install form??
And then start process in install form... Here's what I have:
Anyone can help, pass all checked listview items into my install form??
And then start process in install form... Here's what I have:
Code:
If ListView1.CheckedItems.Count > 0 Then
For Each Item As ListViewItem In ListView1.CheckedItems
'//Install
'install = lVI.Checked
Next
Me.Hide()
InstallPrograms.Show()
Else
MessageBox.Show("Nothing selected to install!")
End If