B
bottom
Unregistered / Unconfirmed
GUEST, unregistred user!
这段代码只能截取98下的密码框的密码<br>procedure TForm1.Timer1Timer(Sender: TObject);<br>var<br>p:Tpoint;<br>hd:HWND;<br>l:integer;<br>bufchar;<br>begin<br>GetCursorPos(p);<br>hd:=WindowFromPoint(p);<br>l:=sendmessage(hd,WM_GETTEXTLENGTH,0,0);<br>getmem(buf,l+2);<br>sendmessage(hd,WM_GETTEXT,l+1,int64(buf));<br>edit1.Text :=strpas(buf);<br>freemem(buf);<br>end;<br>那么怎么截取“Nt核心操作系统的密码框的密码”和“IE中密码框的密码”呢?<br>