Exemple #1
0
 private void Button_Click_1(object sender, RoutedEventArgs e)
 {
     Automation at = new Automation();
     at.HideZDWindow();
 }
Exemple #2
0
        private void bgWorkerSOM_DoWork(object sender, DoWorkEventArgs e)
        {
            BackgroundWorker worker = sender as BackgroundWorker;
            Automation ae = new Automation();

            e.Result = ae.EnterOrders((IEnumerable<OpenXMLReader.Order>)e.Argument, LineCount, EDIEnabled, branch, worker, e);
        }
Exemple #3
0
 private void btnStartZD_Click(object sender, RoutedEventArgs e)
 {
     Automation at = new Automation();
     at.StartZD(txtBranch.Text, txtAcuthinPath.Text, txtUser.Text);
 }
Exemple #4
0
        private void bgWorkerEDI_DoWork(object sender, DoWorkEventArgs e)
        {
            BackgroundWorker worker = sender as BackgroundWorker;
            Automation ae = new Automation();

            e.Result = ae.ConvertEDI(custRange, worker, e);
        }