Everything changed. Clever commit message TBA

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@952 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2007-02-06 00:08:51 +00:00
parent 5c9c96c9c2
commit f8534129a1
17 changed files with 868 additions and 1043 deletions

View File

@@ -51,15 +51,18 @@ namespace AnimationSample
private void btnLogin_Click(object sender, EventArgs e)
{
// Login
if (!client.Network.Login(txtFirst.Text, txtLast.Text, txtPassword.Text, "animationsample", "jessemalthus@gmail.com"))
if (!client.Network.Login(txtFirst.Text, txtLast.Text, txtPassword.Text, "animationsample",
"jessemalthus@gmail.com"))
{
// Login failed
MessageBox.Show("We're sorry, but login failed. Error: \n " + client.Network.LoginError);
MessageBox.Show("We're sorry, but login failed. Error: " + Environment.NewLine +
client.Network.LoginError);
}
else
{
MessageBox.Show("Login succeded. You're at " + client.Self.Position + " on " + client.Network.CurrentSim.Region.Name);
MessageBox.Show("Login succeded. You're at " + client.Self.Position + " on " +
client.Network.CurrentSim.ToString());
}
}
}