by Steve Garman <news@[EMAIL PROTECTED]
>
Mar 6, 2008 at 09:44 AM
Ken.Lossman@[EMAIL PROTECTED]
wrote:
> Is there a way to send the contents of a listbox to another
> listbox
You can send the contents as a string. Something like:
dim s as String
s = fromListbox.cell(-1,-1)
//send s (might be a good use of EasyTCPSocket)
//at the far end
toListbox.cell(-1,-1) = s