D
Darren
Can somebody please tell me what is wrong with the following
Dim J As Integer
For J = 1 To dataArray.Length - 1
lsvCurrentFileList.Items.Add(New ListViewItem(dataArray(J)))
Next J
I can display the contents of a dataArray in a msgbox but when I try it in
a listview the application locks up.
I am trying to send a list of files from a desktop PC to a PocketPC. The
pocket PC recieves it OK as I can display the array in a messagebox but not
in a listview.
Am I missing something here?
I can do it find on the desktop PC in the same way.
Thanks
Dim J As Integer
For J = 1 To dataArray.Length - 1
lsvCurrentFileList.Items.Add(New ListViewItem(dataArray(J)))
Next J
I can display the contents of a dataArray in a msgbox but when I try it in
a listview the application locks up.
I am trying to send a list of files from a desktop PC to a PocketPC. The
pocket PC recieves it OK as I can display the array in a messagebox but not
in a listview.
Am I missing something here?
I can do it find on the desktop PC in the same way.
Thanks