Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. private void button1_Click(object sender, EventArgs e)
  2. {
  3.  
  4.  
  5.  
  6. listBox1.Items.Add("You " + DateTime.Now.ToString() + " > " + textBox1.Text);
  7.  
  8. Send();
  9.  
  10. }
  11.  
  12. public static string Send()
  13. {
  14.  
  15. Form1 f1 = new Form1();
  16. String conv = f1.textBox1.Text;
  17. String respo = "Send|" + conv;
  18. sendCommand(respo);
  19.  
  20. return respo;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement