Binary_Demon
New member
- Joined
- May 23, 2007
- Messages
- 2
- Programming Experience
- Beginner
I'm trying to have a text box read certain sites and display the user name without having to type in the site name exactly as it is in code.
I'm making this so I won't forget my user name and passwords to sites. Any help would be appreciated.
Thanks
VB.NET:
Dim Paypal As String = "Paypal"
If TextBox.Text = PayPal Then
Username.Text = "Your Paypal Email Address"
Password.Text = "Your Paypal password"
else
MessageBox.Show("Type A Different Site", "Error")
End If
I'm making this so I won't forget my user name and passwords to sites. Any help would be appreciated.
Thanks