////////////////////////////////////////////////////////////////////
        // Print Example
        ////////////////////////////////////////////////////////////////////

        private void OnTableExample(object sender, EventArgs e)
        {
            ExceptionReport.Wrap("PDF Document creation falied", delegate
            {
                TableExample TE = new TableExample();
                TE.Test(DebugCheckBox.Checked, "TableExample.pdf");
                return;
            });
        }
        ////////////////////////////////////////////////////////////////////
        // Chart Example
        ////////////////////////////////////////////////////////////////////

        private void OnChartExample(object sender, EventArgs e)
        {
            ExceptionReport.Wrap("PDF Document creation falied", delegate
            {
                ChartExample CE = new ChartExample();
                CE.Test(DebugCheckBox.Checked, "ChartExample.pdf");
                return;
            });
        }
        ////////////////////////////////////////////////////////////////////
        // Print Example
        ////////////////////////////////////////////////////////////////////

        private void OnPrintExample(object sender, EventArgs e)
        {
            ExceptionReport.Wrap("PDF Document creation falied", delegate
            {
                PrintExample PE = new PrintExample();
                PE.Test(DebugCheckBox.Checked, "PrintExample.pdf");
                //			ProgramTestExample PTE = new ProgramTestExample();
                //			PTE.Test(DebugCheckBox.Checked, "ProgramTestExample.pdf");
                return;
            });
        }
        ////////////////////////////////////////////////////////////////////
        // Other example
        ////////////////////////////////////////////////////////////////////

        private void OnOtherExample
        (
            object sender,
            EventArgs e
        )
        {
            ExceptionReport.Wrap("PDF Document creation falied", delegate {
                OtherExample OE = new OtherExample();
                OE.Test(DebugCheckBox.Checked, "OtherExample.pdf");
                return;
            });
        }