I am having trouble with Outlook 02 and Vista. I am aware of the conflict with them. I also, while searching your site, came across a script to go around it. After installing Autohotkey and running the script that I came across I am still having problems. The program, Outlook, opens but the script fills out the username with the password data and leaves the password space blank. I am inclosing a copy of the script and would appreciate anyones help on the subject. Let it be known that I am new to writting code so I really don't have to much of a clue as to what I am looking for.
IfWinExist, Inbox - Microsoft Outlook,
{
WinActivate, Inbox - Microsoft Outlook,
ExitApp
}
Run OUTLOOK.EXE
Sleep, 10000
IfWinNotActive, Enter Network Password, , WinActivate, Enter Network Password,
WinWaitActive, Enter Network Password,
Gosub, SendPasword
WinWait, Inbox - Microsoft Outlook,
IfWinNotActive, Inbox - Microsoft Outlook, , WinActivate, Inbox - Microsoft Outlook,
WinWaitActive, Inbox - Microsoft Outlook,
Send, {F9}
ExitApp
SendPasword:
ControlGetText, UserName, RichEdit20A1
If UserName = xxxxx
Send, xxxxxx{ENTER}
sleep, 1000
Return
Thank you, CM35