Пример #1
0
        private void ShowPossibleSSISSolution(DataRow dr)
        {
            SolutionFactory solFac   = new SolutionFactory();
            Solution        solution = solFac.FindSSISSolution(dr["message"].ToString(), dr["message_source_name"].ToString(), dr["execution_path"].ToString());

            if (solution != null)
            {
                SolutionForm solutionForm = new SolutionForm(solution.Problem, solution.SolutionQuery);
                solutionForm.Show();
            }
            else
            {
                MessageBox.Show("No solution found");
            }
        }
Пример #2
0
        private void ShowPossibleILSolution(DataRow dr)
        {
            SolutionFactory solFac   = new SolutionFactory();
            Solution        solution = solFac.FindILSolution(dr["Controletype"].ToString(), dr["Packagenaam"].ToString(), dr["opmerkingen"].ToString());

            if (solution != null)
            {
                SolutionForm solutionForm = new SolutionForm(solution.Problem, solution.SolutionQuery);
                solutionForm.Show();
            }
            else
            {
                MessageBox.Show("No solution found");
            }
        }