Im haveing a problem getting this to work. VB doesn't except the inet variable as the name of an object
Dim inet As Object
Dim y As Variant
Dim x As Integer
x = 1
inet = "inet" & x
'this is just sample code to show what in trying to do.
inet.Protocol = icFTP
inet.AccessType = icNamedProxy
inet.URL = .Fields("sourceftp")
inet.RemotePort = .Fields("sourceftpport")
inet.UserName = .Fields("sourceusername")
inet.Password = .Fields("sourcepassword")
