Ejemplo n.º 1
0
        private void lbrisk_Click(object sender, EventArgs e)
        {
            AllPatients ob = new AllPatients("SELECT * FROM HighRiskPatients  ORDER BY Name", "High Risk Patients");

            ob.ShowDialog();
        }
Ejemplo n.º 2
0
        private void lbActive_Click(object sender, EventArgs e)
        {
            AllPatients ob = new AllPatients("SELECT * FROM PatientsRemark WHERE Flag=1 ORDER BY Name", "Active Patients");

            ob.ShowDialog();
        }
Ejemplo n.º 3
0
        private void lbQurantine_Click(object sender, EventArgs e)
        {
            AllPatients ob = new AllPatients("SELECT * FROM Patients WHERE CenterType='Quarantine Center' ORDER BY Name", "Quarantine Patients");

            ob.ShowDialog();
        }
Ejemplo n.º 4
0
        private void lbTotal_Click(object sender, EventArgs e)
        {
            AllPatients ob = new AllPatients("SELECT * FROM Patients ORDER BY Name", "All Patients");

            ob.ShowDialog();
        }