Ejemplo n.º 1
0
 private void SMClient_Load(object sender, EventArgs e)
 {
     Client          = new SMTcpClient();
     Client.Receive += Client_Receive;
     try{
         Client.Start();
     }
     catch (Exception ex) {
         MessageBox.Show(ex.Message);
     }
     wb_Msg.Url = new Uri(System.AppDomain.CurrentDomain.BaseDirectory + "Message.html");
 }
Ejemplo n.º 2
0
 private void SMClient_Load(object sender, EventArgs e)
 {
     Client          = new SMTcpClient();
     Client.Receive += Client_Receive;
     Client.Start();
 }