Hi!

Having programmed primarily in VB6(3,4,5), moving to .Net has had it's challenges!

Specifically, in VB6 I use:

In a module:
Public Frm As Form

in Form1:
Set Frm = New Form2
Frm.Show
Frm.List1.Additem (what-ever)

The above works perfectly.

But in VB.Net 2005, how is this accomplished?

Can anyone point me the right direction?

Thanks!