Exemplo n.º 1
0
        private void button4_Click(object sender, EventArgs e)
        {
            monitorPatient mp = new monitorPatient();

            mp.Show();
            this.Hide();
        }
        private void button2_Click(object sender, EventArgs e)
        {
            //open the form of monitoring the reading of a patient
            string         selected = this.patientNameCombo.GetItemText(this.patientNameCombo.SelectedItem);
            monitorPatient form     = new monitorPatient();

            form.Show();
            this.Hide();
        }