Thank you, I sure appreciate the reply. I recoded my assignment using a loop function - this is not working either, I end up with one X, and every vowel is supposed to show up as an X; instead of just the one X. I have tried changing my code so many times, and I cannot get this to work...

I have included my revised code (again, any help would be appreciated):
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles newPasswordButton.Click
Dim origPass As String
Dim num As String
origPass = origPasswordTextBox.Text.ToUpper
num = origPass
Do While num.Length = (5)
MessageBox.Show("Password is five characters.", _
"password", MessageBoxButtons.OK, _
MessageBoxIcon.Information)
If num.Contains("A") Then
num = ("X")
End If
If num.Contains("E") Then
num = ("X")
End If
If num.Contains("I") Then
num = ("X")
End If
If num.Contains("O") Then
num = ("X")
End If
If num.Contains("U") Then
num = ("X")
End If
num = newPasswordLabel.Text
Loop
End Sub