-
Listview Data Send
Hello all im confused in a function
its like i want to send data with diffrent ids
Code:
Like if my listitem 1 recive invition packet data then my listitem 2 will send next invition data to listitem 3..
how can its possible ?
its like a counter
list.ListItems(1) << will recive
list.ListItems(2) << will send
list.ListItems(3) << will recive
list.ListItems(h) << will send
like this...
-
Re: Listview Data Send
Not sure I fully understand. But you format the data being sent and your client parses the received data. So, simply include a tag, flag, id, whatever with the data you send.
Maybe something like "[ID1]" & List.ListItems(1) ??
Then your client can parse the ID from the brackets. Just an idea.