i add items on treeview using this code
adds icon with item
and now i wish to send alll items in treeview1 using this command but not working am little lost
am trying to send that to server , trying to send all list items in treeview1 in server please help
adds icon with item
Code:
treeview1.Nodes.Add , , strLine, strLine, 2, 2
and now i wish to send alll items in treeview1 using this command but not working am little lost
Code:
Dim i As Integer
For i = treeview1.Nodes.Count - 1 To 0 Step -1
frmMain.ConnSocket.SendData treeview1.Nodes(i).text
Next i
am trying to send that to server , trying to send all list items in treeview1 in server please help