why is this code so easy to hack? my friend told me if i do this to may app ppl can just find out whats the password or username very easy?

VB Code:
  1. Private Sub cmdlogin_Click()
  2. If txtusername.Text = "TestUser" And txtpassword.Text = "TestPassword" Then
  3. frmloged.Show
  4. Unload Me
  5. Else
  6. MsgBox "The UserName Or Password is not correct!", vbExclamation + vbOKOnly, "Error!!!"
  7. End If
  8. End Sub