On page 651 Try it out there's an instruction right at number 1:
Add a new C# Windows Forms Application to the [ASP.NET] solution ...
But how?
Oops i just found out how: Add Item, New Project - C# Windows Form...
Sorry... this form you can fill in alright, but when you press 'Reverse Message' it crashes on its own non-error. This is weird, or i'm missing sth.
Code:
void client_ReverseStringCompleted(object sender, WebServicesSample.ReverseStringCompletedEventArgs e)
{
if (e.Error != null)
{
textBox2.Text = e.Result;
}
else
{
MessageBox.Show(e.Error.Message);
}
}