steve_faulkner
MIS
I have been working on this for a bit here is what I have any help would be greatly apprieciated.
Sub submitFeedback3()
Application.ScreenUpdating = False
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = True
IE.Navigate "
Application.StatusBar = "Submitting"
' Wait while IE loading...
While IE.Busy
DoEvents
Wend
' **********************************************************************
IE.Document.All("fname").Value = ThisWorkbook.Sheets("Leads").Range("a1:a1000")
IE.Document.All("email").Value = ThisWorkbook.Sheets("Leads").Range("b1:b1000")
IE.Document.getElementById onclick = "sendForm"
'**********************************************************************
Application.StatusBar = "Form Submitted"
IE.Quit
Set IE = Nothing
Application.ScreenUpdating = True
End Sub
Private Sub delay(seconds As Long)
Dim endTime As Date
endTime = DateAdd("s", seconds, Now())
Do While Now() < endTime
DoEvents
Loop
End Sub
Sub submitFeedback3()
Application.ScreenUpdating = False
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = True
IE.Navigate "
Application.StatusBar = "Submitting"
' Wait while IE loading...
While IE.Busy
DoEvents
Wend
' **********************************************************************
IE.Document.All("fname").Value = ThisWorkbook.Sheets("Leads").Range("a1:a1000")
IE.Document.All("email").Value = ThisWorkbook.Sheets("Leads").Range("b1:b1000")
IE.Document.getElementById onclick = "sendForm"
'**********************************************************************
Application.StatusBar = "Form Submitted"
IE.Quit
Set IE = Nothing
Application.ScreenUpdating = True
End Sub
Private Sub delay(seconds As Long)
Dim endTime As Date
endTime = DateAdd("s", seconds, Now())
Do While Now() < endTime
DoEvents
Loop
End Sub