Example #1
0
 public clientConnectForm(ChatClientForm f1, ClientProg c)
 {
     client = c;
     form = f1;
     InitializeComponent();
 }
Example #2
0
 private void connectButtonClick(object sender, EventArgs e)
 {
     client = new ClientProg(this);
     new clientConnectForm(this, client).Show();
 }