Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
VB Little Help...
Hey, I dont really know that much VB but I am having a little problem….
As far as i know this is correct
Private Sub txtUser_Change(Index As Integer)
txtUser.Text = "hi"
End Sub```
txtUser is an input field...
What I was trying to do is when someone typed anything in it. that it would change the text to hi
I have also tried things like...
```markupIf txtUser.Text = "bah" Then```
But gives me a compiling error when it gets to it...
```markupPrivate Sub cmdTest_Click()
If txtUser.Text = "test" Then
If txtPass.Text = "test" Then
txtCor.Text = "Username, Password correct."
Else
txtCor.Text = "Password is incorrect.
End If
Else
txtCor.Text = "Username Incorrect.."
End If
End Sub```
I am sure im doing this wrong. Just need a little help. Havnt searched google but just thought I would post it here also.
/// Edit
All I can find on google is what i am trying. Which is .Text