Exemple #1
0
 /// <summary>
 /// When rhe submit button on the connect form is pressed...
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void btnSubmit_Click(object sender, EventArgs e)
 {
     ipAddress = this.txtBoxIPAddress.Text;
     userName  = this.txtBoxUserName.Text;
     client.ConnectToServer(ipAddress, userName);
     this.Hide();
     new ChatForm(client).Show();
 }