senpost
3/20/2011 - 12:13 AM

;Auto type Master Password by sending AutoType command to KeePass

;Auto type Master Password by sending AutoType command to KeePass

;Auto type Master Password by sending AutoType command to KeePass

;Call method CheckPassword every 2 second
SetTimer, CheckPassword, 2000

CheckPassword:
{
	IfWinExist, Password Required
	   {
			IfWinExist Open Database - Senthil.kdbx
				return						
			Sleep 100
			WinActivate, Password Required, 
			IfWinActive, Password Required
			{
				Send !^a
			}
		}
	return
}