Accessing FORM components from a module
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!
Yup ....gotta get used Classes in VB.NET
Yup Gotta get used to Classes in .NET....thanks that worked!
Ok I will read up on that.....why is it more reliable?
Is this a more reliable feature of .NET?