Supercool
how do I send data back and forth
namespace cool_admin_tool
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string ip = richTextBox1.Text;
string port = richTextBox2.Text;
//I need to connnect the stuff and open a new form if the connection is successful to send data
}
}
}
13 replies