NewYorkFashionToGo
Programmer
I am about 90% done with what I want to do with this application and I dont know how to complete it so it completely works. The code below is from Excel and into my account to a new window where I then need to fill in My email address and then the second fill in box is to browse my hard drive to submit a file for upload. And then click submit. I could use some assistance. I am just learning how to interact applications with one another. This completely works up until where I need to fill it in.
Thanks in Advance
Chris
Sub LoginMe()
Dim appIE As Object
Set appIE = CreateObject("InternetExplorer.Application")
appIE.Visible = True
While appIE.busy
DoEvents
Wend
appIE.navigate "
While appIE.ReadyState <> READYSTATE_COMPLETE
DoEvents
Wend
SendKeys "YOURUSERNAME", True
SendKeys "{TAB}", True
SendKeys "YOURPASSWORD", True
SendKeys "{TAB}", True
SendKeys "{ENTER}", True
End Sub
Thanks in Advance
Chris
Sub LoginMe()
Dim appIE As Object
Set appIE = CreateObject("InternetExplorer.Application")
appIE.Visible = True
While appIE.busy
DoEvents
Wend
appIE.navigate "
While appIE.ReadyState <> READYSTATE_COMPLETE
DoEvents
Wend
SendKeys "YOURUSERNAME", True
SendKeys "{TAB}", True
SendKeys "YOURPASSWORD", True
SendKeys "{TAB}", True
SendKeys "{ENTER}", True
End Sub