Beispiel #1
0
        private void gemKnap_Click(object sender, EventArgs e)
        {
            string cpr = CPRTextBox.Text;

            if (OpretPatientController.validerCPR(cpr) == false)
            {
                MessageBox.Show("CPR-nummeret er ugyldigt");
                CPRTextBox.Clear();
            }
            else
            {
                switch (PreviewController.indlæsCPR(cpr))
                {
                case 0:
                {
                    MessageBox.Show("Datasæt gemt");
                    lukCPRVindue();
                    frm.lukPreviewVindue();
                    break;
                }

                case 1:
                {
                    MessageBox.Show("Datasæt ikke gemt");
                    break;
                }

                case 2:
                {
                    OpretPatientVindue = new opret_ny_patient(null, this);
                    OpretPatientVindue.åbenOpretNyPatientVindue(CPRTextBox.Text);
                    break;
                }
                }
            }
        }
Beispiel #2
0
        private void opretNyPatientKnap_Click(object sender, EventArgs e)
        {
            opret_ny_patient opretnypatient = new opret_ny_patient(this, null);

            opretnypatient.åbenOpretNyPatientVindue(null);
        }