I love MrExcel. But I tire of hitting that refresh button, or F5. So I have written a little script that allows me to sit back and laze about while I wait for feedback.
If anyone comes up with some good changes, I'd love to see them.
Rich (BB code):
Sub MrExcel_Refresh()
On Error GoTo 10
Dim IE As Object
Set IE = CreateObject("Internetexplorer.application")
With IE
.navigate "http://www.mrexcel.com/forum/forumdisplay.php?f=10"
.Visible = True
End With
Do
Application.Wait (Now + TimeValue("0:00:10"))
IE.Refresh
Loop
10:
MsgBox "Program ended"
End Sub
If anyone comes up with some good changes, I'd love to see them.