Example #1
0
        private void WorkerThread_DoWork(object sender, DoWorkEventArgs e)
        {
            //create a new msi class and do the work!
            CwMsiClass msi = new CwMsiClass();

            try
            {
                msi.Start(workerThread, pbar.Step, e);
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }
Example #2
0
        private void WorkerThread_DoWork(object sender, DoWorkEventArgs e)
        {
            //create a new msi class and do the work!
            CwMsiClass msi = new CwMsiClass();

            try
            {
                msi.Start(workerThread, pbar.Step, e);
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }