I'm using the Twitterizer.TestApp and though im entering the correct
credentials i am getting it thrown to the catch?
anyone know why? is there something else i have to change in the
TestApp code i may have over looked?
Thanks in advance.
if
(Twitterizer.Framework.Twitter.VerifyCredentials(UserNameTextBox.Text,
PasswordTextBox.Text))
{
XMLConfiguration.Save(UserNameTextBox.Text,
PasswordTextBox.Text, Application.StartupPath);
((MainApp)Application.OpenForms["MainForm"]).UserName
= UserNameTextBox.Text;
((MainApp)Application.OpenForms["MainForm"]).Password
= PasswordTextBox.Text;
this.Hide();
}
else
{
MessageBox.Show("Invalid Credentials", "Uh Oh!",
MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}