Exemple #1
0
 public UINulpunktsjustering(iOPVitalsBL mybl, UILogin UILogin)
 {
     InitializeComponent();
     currentBl = mybl;
     login     = UILogin;
     currentBl.LoadCalibrationConstant(); //henter den seneste kalibreringsfil og indlæser omregningskonstanten
 }
Exemple #2
0
        private UILogin login;                           //Loginformen

        public UIKalibrering(iOPVitalsBL myBl, UILogin UILogin)
        {
            InitializeComponent();
            this.currentBl = myBl;
            PointDeletet   = false;
            myBl.InitiateDaqFromBL(false); //initaliserer den version af daqen der ikke benytter concurrentque
            login = UILogin;
        }
Exemple #3
0
        private void AcceptButton_Click(object sender, EventArgs e)
        {
            godkendKalibrering = new UIGodkendKalibrering();
            var result = godkendKalibrering.ShowDialog();

            if (result == DialogResult.OK)
            {
                currentBl.SaveCalibration();
                this.Hide();
                login = new UILogin(currentBl);
                login.Show();
            }
            if (result == DialogResult.Cancel)
            {
            }
        }
 public UIKontrol(iOPVitalsBL mybl, UILogin UILogin)
 {
     this.currentBl = mybl;
     login          = UILogin;
     currentBl.AttachToMeanFilter(this);
     currentBl.AttachToCalcSys(this);
     currentBl.AttachToCalcDia(this);
     currentBl.AttachToMeanBloodPressure(this);
     currentBl.AttachToCalcPuls(this);
     InitializeComponent();
     monitorstartet = false;
     startpressed   = false;
     chart1.ChartAreas[0].AxisY.Maximum = 240;
     chart1.ChartAreas[0].AxisY.Minimum = 20;
     DefaultComments();
 }
 public UI_NulpunktsjusteringsFejl(iOPVitalsBL mybl, UILogin UILogin)
 {
     InitializeComponent();
     currentBl = mybl;
     login     = UILogin;
 }
Exemple #6
0
 public UICPR(iOPVitalsBL mybl, UILogin UILogin)
 {
     InitializeComponent();
     currentBl = mybl;
     login     = UILogin;
 }