Exemple #1
0
        static void Main(params String[] args)
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            ReportMakerMain main   = new ReportMakerMain();
            ReportHelper    helper = new ReportHelper(main);

            helper.SetArgs(args);
            Application.Run(helper);
        }
Exemple #2
0
 public ReportHelper(ReportMakerMain main)
 {
     InitializeComponent();
     _main      = main;
     this.Load += new EventHandler(ReportHelper_Load);
 }