10-31-2011، 04:00 PM
سلام دوستان عزیز چطوری میشه فهمید الان تو چا سایتی هستیم؟
ممنون میشم راهنمایی کنید!
ممنون میشم راهنمایی کنید!
امتیاز موضوع:
Title: بدست آوردن urlموجود در مرورگر
حالت موضوعی |
'/coder : Mohammad Amin Mansouri
'Forum : www.parsicoders.com
Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
Private Declare Function GetForegroundWindow Lib "user32" () As Long
Private Declare Function GetWindowText Lib "user32" Alias "GetWindowTextA" (ByVal hwnd As Long, ByVal sWndTitle As String, ByVal cLen As Long) As Long
Private hForegroundWnd As Long
Private Sub Timer1_Timer()
Call AminLog
End Sub
Private Sub AminLog()
Dim win As Long
Dim Title As String * 1000
win = GetForegroundWindow()
hForegroundWnd = GetForegroundWindow()
GetWindowText hForegroundWnd, Title, 1000
Me.Caption = Title
If InStr(Title, "Internet Explorer") <> 0 Then
End
'Call Keylogger
End If
End Sub