public TestDialog(SelectTest testform, ClientApplicatie client)
 {
     InitializeComponent();
     this.testform = testform;
     this.clientapp = client;
 }
 private void buttonStartTest_Click(object sender, EventArgs e)
 {
     Form temp = new SelectTest(MainClient.ComPort, this);
     temp.Show();
 }
Пример #3
0
        private void buttonStartTest_Click(object sender, EventArgs e)
        {
            Form temp = new SelectTest(MainClient.ComPort, this);

            temp.Show();
        }
 public TestDialog(SelectTest testform, ClientApplicatie client)
 {
     InitializeComponent();
     this.testform  = testform;
     this.clientapp = client;
 }