N
nisgore
Does anyone know how to make this code run???
'[CODE SECTION]==========================================
Sub waitForPageLoad()
Dim IExp As InternetExplorer
Set IExp = CreateObject("InternetExplorer.Application")
set IExp.Visible = True
IExp.navigate "http://finance.yahoo.com/" 'Reload issue only happens on
sites
'with post data, tables,
etc...
IExp.Stop
IExp.Refresh
'This is the problem here...
IExp.SendKeys "{Enter}" 'Run-time error "438": Object doesn't
'support this property or method.
End Sub
'[END CODE]===============================================
'[CODE SECTION]==========================================
Sub waitForPageLoad()
Dim IExp As InternetExplorer
Set IExp = CreateObject("InternetExplorer.Application")
set IExp.Visible = True
IExp.navigate "http://finance.yahoo.com/" 'Reload issue only happens on
sites
'with post data, tables,
etc...
IExp.Stop
IExp.Refresh
'This is the problem here...
IExp.SendKeys "{Enter}" 'Run-time error "438": Object doesn't
'support this property or method.
End Sub
'[END CODE]===============================================