//---------------------------------------------------------------------------
        private void btBwd_Click(object sender, RoutedEventArgs e)
        {
            if (SEQ._bRun || SEQ._bAuto)
            {
                UserFunction.fn_UserMsg("Can't Work while RUN or Auto");
                return;
            }
            //
            EN_ACTR_LIST acList = (EN_ACTR_LIST)m_nSelIndex;

            ACTR.MoveCyl(acList, ccBwd);
        }
Example #2
0
 //---------------------------------------------------------------------------
 public bool MoveCyl(EN_ACTR_LIST aNum, int Act)
 {
     return(MoveCyl((int)aNum, Act));
 }