I want to pass objects over the network.. Any examples or recommendations on this.
Printable View
I want to pass objects over the network.. Any examples or recommendations on this.
Don't do it.
VB objects are not marshalled in their entirety. You will need to serialise the information that the object contains, send it over the network, and then recreate the object.
Otherwise, all you get is a reference to the object.
(ADO provides custom marshalling, so this is generally OK - sort of)