Пример #1
0
 private void doCmnd(Editor.Commands j)
 {
     if (j == Editor.Commands.exec)
     {
         label2.Text = control_.DoCmnd(j);
     }
     else
     {
         if (control_.St == ADT_Control_.State.Converted)
         {
             label1.Text = control_.DoCmnd(Editor.Commands.CLEAR);
         }
         label1.Text = control_.DoCmnd(j);
         label2.Text = "0";
     }
 }
Пример #2
0
 private void DoCmnd(Editor.Commands j)
 {
     if (j == Editor.Commands.EXECUTE)
     {
         label2.Text = ctl.DoCmnd(j);
     }
     else
     {
         if (ctl.St == Control_.State.Converted)
         {
             label1.Text = ctl.DoCmnd(Editor.Commands.CLEAR);
         }
         label1.Text = ctl.DoCmnd(j);
         label2.Text = "0";
     }
 }