Hi
Today im going to teach you a easy way how to show or hide your password when you are setting up the keylogger or stealer.
This function is used most on keyloggers because keyloggers they send the password to gmail and other email services.
Right lets start on it.
Open your project and then go to tools and drag a checkbox and rename it to whatever you want it, i would rename it to Hide.
On the code you see textbox2.text because textbox1.text is for the email and the textbox2.text is for the password.
Then Double click on the checkbox and put this code on it:
[vb]
If CheckBox1.Checked = False Then
TextBox2.PasswordChar = "*" ' you can put any thing - *&^%$"! whatever you want.
Else
TextBox2.PasswordChar = ""
End If
[/vb]
or you can also use this function:
[vb]
Private Sub CheckBox1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.Click
If CheckBox1.Checked = False Then
TextBox2.PasswordChar = "*"
Else
TextBox2.PasswordChar = ""
End If
End Sub
[/vb]
Or
[vb]
If CheckBox1.Checked = False Then
TextBox2.UseSystemPasswordChar = false
Else
TextBox2.UseSystemPasswordChar = true
End If
[/vb]
Or
[vb]
TextBox2.UseSystemPasswordChar = CheckBox1.Checked
[/vb]
If you got any problem with the source that i have gave here please contact me via pm and i will reply as soon as possible.
Thank you
Today im going to teach you a easy way how to show or hide your password when you are setting up the keylogger or stealer.
This function is used most on keyloggers because keyloggers they send the password to gmail and other email services.
Right lets start on it.
Open your project and then go to tools and drag a checkbox and rename it to whatever you want it, i would rename it to Hide.
On the code you see textbox2.text because textbox1.text is for the email and the textbox2.text is for the password.
Then Double click on the checkbox and put this code on it:
[vb]
If CheckBox1.Checked = False Then
TextBox2.PasswordChar = "*" ' you can put any thing - *&^%$"! whatever you want.
Else
TextBox2.PasswordChar = ""
End If
[/vb]
or you can also use this function:
[vb]
Private Sub CheckBox1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.Click
If CheckBox1.Checked = False Then
TextBox2.PasswordChar = "*"
Else
TextBox2.PasswordChar = ""
End If
End Sub
[/vb]
Or
[vb]
If CheckBox1.Checked = False Then
TextBox2.UseSystemPasswordChar = false
Else
TextBox2.UseSystemPasswordChar = true
End If
[/vb]
Or
[vb]
TextBox2.UseSystemPasswordChar = CheckBox1.Checked
[/vb]
If you got any problem with the source that i have gave here please contact me via pm and i will reply as soon as possible.
Thank you