Exemplo n.º 1
0
 protected void OnInstrumentErrorUpdate(InstrumentMessageEventArgs e)
 {
     if (InstrumentErrorUpdate != null)
     {
         InstrumentErrorUpdate(this, e);
     }
 }
Exemplo n.º 2
0
        protected override void updateErrors()
        {
            //throw new NotImplementedException();
            base.updateErrors();
            InstrumentMessageEventArgs evt = new InstrumentMessageEventArgs();

            evt.message = "Reading # " + debugCnt.ToString();
            OnInstrumentErrorUpdate(evt);
            debugCnt++;
        }
Exemplo n.º 3
0
 private void psuErrorUpdate(object sender, InstrumentMessageEventArgs e)
 {
     updateField(lblErrorMessage, e.message);
 }
 void ke2700Instr_InstrumentErrorUpdate(object sender, InstrumentMessageEventArgs e)
 {
 }