Hi,
I am trying to automate uploading a weekly file to a secure file transfer .aspx site.
I have all fields completed except for the type="file" field which will not allow to be filled with VBA.
I have tried the following with no sucess:
Set FLE = appIE.Document.getElementsByName("FileUpload1")
FLE(0).Value = "C:\Weekly_File.xls"
My hope is that I might be able to enter this file name with a different type of coding. I downloaded iMacros for IE and the step it uses to load the file is this code:
TYPE=INPUT:FILE FORM=NAME:FormDefault ATTR=ID:FileUpload1 CONTENT=C:\Weekly_File.xls
Is there a way I could run this line of code from VBA?
Any help is populating this field is appreciated.
Thank you
Bookmarks