Is there another way? I also have the "@" symbol in my login ... does this present another problem? And btw, when you go to the secured site, preceding the URL is "https://". How does that differ from the regular "http://" when one is trying to login to get a web query to update? It also seems that Excel doesn't recognize the cookies after you have logged in through IE, because I am still getting the "web query returned no data" error message after logging in manually and through script (see below). Thank you for your help.
Sub LoginMe()
Dim appIE As Variant
Set appIE = CreateObject("InternetExplorer.Application")
appIE.Visible = True
While appIE.busy
DoEvents
Wend
appIE.navigate "https://www.hedgefundresearch.com/mon_register/index.php?fuse=login&1098991088"
Application.Wait Now + TimeValue("00:00:05")
AppActivate "HFRI Monthly Indices - Login"
SendKeys "{TAB 33}", True
SendKeys "superstar@excel.com", True
SendKeys "{TAB}", True
SendKeys "holla", True
SendKeys "{ENTER}", True
End Sub