public bool VerifyExistingUser(string username) { Cp_user tstUser = UserHand.SelectUser(username); if (tstUser == null) { return(false); } else { return(true); } }