How do I access components from a module.

e.g.

I have Form1 with that uses AxInet1 component.

In a module I want to access that component. In VB6 all you did was:

With Form1.Inet1
.cancel
.Protocol = icFTP
.URL = "myURL.net"
.UserName = "username"
.Password = "password"
End With


The FORM1.INet1 doesn't exist in .NET so how do get it?

Thanks for your help!