Hello,all,
Is it possible to upload files through HTTP protocol by using VBA (Access)?
Many thanks
carol
Is it possible to upload files through HTTP protocol by using VBA (Access)?
Many thanks
carol
'When using the Internet Transfer control, set the URL property before you set 'the Password and UserName properties. Currently, if you set the URL property 'last, the UserName and Password properties will be set to "". This code will 'work: Inet1.URL = "HTTP://www.myCompany.com" Inet1.Password = "I(3Lei#4" Inet1.UserName = "Jonne Smythe" Inet1.Protocol = icHTTP Inet1.OpenURL
Comment