Originally posted by salvelinus Can't you just refer to the other form like in VB6? Read the listview items out of one form (form2.lvMembership. etc) to set the items in the listview on form 3.
VB6 is nothing like VB.Net, it has the same syntax (names of commands) but other then that its very different.
I VB6 you can call another form simply by saying
Form3.WhatEver
In VB.Net you have to ask the specific instance. You must have a reference to this instance. Ive included a small example of this, with 2 different ways of doing it.
Id suggest looking up how an OOP language works if you are new to .Net, its one of the most important aspects, there are many example about.
Last edited by Grimfort; Jan 21st, 2004 at 12:31 PM.