Beispiel #1
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.Reporting.InstanceReportSource instanceReportSource1 = new Telerik.Reporting.InstanceReportSource();
     this.reportViewer1 = new Telerik.ReportViewer.WinForms.ReportViewer();
     this.product1      = new Analyze.Reports.rptProduct();
     ((System.ComponentModel.ISupportInitialize)(this.product1)).BeginInit();
     this.SuspendLayout();
     //
     // reportViewer1
     //
     this.reportViewer1.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.reportViewer1.Location          = new System.Drawing.Point(0, 0);
     this.reportViewer1.Name              = "reportViewer1";
     instanceReportSource1.ReportDocument = this.product1;
     this.reportViewer1.ReportSource      = instanceReportSource1;
     this.reportViewer1.Size              = new System.Drawing.Size(834, 352);
     this.reportViewer1.TabIndex          = 0;
     //
     // product1
     //
     this.product1.Name = "Product";
     //
     // frmViewReport
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(834, 352);
     this.Controls.Add(this.reportViewer1);
     this.Name  = "frmViewReport";
     this.Text  = "View Report";
     this.Load += new System.EventHandler(this.ViewReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.product1)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #2
0
    protected void RaporuOlustur()
    {
        //Create new CultureInfo
        var cultureInfo = new System.Globalization.CultureInfo("tr-TR");

        // Set the language for static text (i.e. column headings, titles)
        System.Threading.Thread.CurrentThread.CurrentUICulture = cultureInfo;

        // Set the language for dynamic text (i.e. date, time, money)
        System.Threading.Thread.CurrentThread.CurrentCulture = cultureInfo;



        EFDal ed = new EFDal();
        var   instanceReportSource = new Telerik.Reporting.InstanceReportSource();

        instanceReportSource.ReportDocument = new KalibrasyonRaporlari.PersGetiriAnaliz();
        this.rptPersonelGetiri.ReportSource = instanceReportSource;
        Telerik.Reporting.Report report = (Telerik.Reporting.Report)instanceReportSource.ReportDocument;



        report.ReportParameters["BolgeKodu"].Value = Convert.ToInt32(Session["dshBolgeKodu"].ToString());//ed.kal_BolgeKoduDon(Context.User.Identity.Name);
        report.ReportParameters["BasTar"].Value    = DateTime.Parse(Session["dshBasTar"].ToString());
        report.ReportParameters["SonTar"].Value    = DateTime.Parse(Session["dshSonTar"].ToString());
        report.ReportParameters["Personel"].Value  = Context.User.Identity.Name;

        Telerik.Reporting.TextBox txtReportHeader = report.Items.Find("txtReportHeader", true)[0] as Telerik.Reporting.TextBox;
        txtReportHeader.Value = report.ReportParameters["BasTar"].Value.ToString().Replace(" 00:00:00", "") + " ve " + report.ReportParameters["SonTar"].Value.ToString().Replace(" 00:00:00", "") +
                                " tarihleri arasında gerçekleştirilen kalibrasyonları  aşağıda görebilirsiniz";
    }
        public void Report()
        {
            var ord = this.order;

            if (ord is SupplyOrder)
            {
                ReportProcessor reportProcessor = new ReportProcessor();
                Telerik.Reporting.InstanceReportSource instanceReportSource = new Telerik.Reporting.InstanceReportSource();
                instanceReportSource.ReportDocument = new OrderReportCopy(this as SupplyOrderViewModel);
                RenderingResult result   = reportProcessor.RenderReport("XLS", instanceReportSource, null);
                var             fileName = Path.GetTempFileName() + ".XLS";
                var             file     = new FileInfo(fileName);
                if (file.Exists)
                {
                    try
                    {
                        file.Delete();
                    }
                    catch (IOException ex)
                    {
                        System.Windows.Forms.MessageBox.Show("Please close previous report.");
                    }
                }

                using (FileStream fs = new FileStream(fileName, FileMode.Create))
                {
                    fs.Write(result.DocumentBytes, 0, result.DocumentBytes.Length);
                }

                System.Diagnostics.Process.Start(fileName);
            }
        }
Beispiel #4
0
    public void BindDataset(string Category)
    {
        var    objectDataSource  = new Telerik.Reporting.ObjectDataSource();
        string selectCommandText = "";
        //Getting Datasouce
        string connectionString = ConfigurationManager.ConnectionStrings["Reports.Properties.Settings.UFCWEntire"].ConnectionString;

        //const string connectionString =
        //    "Data Source=.;Initial Catalog=UFCW_Entire;Integrated Security=True";

        if (Category != "All")
        {
            selectCommandText = "SELECT (select Name from dbo.Benefits where Name='" + Category + "') as Benefits,(select COUNT(*) as Total from Members_Benefits where BenefitID in (select RecordID from Benefits where Name='" + Category + "')) as MembersCount,((select COUNT(*) as Total from Members_Benefits where BenefitID in (select RecordID from Benefits where Name='" + Category + "')) + (select COUNT(*) as Total from Members_Benefits a inner join Members_Dependence b on a.ReferenceID=b.ReferenceID where BenefitID in (select RecordID from Benefits where Name='" + Category + "'))) as MemDepCount";
        }

        SqlDataAdapter adapter = new SqlDataAdapter(selectCommandText, connectionString);

        DataTable dt = new DataTable();

        adapter.Fill(dt);

        objectDataSource.DataSource = dt;



        MagnaCareReport MagnaReport = new MagnaCareReport();

        MagnaReport.DataSource = objectDataSource;

        Telerik.Reporting.InstanceReportSource reportSource = new Telerik.Reporting.InstanceReportSource();
        reportSource.ReportDocument = MagnaReport;


        ReportViewer1.ReportSource = reportSource;
    }
        private async Task GetReportResult()
        {
            DateTime startDate = dateStart.SelectedDate.Value;
            DateTime endDate   = dateEnd.SelectedDate.Value;
            int      teacherId = (cmbTeacher.SelectedItem as TeacherModel).Id;
            IAsyncProxy <ITeacherService> _teacherAyncProxy = await Task.Run(() => ServiceHelper.GetTeacherService());

            IList <TeacherClassRecordDetailModel> tcrdml = await _teacherAyncProxy.CallAsync(c => c.FindTeacherClassRecordDetailByDate(startDate, endDate, teacherId));

            Telerik.Reporting.ObjectDataSource objectDataSource = new Telerik.Reporting.ObjectDataSource();
            objectDataSource.DataSource = tcrdml; // GetData returns a DataTable

            //Creating a new report
            Telerik.Reporting.Report report1 = new TeacherClassRecordDetailReport();
            report1.ReportParameters["StartDate"].Value = startDate.ToString("yyyy-MM-dd");
            report1.ReportParameters["EndDate"].Value   = endDate.ToString("yyyy-MM-dd");
            report1.ReportParameters["Teacher"].Value   = cmbTeacher.Text;

            // Assigning the ObjectDataSource component to the DataSource property of the report.
            report1.DataSource = objectDataSource;

            // Use the InstanceReportSource to pass the report to the viewer for displaying
            Telerik.Reporting.InstanceReportSource reportSource = new Telerik.Reporting.InstanceReportSource();
            reportSource.ReportDocument = report1;

            // Assigning the report to the report viewer.
            ReportViewer1.ReportSource = reportSource;

            // Calling the RefreshReport method in case this is a WinForms application.
            ReportViewer1.RefreshReport();
        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.Reporting.InstanceReportSource instanceReportSource1 = new Telerik.Reporting.InstanceReportSource();
            this.reportViewer1 = new Telerik.ReportViewer.WinForms.ReportViewer();
            this.roziskT1 = new OtherBase.RoziskT();
            ((System.ComponentModel.ISupportInitialize)(this.roziskT1)).BeginInit();
            this.SuspendLayout();
            // 
            // reportViewer1
            // 
            this.reportViewer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.reportViewer1.Location = new System.Drawing.Point(0, 0);
            this.reportViewer1.Name = "reportViewer1";
            instanceReportSource1.ReportDocument = this.roziskT1;
            this.reportViewer1.ReportSource = instanceReportSource1;
            this.reportViewer1.Size = new System.Drawing.Size(724, 262);
            this.reportViewer1.TabIndex = 0;
            // 
            // roziskT1
            // 
            this.roziskT1.Name = "Report1";
            // 
            // OtchetRoziskTekst
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(724, 262);
            this.Controls.Add(this.reportViewer1);
            this.Name = "OtchetRoziskTekst";
            this.Text = "OtchetRoziskTekst";
            this.Load += new System.EventHandler(this.OtchetRoziskTekst_Load);
            ((System.ComponentModel.ISupportInitialize)(this.roziskT1)).EndInit();
            this.ResumeLayout(false);

        }
        protected void ModuleNameDDL_SelectedIndexChanged(object sender, EventArgs e)
        {
            ProductionCycle SelectedProdID = new ProductionCycle();
            try
            {
                HatcheryEntities db = new HatcheryEntities();
                var ProdCycleQuery = from ProdCycle in db.ProductionCycles where ProdCycle.ModuleName == ModuleNameDDL.SelectedValue && ProdCycle.isInProduction == true select ProdCycle;

                SelectedProdID = ProdCycleQuery.SingleOrDefault();
            }
            catch (Exception)
            {
            }

            try
            {

                var report = new Telerik.Reporting.InstanceReportSource();
                report.ReportDocument = new HatcheryReportLibrary.CompletePLReport();
                report.Parameters.Add("ProductionCycleIDParameter", SelectedProdID.ProductionCycleID);
                this.ReportViewer1.ReportSource = report;

            }
            catch (Exception)
            {

            }
        }
    protected void RaporuOlustur()
    {
        //Create new CultureInfo
        var cultureInfo = new System.Globalization.CultureInfo("tr-TR");

        // Set the language for static text (i.e. column headings, titles)
        System.Threading.Thread.CurrentThread.CurrentUICulture = cultureInfo;

        // Set the language for dynamic text (i.e. date, time, money)
        System.Threading.Thread.CurrentThread.CurrentCulture = cultureInfo;

        EFDal ed = new EFDal();
        var instanceReportSource = new Telerik.Reporting.InstanceReportSource();
        instanceReportSource.ReportDocument = new KalibrasyonRaporlari.Laboratuvarlar();
        this.rptLaboratuvarlar.ReportSource = instanceReportSource;
        Telerik.Reporting.Report report = (Telerik.Reporting.Report)instanceReportSource.ReportDocument;

        /*
        report.ReportParameters["BolgeKodu"].Value = Convert.ToInt32(Session["dshBolgeKodu"].ToString());//ed.kal_BolgeKoduDon(Context.User.Identity.Name);
        report.ReportParameters["BasTar"].Value = DateTime.Parse("2015-01-01");
        report.ReportParameters["SonTar"].Value = DateTime.Parse("2015-06-01");
        //report.ReportParameters["Personel"].Value = Context.User.Identity.Name;
        */

        report.ReportParameters["BolgeKodu"].Value = Convert.ToInt32(Session["dshBolgeKodu"].ToString());//ed.kal_BolgeKoduDon(Context.User.Identity.Name);
        report.ReportParameters["BasTar"].Value = DateTime.Parse(Session["dshBasTar"].ToString());
        report.ReportParameters["SonTar"].Value = DateTime.Parse(Session["dshSonTar"].ToString());

        Telerik.Reporting.TextBox txtAciklama = report.Items.Find("txtAciklama", true)[0] as Telerik.Reporting.TextBox;
        txtAciklama.Value = ed.BolgeKodundanBolgeAdiniDon(Convert.ToInt32(report.ReportParameters["BolgeKodu"].Value.ToString())) + " bölgesinde, " + report.ReportParameters["BasTar"].Value.ToString().Replace(" 00:00:00", "") + " ve " + report.ReportParameters["SonTar"].Value.ToString().Replace(" 00:00:00", "") +
                            " tarihleri arasında bölgelere ait özet durumu  aşağıda görebilirsiniz";
    }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.Reporting.InstanceReportSource instanceReportSource1 = new Telerik.Reporting.InstanceReportSource();
            this.reportViewer1 = new Telerik.ReportViewer.WinForms.ReportViewer();
            this.prizivnikReport1 = new OtherBase.PrizivnikReport();
            ((System.ComponentModel.ISupportInitialize)(this.prizivnikReport1)).BeginInit();
            this.SuspendLayout();
            // 
            // reportViewer1
            // 
            this.reportViewer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.reportViewer1.Location = new System.Drawing.Point(0, 0);
            this.reportViewer1.Name = "reportViewer1";
            instanceReportSource1.ReportDocument = this.prizivnikReport1;
            this.reportViewer1.ReportSource = instanceReportSource1;
            this.reportViewer1.Size = new System.Drawing.Size(753, 262);
            this.reportViewer1.TabIndex = 0;
            // 
            // prizivnikReport1
            // 
            this.prizivnikReport1.Name = "PrizivnikReport";
            // 
            // PrizivnikFormOtsch
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(753, 262);
            this.Controls.Add(this.reportViewer1);
            this.Name = "PrizivnikFormOtsch";
            this.Text = "PrizivnikFormOtsch";
            ((System.ComponentModel.ISupportInitialize)(this.prizivnikReport1)).EndInit();
            this.ResumeLayout(false);

        }
        public void ReportInitialize(int ReportType)
        {
            Telerik.Reporting.InstanceReportSource reportSource = new Telerik.Reporting.InstanceReportSource();

            switch (ReportType)
            {
            case 1:
                reportSource.ReportDocument = new rptDeliveryByDate();
                this.Header = "Delivery By Date";
                break;

            case 2:
                reportSource.ReportDocument = new rptDeliveryByEmp();
                this.Header = "Delivery By Employee";
                break;

            case 3:
                reportSource.ReportDocument = new rptOrdercsByCustomer();
                this.Header = "Order By Customer";
                break;

            case 4:
                reportSource.ReportDocument = new rptLoading();
                this.Header = "Packaging By Date";
                break;
            }
            // Assigning the report to the report viewer.
            DefaultViewer.ReportSource = reportSource;
        }
    protected void RaporuOlustur()
    {
        //Create new CultureInfo
        var cultureInfo = new System.Globalization.CultureInfo("tr-TR");

        // Set the language for static text (i.e. column headings, titles)
        System.Threading.Thread.CurrentThread.CurrentUICulture = cultureInfo;

        // Set the language for dynamic text (i.e. date, time, money)
        System.Threading.Thread.CurrentThread.CurrentCulture = cultureInfo;

        EFDal ed = new EFDal();
        var instanceReportSource = new Telerik.Reporting.InstanceReportSource();
        instanceReportSource.ReportDocument = new KalibrasyonRaporlari.PersGetiriAnaliz();
        this.rptPersonelGetiri.ReportSource = instanceReportSource;
        Telerik.Reporting.Report report = (Telerik.Reporting.Report)instanceReportSource.ReportDocument;

        report.ReportParameters["BolgeKodu"].Value = Convert.ToInt32(Session["dshBolgeKodu"].ToString());//ed.kal_BolgeKoduDon(Context.User.Identity.Name);
        report.ReportParameters["BasTar"].Value = DateTime.Parse(Session["dshBasTar"].ToString());
        report.ReportParameters["SonTar"].Value = DateTime.Parse(Session["dshSonTar"].ToString());
        report.ReportParameters["Personel"].Value = Context.User.Identity.Name;

        Telerik.Reporting.TextBox txtReportHeader = report.Items.Find("txtReportHeader", true)[0] as Telerik.Reporting.TextBox;
        txtReportHeader.Value = report.ReportParameters["BasTar"].Value.ToString().Replace(" 00:00:00", "") + " ve " + report.ReportParameters["SonTar"].Value.ToString().Replace(" 00:00:00", "") +
                            " tarihleri arasında gerçekleştirilen kalibrasyonları  aşağıda görebilirsiniz";
    }
Beispiel #12
0
        protected void Page_Load(object sender, EventArgs e)
        {
            var irs = new Telerik.Reporting.InstanceReportSource
            {
                ReportDocument = new ForwardedBalancesReport()
            };

            ReportViewer.ReportSource = irs;
        }
Beispiel #13
0
    protected void Search_btn_Click(object sender, EventArgs e)
    {
        string Mode     = Rd_btnMode.SelectedValue.ToString();
        string RecordID = "";
        int    count    = 0;

        //string clause = "";

        foreach (ListItem Item in chklst_Benefits.Items)
        {
            if (Item.Selected)
            {
                RecordID = RecordID + "," + Item.Value.ToString();
                count++;
            }
        }

        if (RecordID != "")
        {
            RecordID = RecordID.TrimStart(',');

            var objectDataSource = new Telerik.Reporting.ObjectDataSource();
            //Getting Datasouce
            SqlConnection con = new SqlConnection(Repository.Connection.DBConnectionString());

            SqlCommand mySqlCommand = con.CreateCommand();
            mySqlCommand.CommandText = "ReportMemberBenefitsSearch_sp";
            mySqlCommand.Parameters.Add("@Mode", SqlDbType.NVarChar, 30).Value        = Mode;
            mySqlCommand.Parameters.Add("@WhereClause", SqlDbType.NVarChar, -1).Value = RecordID;
            mySqlCommand.Parameters.Add("@Count", SqlDbType.NVarChar, 400).Value      = count;


            mySqlCommand.CommandType = CommandType.StoredProcedure;

            SqlDataAdapter mySqlDataAdapter = new SqlDataAdapter();
            mySqlDataAdapter.SelectCommand = mySqlCommand;
            DataTable dt = new DataTable();
            con.Open();
            mySqlDataAdapter.Fill(dt);


            //Report
            objectDataSource.DataSource = dt;


            MemberBenefitsSearch Member = new MemberBenefitsSearch();
            Member.DataSource = objectDataSource;

            Telerik.Reporting.InstanceReportSource reportSource = new Telerik.Reporting.InstanceReportSource();
            reportSource.ReportDocument = Member;


            ReportViewer1.ReportSource = reportSource;
        }
    }
        public ReportViewer(HSQuotation lSales, ObservableCollection <HSOrderItem> lOrderItems)
        {
            InitializeComponent();

            Telerik.Reporting.InstanceReportSource reportSource = new Telerik.Reporting.InstanceReportSource();
            reportSource.ReportDocument = new rptQuotation(lSales, lOrderItems);

            // Assigning the report to the report viewer.
            DefaultViewer.ReportSource = reportSource;
            this.Header = "Quotation Report";
        }
    public void BindDataset(string type, string date, string date2)
    {
        var objectDataSource = new Telerik.Reporting.ObjectDataSource();
        //Getting Datasouce
        SqlConnection con = new SqlConnection(Repository.Connection.DBConnectionString());


        SqlCommand mySqlCommand = con.CreateCommand();

        switch (type)
        {
        case "1":
            mySqlCommand.CommandText = "Active_Percaptia_Search_sp";
            mySqlCommand.Parameters.Add("@Mode", SqlDbType.NVarChar, 30).Value  = "DOB";
            mySqlCommand.Parameters.Add("@StartDate", SqlDbType.DateTime).Value = Convert.ToDateTime(date);
            mySqlCommand.Parameters.Add("@EndDate", SqlDbType.DateTime).Value   = Convert.ToDateTime(date2);
            break;

        case "2":
            mySqlCommand.CommandText = "Active_Percaptia_N_sp";
            break;

        default:
            mySqlCommand.CommandText = "Active_Percaptia_N_sp";
            break;
        }

        mySqlCommand.CommandType = CommandType.StoredProcedure;

        SqlDataAdapter mySqlDataAdapter = new SqlDataAdapter();

        mySqlDataAdapter.SelectCommand = mySqlCommand;
        DataTable dt = new DataTable();

        con.Open();
        mySqlDataAdapter.Fill(dt);


        //Report
        objectDataSource.DataSource = dt;


        ReportPercapita Percapita = new ReportPercapita();

        Percapita.DataSource = objectDataSource;

        Telerik.Reporting.InstanceReportSource reportSource = new Telerik.Reporting.InstanceReportSource();
        reportSource.ReportDocument = Percapita;


        ReportViewer1.ReportSource = reportSource;
    }
Beispiel #16
0
        private static void ExportToPDF(Report report, string exportPath)
        {
            var reportProcessor      = new ReportProcessor();
            var instanceReportSource = new Telerik.Reporting.InstanceReportSource();

            instanceReportSource.ReportDocument = report;
            RenderingResult result = reportProcessor.RenderReport("PDF", instanceReportSource, null);

            using (var fs = new FileStream(exportPath, FileMode.Create))
            {
                fs.Write(result.DocumentBytes, 0, result.DocumentBytes.Length);
            }
        }
        public ReportViewer(HSOrder lOrder, ObservableCollection <HSOrderItem> lOrderItems)
        {
            InitializeComponent();

            Telerik.Reporting.InstanceReportSource reportSource = new Telerik.Reporting.InstanceReportSource();
            reportSource.ReportDocument = new ReportModel.Invoice(lOrder, lOrderItems);


            // Assigning the report to the report viewer.
            DefaultViewer.ReportSource = reportSource;

            this.Header = "Invoice Report";
        }
        protected void BtnPdf_Click(object sender, EventArgs e)
        {
            return;

            Person person = null;

            if (Session["PASAPORTE"] != null)
            {
                person = (Person)Session["PASAPORTE"];
            }

            if (person == null)
            {
                return;
            }

            Pasaporte rep = new Pasaporte();

            rep.TxtNumPasaporte.Value    = person.noPasaporte;
            rep.TxtApellidos.Value       = person.apellidos;
            rep.TxtNombre.Value          = person.nombre;
            rep.TxtNacionalidad.Value    = person.nacionalidad;
            rep.TxtFechaNacimiento.Value = person.fechaNacimiento;
            rep.TxtCedula.Value          = person.cedulaIdentidad;
            rep.TxtSexo.Value            = person.Sexo;
            rep.TxtLugarNacimiento.Value = person.lugarNacimiento;
            rep.TxtFechaEmision.Value    = person.fechaNacimiento;
            rep.TxtLugarNacimiento.Value = person.lugarNacimiento;
            rep.TxtFechaExpiracion.Value = person.fechaNacimiento;
            rep.TxtOCR.Value             = person.ocr;

            Telerik.Reporting.Processing.ReportProcessor reportProcessor = new Telerik.Reporting.Processing.ReportProcessor();

            System.Collections.Hashtable deviceInfo =
                new System.Collections.Hashtable();

            Telerik.Reporting.InstanceReportSource instanceReportSource =
                new Telerik.Reporting.InstanceReportSource();

            instanceReportSource.ReportDocument = rep;

            Telerik.Reporting.Processing.RenderingResult result =
                reportProcessor.RenderReport("PDF", instanceReportSource, deviceInfo);

            byte[] ReportePdf = result.DocumentBytes;

            DescargaArchivos da = new DescargaArchivos(Response);

            da.DescargaArchivoBytes(ReportePdf, Constantes.mimeTypePDF, "Pasaporte", Constantes.pdfextension);
        }
Beispiel #19
0
        protected void Button1_Click(object sender, EventArgs e)
        {
            var x = new Telerik.Reporting.InstanceReportSource();

            x.Parameters.Add(new Telerik.Reporting.Parameter("pramPINo", "PI-00000155-Revise-2"));
            x.ReportDocument = new rptPI();

            ReportViewer1.ReportSource = x;
            ReportViewer1.RefreshReport();

            //ReportViewer1.Report = new rptPI();
            //(ReportViewer1.Report as rptPI).pramPINo = "PI-00000155-Revise-2";
            //ReportViewer1.RefreshReport();
        }
        protected void Page_Load(object sender, EventArgs e)
        {
            int fromDate = 0;
            int fromMonth = 0;
            int fromYear = 0;
            int toDate = 0;
            int toMonth = 0;
            int toYear = 0;
            DateTime fromDateQuery = new DateTime();
            DateTime toDateQuery = new DateTime();
            if (!X.IsAjaxRequest)
            {
                if (Request.QueryString.Count == 0)
                    Response.Redirect("Default.aspx");
                if (Request.QueryString["fromDay"] != null)
                    fromDate = Convert.ToInt32(Request.QueryString["fromDay"].ToString());
                if (Request.QueryString["fromMonth"] != null)
                    fromMonth = Convert.ToInt32(Request.QueryString["fromMonth"].ToString());
                if (Request.QueryString["fromYear"] != null)
                    fromYear = Convert.ToInt32(Request.QueryString["fromYear"].ToString());
                if (Request.QueryString["toDay"] != null)
                    toDate = Convert.ToInt32(Request.QueryString["toDay"].ToString());
                if (Request.QueryString["toMonth"] != null)
                    toMonth = Convert.ToInt32(Request.QueryString["toMonth"].ToString());
                if (Request.QueryString["toYear"] != null)
                    toYear = Convert.ToInt32(Request.QueryString["toYear"].ToString());
                fromDateQuery = new DateTime(fromYear, fromMonth, fromDate);
                toDateQuery = new DateTime(toYear, toMonth, toDate);

                SuratmasukQuery smQ = new SuratmasukQuery("a");
                smQ.Select(smQ.Nomor, smQ.Judul, smQ.Tanggal, smQ.Dari.As("Sender_Receiver"), smQ.Keterangan);
                smQ.Where(smQ.Tanggal.Between(fromDateQuery, toDateQuery));
                smQ.OrderBy(smQ.Tanggal.Ascending, smQ.Nomor.Ascending);
                SuratmasukCollection smC = new SuratmasukCollection();
                smC.Load(smQ);
                if (smC.Count > 0)
                {
                    rptInboxOutbox rptInOut = new rptInboxOutbox();
                    rptInOut.DataSource = smC;
                    Telerik.Reporting.InstanceReportSource inst = new Telerik.Reporting.InstanceReportSource();
                    inst.ReportDocument = rptInOut;
                    this.ReportViewer1.ReportSource = inst;
                    this.ReportViewer1.RefreshReport();
                    this.ReportViewer1.Update();
                }
                else
                    X.Msg.Alert("Error", "No Data").Show();
            }
        }
 protected void Page_Load(object sender, EventArgs e)
 {
     try
     {
         //Here create the object of our report class and assing it to the "ReportSource" property of "ReportViewer" control.
         ReportWithConditionalFomating pd = new ReportWithConditionalFomating();
         Telerik.Reporting.InstanceReportSource inst = new Telerik.Reporting.InstanceReportSource();
         inst.ReportDocument = pd;
         this.ReportViewer1.ReportSource = pd;
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Beispiel #22
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!String.IsNullOrEmpty(Request["ID"]))
            {
                modelDeclaration = bllDeclaration.GetModel(Request["ID"]);

                Regex         regex      = new Regex("[\u4e00-\u9fa5]+", RegexOptions.Compiled);
                char[]        stringChar = modelDeclaration.BreakDown.ToCharArray();
                StringBuilder sb         = new StringBuilder();
                int           nLength    = 0;
                for (int i = 0; i < stringChar.Length; i++)
                {
                    if (regex.IsMatch((stringChar[i]).ToString()))
                    {
                        sb.Append(stringChar[i]);
                        nLength += 1;
                    }
                    if (nLength > modelDeclaration.BreakDown.Length)
                    {
                        break;
                    }
                }
                modelDeclaration.Result = sb.ToString();
                if (modelDeclaration.Result == "")
                {
                    modelDeclaration.Result = "暂无";
                }
                if (modelDeclaration.RepairTreatment == "")
                {
                    modelDeclaration.RepairTreatment = "无";
                }
                if (modelDeclaration.ReplacementID == "")
                {
                    modelDeclaration.ReplacementID = "无";
                }
                bllDeclaration.Update(modelDeclaration);

                var instanceReportSource = new Telerik.Reporting.InstanceReportSource(); //声明一个Telerik.Reporting对象
                instanceReportSource.ReportDocument = new Reports.RepairReport();        //将创建好的页面赋值给变量
                ReportViewer1.ReportSource          = instanceReportSource;              //给页面空间绑定数据源
                //ReportViewer1.ReportSource.Parameters.Add("Parameter1", "1");//给报表添加查询条件,只查询一条数据,此处的1可以设置成动态数据
                ReportViewer1.ReportSource.Parameters.Add("Parameter1", Request["ID"]);  //给报表添加查询条件,只查询一条数据,此处的1可以设置成动态数据
            }
            else
            {
                Response.Redirect("~/BackLogin.aspx");
            }
        }
        protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
        {
            try
            {

                var report = new Telerik.Reporting.InstanceReportSource();
                report.ReportDocument = new HatcheryReportLibrary.BroodstockWaterParameter2();
                report.Parameters.Add("BatchParameter", Convert.ToInt32(DropDownList1.SelectedValue));
                this.BroodstockReportViewer.ReportSource = report;

            }
            catch (Exception)
            {

            }
        }
        protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
        {
            try
            {

                    var report = new Telerik.Reporting.InstanceReportSource();
                    report.ReportDocument = new NaupliiGraphs();
                    report.Parameters.Add("SelectedBatch", Convert.ToInt32(DropDownList1.SelectedValue));
                    this.ReportViewer1.ReportSource = report;

            }
            catch (Exception)
            {

            }
        }
Beispiel #25
0
        internal static void ExportReportAsPdf(Telerik.Reporting.InstanceReportSource instanceReportSource, HttpResponse response, string fileName)
        {
            var reportProcessor = new Telerik.Reporting.Processing.ReportProcessor();
            var deviceInfo      = new System.Collections.Hashtable();

            var result = reportProcessor.RenderReport("PDF", instanceReportSource, deviceInfo);

            response.Clear();
            response.ContentType  = "application/pdf";
            response.BufferOutput = true;
            response.AppendHeader("accept-ranges", "none");
            response.AppendHeader("content-disposition", string.Concat("attachment; filename=", fileName));
            response.BinaryWrite(result.DocumentBytes);
            response.Flush();
            response.End();
        }
 public void btnSearch_Click()
 {
     DateTime from;
     DateTime to;
     string nomorsurat;
     if (dfTo.IsEmpty)
     {
         X.Msg.Alert("error", "To Date must be FILLED").Show();
         return;
     }
     if (dfFrom.SelectedDate > dfTo.SelectedDate)
     {
         X.Msg.Alert("error", "From Date can not BIGGER than To Date").Show();
         return;
     }
     if (dfFrom.IsEmpty)
         from = new DateTime(1453, 12, 31);
     else
         from = dfFrom.SelectedDate;
     this.ReportViewer1.Visible = true;
     to = dfTo.SelectedDate;
     DisposisiQuery dQ = new DisposisiQuery("a");
     dQ.Select(dQ.Agendanomor, dQ.Tanggal,dQ.Biasa,dQ.Segera,dQ.Penting,dQ.Rahasia, dQ.Perihal, dQ.Asalsurat, dQ.Diteruskanke, dQ.Catatan);
     if (string.IsNullOrEmpty(txtNomorSurat.Text))
         dQ.Where(dQ.Tanggal.Between(from, to));
     else
     {
         nomorsurat = txtNomorSurat.Text.Trim();
         dQ.Where(dQ.Tanggal.Between(from, to) && dQ.Nomorsurat.Like("%" + nomorsurat + "%"));
     }
     DisposisiCollection dC = new DisposisiCollection();
     dC.Load(dQ);
     if (dC.Count > 0)
     {
         rptPrintOutDisposisi rptDisposisi = new rptPrintOutDisposisi();
         rptDisposisi.DataSource = dC;
         //ReportViewer1.ReportSource = rptDisposisi;
         //ReportViewer1.RefreshReport();
         //Telerik.Reporting.Report rptDisposisi = new Telerik.Reporting.Report();
         Telerik.Reporting.InstanceReportSource inst = new Telerik.Reporting.InstanceReportSource();
         inst.ReportDocument = rptDisposisi;
         this.ReportViewer1.ReportSource = inst;
         this.ReportViewer1.RefreshReport();
         this.ReportViewer1.Update();
     }
 }
    protected void Page_Load(object sender, EventArgs e)
    {
        try
        {
            CheckSession();

            var instanceReportSource = new Telerik.Reporting.InstanceReportSource();
            instanceReportSource.ReportDocument = new ReportWebAppCNRS.TLDReagentReport();
            instanceReportSource.Parameters.Add("poid", getPoID());
            ReportViewer1.ReportSource = instanceReportSource;
            ReportViewer1.RefreshReport();
        }
        catch (Exception ex)
        {
            Controller.SaveErrors(Path.GetFileName(Request.PhysicalPath), ex.Message, System.Reflection.MethodInfo.GetCurrentMethod().Name);
        }
    }
Beispiel #28
0
    protected void RaporuOlustur()
    {
        //Create new CultureInfo
        var cultureInfo = new System.Globalization.CultureInfo("tr-TR");

        // Set the language for static text (i.e. column headings, titles)
        System.Threading.Thread.CurrentThread.CurrentUICulture = cultureInfo;

        // Set the language for dynamic text (i.e. date, time, money)
        System.Threading.Thread.CurrentThread.CurrentCulture = cultureInfo;



        EFDal ed = new EFDal();
        var   instanceReportSource = new Telerik.Reporting.InstanceReportSource();

        //instanceReportSource.ReportDocument = new KalibrasyonReportLibrary.Egitimler();
        instanceReportSource.ReportDocument = new KalibrasyonRaporlari.Egitimler();



        this.rptEgitimler.ReportSource = instanceReportSource;
        Telerik.Reporting.Report report = (Telerik.Reporting.Report)instanceReportSource.ReportDocument;


        /*
         * report.ReportParameters["BolgeKodu"].Value = ed.kal_BolgeKoduDon(Context.User.Identity.Name);
         * report.ReportParameters["BasTar"].Value = DateTime.Parse("2015-01-01");
         * report.ReportParameters["BitTar"].Value = DateTime.Parse("2015-06-01");
         */

        report.ReportParameters["BolgeKodu"].Value = Convert.ToInt32(Session["dshBolgeKodu"].ToString());//ed.kal_BolgeKoduDon(Context.User.Identity.Name);
        report.ReportParameters["BasTar"].Value    = DateTime.Parse(Session["dshBasTar"].ToString());
        report.ReportParameters["BitTar"].Value    = DateTime.Parse(Session["dshSonTar"].ToString());
        //report.ReportParameters["SeciliDonemGetirisi"].Value = ed.EgitimRaporuIcinSeciliDonemGetirisiDon(Convert.ToInt32(Session["dshBolgeKodu"].ToString()), DateTime.Parse(Session["dshBasTar"].ToString()), DateTime.Parse(Session["dshSonTar"].ToString()));
        report.ReportParameters["SeciliDonemGetirisi"].Value = ed.EgitimRaporuIcinSeciliDonemGetirisiDon(Convert.ToInt32(report.ReportParameters["BolgeKodu"].Value), DateTime.Parse(report.ReportParameters["BasTar"].Value.ToString()), DateTime.Parse(report.ReportParameters["BitTar"].Value.ToString()));


        //report.ReportParameters["Personel"].Value = Context.User.Identity.Name;

        Telerik.Reporting.TextBox txtAciklama = report.Items.Find("txtAciklama", true)[0] as Telerik.Reporting.TextBox;
        txtAciklama.Value = report.ReportParameters["BasTar"].Value.ToString().Replace(" 00:00:00", "") + " ve " + report.ReportParameters["BitTar"].Value.ToString().Replace(" 00:00:00", "") +
                            " tarihleri arasında bölgelere ait özet eğitim bilgisini aşağıda görebilirsiniz";
    }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.Reporting.InstanceReportSource instanceReportSource1 = new Telerik.Reporting.InstanceReportSource();
            this.reportViewer1 = new Telerik.ReportViewer.WinForms.ReportViewer();
            this.report21 = new OtherBase.UncomChalenge();
            this.uncomChalenge1 = new OtherBase.UncomChalenge();
            ((System.ComponentModel.ISupportInitialize)(this.report21)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uncomChalenge1)).BeginInit();
            this.SuspendLayout();
            // 
            // reportViewer1
            // 
            this.reportViewer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.reportViewer1.Location = new System.Drawing.Point(0, 0);
            this.reportViewer1.Name = "reportViewer1";
            instanceReportSource1.ReportDocument = this.uncomChalenge1;
            this.reportViewer1.ReportSource = instanceReportSource1;
            this.reportViewer1.Size = new System.Drawing.Size(712, 262);
            this.reportViewer1.TabIndex = 0;
            // 
            // report21
            // 
            this.report21.Name = "Report2";
            // 
            // uncomChalenge1
            // 
            this.uncomChalenge1.Name = "UncomChalenge";
            // 
            // FailedMissions
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(712, 262);
            this.Controls.Add(this.reportViewer1);
            this.Name = "FailedMissions";
            this.Text = "FailedMissions";
            ((System.ComponentModel.ISupportInitialize)(this.report21)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uncomChalenge1)).EndInit();
            this.ResumeLayout(false);

        }
        private void reportViewer1_Load(object sender, EventArgs e)
        {
            switch (repName)
            {
            case "Item_List":
            {
                Telerik.Reporting.InstanceReportSource reportSource = new
                                                                      Telerik.Reporting.InstanceReportSource();
                reportSource.ReportDocument = new ArtikelList();



                reportViewer1.ReportSource = reportSource;

                reportViewer1.RefreshReport();
                break;
            }

            case "ItemBarcode":
            {
                Telerik.Reporting.InstanceReportSource reportSource = new
                                                                      Telerik.Reporting.InstanceReportSource();
                reportSource.ReportDocument = new ItemBarcode();
                //foreach (var row in rep_parameters)
                //{
                //    reportSource.Parameters.Add(new Telerik.Reporting.Parameter(row.Key,row.Value));
                //}


                reportViewer1.ReportSource = reportSource;


                reportViewer1.RefreshReport();

                break;
            }

            default:
                break;
            }
        }
Beispiel #31
0
        public ActionResult GenReport(int Id)
        {
            DataTable dt = Conexion.Ejecutar_dt(string.Format("EXEC  [dbo].[Consulta_Datos_Reporte_NC] @DocEntry = '{0}'", Id));

            if (!string.IsNullOrEmpty(dt.Rows[0].ItemArray[9].ToString()))
            {
                string RutImg = ConfigurationManager.AppSettings["RutSerFT"].ToString() + ConfigurationManager.AppSettings["IMG"].ToString() + "Logo.png";
                Reportes.Report_NC_A4 reportToExport  = new Reportes.Report_NC_A4(dt, RutImg);
                ReportProcessor       reportProcessor = new ReportProcessor();
                Telerik.Reporting.InstanceReportSource instanceReportSource = new Telerik.Reporting.InstanceReportSource();
                instanceReportSource.ReportDocument = reportToExport;
                RenderingResult result = reportProcessor.RenderReport("PDF", instanceReportSource, null);

                string fileName = dt.Rows[0].ItemArray[0].ToString() + "-07-" + dt.Rows[0].ItemArray[10].ToString() + "." + result.Extension;
                string RutPdf   = ConfigurationManager.AppSettings["RutSerFT"].ToString() + ConfigurationManager.AppSettings["REPO"].ToString() + fileName;
                Response.Clear();
                Response.ContentType = result.MimeType;
                Response.Cache.SetCacheability(HttpCacheability.Private);
                Response.Expires = -1;
                Response.Buffer  = true;

                Response.AddHeader("Content-Disposition",
                                   string.Format("{0};FileName=\"{1}\"",
                                                 "attachment",
                                                 fileName));
                Response.BinaryWrite(result.DocumentBytes);
                if (!System.IO.File.Exists(RutPdf))
                {
                    System.IO.File.WriteAllBytes(RutPdf, result.DocumentBytes);
                }
                Response.End();

                ViewBag.Confirmacion = "PDF generado";
                return(File(result.DocumentBytes, "application/pdf"));
            }
            ViewBag.Error = "Nota de credito sin Firma digital";


            return(new HttpStatusCodeResult(HttpStatusCode.BadRequest, "Documento electronico sin firma Digital"));
        }
Beispiel #32
0
    protected void RaporuOlustur()
    {
        //Create new CultureInfo
        var cultureInfo = new System.Globalization.CultureInfo("tr-TR");

        // Set the language for static text (i.e. column headings, titles)
        System.Threading.Thread.CurrentThread.CurrentUICulture = cultureInfo;

        // Set the language for dynamic text (i.e. date, time, money)
        System.Threading.Thread.CurrentThread.CurrentCulture = cultureInfo;



        EFDal ed = new EFDal();
        var   instanceReportSource = new Telerik.Reporting.InstanceReportSource();

        instanceReportSource.ReportDocument = new KalibrasyonRaporlari.CihazBazli();
        this.rptCihazBazli.ReportSource     = instanceReportSource;
        Telerik.Reporting.Report report = (Telerik.Reporting.Report)instanceReportSource.ReportDocument;


        /*
         * report.ReportParameters["BolgeKodu"].Value = Convert.ToInt32(Session["dshBolgeKodu"].ToString());//ed.kal_BolgeKoduDon(Context.User.Identity.Name);
         * report.ReportParameters["BasTar"].Value = DateTime.Parse("2015-01-01");
         * report.ReportParameters["SonTar"].Value = DateTime.Parse("2015-06-01");
         * //report.ReportParameters["Personel"].Value = Context.User.Identity.Name;
         */



        report.ReportParameters["BolgeKodu"].Value = Convert.ToInt32(Session["dshBolgeKodu"].ToString());//ed.kal_BolgeKoduDon(Context.User.Identity.Name);
        report.ReportParameters["BasTar"].Value    = DateTime.Parse(Session["dshBasTar"].ToString());
        report.ReportParameters["SonTar"].Value    = DateTime.Parse(Session["dshSonTar"].ToString());


        Telerik.Reporting.TextBox txtAciklama = report.Items.Find("txtAciklama", true)[0] as Telerik.Reporting.TextBox;
        txtAciklama.Value = ed.BolgeKodundanBolgeAdiniDon(Convert.ToInt32(report.ReportParameters["BolgeKodu"].Value.ToString())) + " bölgesinde, " + report.ReportParameters["BasTar"].Value.ToString().Replace(" 00:00:00", "") + " ve " + report.ReportParameters["SonTar"].Value.ToString().Replace(" 00:00:00", "") +
                            " tarihleri arasında yapılan kalibrasyonların cihazlar üzerine dağılımını  aşağıda görebilirsiniz";
    }
Beispiel #33
0
        private DataSet FMDriverGrading(Telerik.Reporting.InstanceReportSource currentReport, bool byWeek)
        {
            Dictionary <string, object> parameters = new Dictionary <string, object>();

            foreach (var p in currentReport.ReportDocument.ReportParameters)
            {
                parameters.Add(p.Name, p.Value);
            }

            DateTime startDate = Convert.ToDateTime(parameters["StartDate"]);
            DateTime endDate   = Convert.ToDateTime(parameters["EndDate"]);

            DataAccess.IGPS dacGPS = new DataAccess.GPS();
            if (byWeek)
            {
                return(dacGPS.FMDriverGradingByWeek(startDate, endDate, null));
            }
            else
            {
                return(dacGPS.FMDriverGradingByMonth(startDate, endDate, null));
            }
        }
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!X.IsAjaxRequest)
            {
                SuratkeluarQuery skQ = new SuratkeluarQuery("a");
                NomorQuery nQ = new NomorQuery("b");
                skQ.Select(nQ.Keterangan, skQ.Nomorid, skQ.Nomor.Count().As("jumlahsurat"));
                skQ.InnerJoin(nQ).On(skQ.Nomorid == nQ.Format);
                skQ.GroupBy(skQ.Nomorid);
                SuratkeluarCollection skC = new SuratkeluarCollection();
                skC.Load(skQ);

                rptChartInboxMonthly rptChart = new rptChartInboxMonthly();
                rptChart.DataSource = skC;

                //foreach (Suratkeluar sk in skC)
                //{
                //    string jumlahSurat = sk.GetColumn("jumlahsurat").ToString();
                //    string keterangan = sk.GetColumn(NomorMetadata.ColumnNames.Keterangan, "kosong").ToString();
                //    double JumlahSurat = 0;
                //    if (!double.TryParse(jumlahSurat, out JumlahSurat))
                //        JumlahSurat = 0;

                //    ChartSeries cs = new ChartSeries();
                //    cs.Name = "Surat Keluar";
                //    cs.Type = ChartSeriesType.Bar;
                //    cs.AddItem(JumlahSurat, sk.Nomorid);

                //}

                Telerik.Reporting.InstanceReportSource inst = new Telerik.Reporting.InstanceReportSource();
                inst.ReportDocument = rptChart;
                this.ReportViewer1.ReportSource = inst;
                this.ReportViewer1.RefreshReport();
                this.ReportViewer1.Update();
            }
        }
        void ExportToPDF(Telerik.Reporting.Report reportToExport)
        {
            ReportProcessor reportProcessor = new ReportProcessor();

            Telerik.Reporting.InstanceReportSource instanceReportSource = new Telerik.Reporting.InstanceReportSource();
            instanceReportSource.ReportDocument = reportToExport;
            RenderingResult result = reportProcessor.RenderReport("PDF", instanceReportSource, null);

            string fileName = result.DocumentName + "." + result.Extension;

            Response.Clear();
            Response.ContentType = result.MimeType;
            Response.Cache.SetCacheability(HttpCacheability.Private);
            Response.Expires = -1;
            Response.Buffer  = true;

            Response.AddHeader("Content-Disposition",
                               string.Format("{0};FileName=\"{1}\"",
                                             "attachment",
                                             fileName));

            Response.BinaryWrite(result.DocumentBytes);
            Response.End();
        }
Beispiel #36
0
 /// <summary>
 /// Required method for telerik Reporting designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.Reporting.NavigateToReportAction navigateToReportAction1 = new Telerik.Reporting.NavigateToReportAction();
     Telerik.Reporting.InstanceReportSource   instanceReportSource1   = new Telerik.Reporting.InstanceReportSource();
     Telerik.Reporting.ReportParameter        reportParameter1        = new Telerik.Reporting.ReportParameter();
     Telerik.Reporting.ReportParameter        reportParameter2        = new Telerik.Reporting.ReportParameter();
     Telerik.Reporting.ReportParameter        reportParameter3        = new Telerik.Reporting.ReportParameter();
     Telerik.Reporting.ReportParameter        reportParameter4        = new Telerik.Reporting.ReportParameter();
     Telerik.Reporting.ReportParameter        reportParameter5        = new Telerik.Reporting.ReportParameter();
     Telerik.Reporting.ReportParameter        reportParameter6        = new Telerik.Reporting.ReportParameter();
     Telerik.Reporting.ReportParameter        reportParameter7        = new Telerik.Reporting.ReportParameter();
     Telerik.Reporting.ReportParameter        reportParameter8        = new Telerik.Reporting.ReportParameter();
     Telerik.Reporting.ReportParameter        reportParameter9        = new Telerik.Reporting.ReportParameter();
     Telerik.Reporting.Drawing.StyleRule      styleRule1 = new Telerik.Reporting.Drawing.StyleRule();
     this.rep_ClienteMayorAdeudoDocDet2 = new LibreriaReportes.Rep_ClienteMayorAdeudoDocDet();
     this.pageHeaderSection1            = new Telerik.Reporting.PageHeaderSection();
     this.textBox2           = new Telerik.Reporting.TextBox();
     this.textBox1           = new Telerik.Reporting.TextBox();
     this.textBox15          = new Telerik.Reporting.TextBox();
     this.textBox22          = new Telerik.Reporting.TextBox();
     this.textBox21          = new Telerik.Reporting.TextBox();
     this.textBox20          = new Telerik.Reporting.TextBox();
     this.textBox18          = new Telerik.Reporting.TextBox();
     this.textBox17          = new Telerik.Reporting.TextBox();
     this.textBox16          = new Telerik.Reporting.TextBox();
     this.textBox13          = new Telerik.Reporting.TextBox();
     this.txtzona            = new Telerik.Reporting.TextBox();
     this.textBox31          = new Telerik.Reporting.TextBox();
     this.textBox30          = new Telerik.Reporting.TextBox();
     this.detail             = new Telerik.Reporting.DetailSection();
     this.textBox10          = new Telerik.Reporting.TextBox();
     this.textBox14          = new Telerik.Reporting.TextBox();
     this.txtSaldo           = new Telerik.Reporting.TextBox();
     this.textBox9           = new Telerik.Reporting.TextBox();
     this.textBox8           = new Telerik.Reporting.TextBox();
     this.textBox7           = new Telerik.Reporting.TextBox();
     this.textBox5           = new Telerik.Reporting.TextBox();
     this.textBox4           = new Telerik.Reporting.TextBox();
     this.textBox3           = new Telerik.Reporting.TextBox();
     this.pageFooterSection1 = new Telerik.Reporting.PageFooterSection();
     this.textBox23          = new Telerik.Reporting.TextBox();
     this.textBox11          = new Telerik.Reporting.TextBox();
     this.textBox6           = new Telerik.Reporting.TextBox();
     this.sqlConnection1     = new System.Data.SqlClient.SqlConnection();
     this.sqlCommand1        = new System.Data.SqlClient.SqlCommand();
     this.sqlSelectCommand1  = new System.Data.SqlClient.SqlCommand();
     this.sqlDataAdapter1    = new System.Data.SqlClient.SqlDataAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.rep_ClienteMayorAdeudoDocDet2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // rep_ClienteMayorAdeudoDocDet2
     //
     this.rep_ClienteMayorAdeudoDocDet2.Name = "Rep_ClienteMayorAdeudoDocDet";
     //
     // pageHeaderSection1
     //
     this.pageHeaderSection1.Height = Telerik.Reporting.Drawing.Unit.Cm(2.5999999046325684D);
     this.pageHeaderSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.textBox2,
         this.textBox1,
         this.textBox15,
         this.textBox22,
         this.textBox21,
         this.textBox20,
         this.textBox18,
         this.textBox17,
         this.textBox16,
         this.textBox13,
         this.txtzona,
         this.textBox31,
         this.textBox30
     });
     this.pageHeaderSection1.Name = "pageHeaderSection1";
     //
     // textBox2
     //
     this.textBox2.Location            = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(12.694883346557617D), Telerik.Reporting.Drawing.Unit.Cm(1.2999999523162842D));
     this.textBox2.Name                = "textBox2";
     this.textBox2.Size                = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(8.69990348815918D), Telerik.Reporting.Drawing.Unit.Cm(0.60000008344650269D));
     this.textBox2.Style.Font.Bold     = true;
     this.textBox2.Style.Font.Size     = Telerik.Reporting.Drawing.Unit.Pixel(12D);
     this.textBox2.Style.TextAlign     = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox2.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox2.Value               = "=Fields.Cte_Nombre";
     //
     // textBox1
     //
     this.textBox1.Location            = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(11.699999809265137D), Telerik.Reporting.Drawing.Unit.Cm(0.89999997615814209D));
     this.textBox1.Name                = "textBox1";
     this.textBox1.Size                = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(11.099899291992188D), Telerik.Reporting.Drawing.Unit.Cm(0.4000001847743988D));
     this.textBox1.Style.Font.Bold     = true;
     this.textBox1.Style.Font.Size     = Telerik.Reporting.Drawing.Unit.Pixel(12D);
     this.textBox1.Style.TextAlign     = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox1.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox1.Value               = "Documentos por pagar del cliente";
     //
     // textBox15
     //
     this.textBox15.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(9.592707633972168D), Telerik.Reporting.Drawing.Unit.Cm(2.0999002456665039D));
     this.textBox15.Name     = "textBox15";
     this.textBox15.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(3.3959338665008545D), Telerik.Reporting.Drawing.Unit.Cm(0.39999997615814209D));
     this.textBox15.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Groove;
     this.textBox15.Style.BorderStyle.Top    = Telerik.Reporting.Drawing.BorderType.Groove;
     this.textBox15.Style.Font.Bold          = true;
     this.textBox15.Style.VerticalAlign      = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox15.Value = "Cliente";
     //
     // textBox22
     //
     this.textBox22.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(27.875417709350586D), Telerik.Reporting.Drawing.Unit.Cm(2.0999002456665039D));
     this.textBox22.Name     = "textBox22";
     this.textBox22.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(2.9999992847442627D), Telerik.Reporting.Drawing.Unit.Cm(0.39999997615814209D));
     this.textBox22.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Groove;
     this.textBox22.Style.BorderStyle.Top    = Telerik.Reporting.Drawing.BorderType.Groove;
     this.textBox22.Style.Font.Bold          = true;
     this.textBox22.Style.VerticalAlign      = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox22.Value = "Saldo";
     //
     // textBox21
     //
     this.textBox21.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(24.991456985473633D), Telerik.Reporting.Drawing.Unit.Cm(2.0999002456665039D));
     this.textBox21.Name     = "textBox21";
     this.textBox21.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(2.900397777557373D), Telerik.Reporting.Drawing.Unit.Cm(0.39999997615814209D));
     this.textBox21.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Groove;
     this.textBox21.Style.BorderStyle.Top    = Telerik.Reporting.Drawing.BorderType.Groove;
     this.textBox21.Style.Font.Bold          = true;
     this.textBox21.Style.VerticalAlign      = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox21.Value = "Credito";
     //
     // textBox20
     //
     this.textBox20.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(21.975208282470703D), Telerik.Reporting.Drawing.Unit.Cm(2.0999002456665039D));
     this.textBox20.Name     = "textBox20";
     this.textBox20.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(2.9913742542266846D), Telerik.Reporting.Drawing.Unit.Cm(0.39999997615814209D));
     this.textBox20.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Groove;
     this.textBox20.Style.BorderStyle.Top    = Telerik.Reporting.Drawing.BorderType.Groove;
     this.textBox20.Style.Font.Bold          = true;
     this.textBox20.Style.VerticalAlign      = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox20.Value = "Cargo";
     //
     // textBox18
     //
     this.textBox18.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(18.985416412353516D), Telerik.Reporting.Drawing.Unit.Cm(2.0999002456665039D));
     this.textBox18.Name     = "textBox18";
     this.textBox18.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(2.9999945163726807D), Telerik.Reporting.Drawing.Unit.Cm(0.39999997615814209D));
     this.textBox18.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Groove;
     this.textBox18.Style.BorderStyle.Top    = Telerik.Reporting.Drawing.BorderType.Groove;
     this.textBox18.Style.Font.Bold          = true;
     this.textBox18.Style.VerticalAlign      = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox18.Value = "Fecha Venc.";
     //
     // textBox17
     //
     this.textBox17.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(15.995622634887695D), Telerik.Reporting.Drawing.Unit.Cm(2.0999002456665039D));
     this.textBox17.Name     = "textBox17";
     this.textBox17.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(2.9982244968414307D), Telerik.Reporting.Drawing.Unit.Cm(0.39999997615814209D));
     this.textBox17.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Groove;
     this.textBox17.Style.BorderStyle.Top    = Telerik.Reporting.Drawing.BorderType.Groove;
     this.textBox17.Style.Font.Bold          = true;
     this.textBox17.Style.TextAlign          = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox17.Style.VerticalAlign      = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox17.Value = "Fecha";
     //
     // textBox16
     //
     this.textBox16.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(12.979374885559082D), Telerik.Reporting.Drawing.Unit.Cm(2.0999002456665039D));
     this.textBox16.Name     = "textBox16";
     this.textBox16.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(2.9961347579956055D), Telerik.Reporting.Drawing.Unit.Cm(0.39999997615814209D));
     this.textBox16.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Groove;
     this.textBox16.Style.BorderStyle.Top    = Telerik.Reporting.Drawing.BorderType.Groove;
     this.textBox16.Style.Font.Bold          = true;
     this.textBox16.Style.TextAlign          = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox16.Style.VerticalAlign      = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox16.Value = "Documento";
     //
     // textBox13
     //
     this.textBox13.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(1.8933333158493042D), Telerik.Reporting.Drawing.Unit.Cm(2.0999002456665039D));
     this.textBox13.Name     = "textBox13";
     this.textBox13.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(7.6995997428894043D), Telerik.Reporting.Drawing.Unit.Cm(0.39999979734420776D));
     this.textBox13.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Groove;
     this.textBox13.Style.BorderStyle.Top    = Telerik.Reporting.Drawing.BorderType.Groove;
     this.textBox13.Style.Font.Bold          = true;
     this.textBox13.Style.TextAlign          = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox13.Style.VerticalAlign      = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox13.Value = "Nombre Cdi";
     //
     // txtzona
     //
     this.txtzona.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(0.20000000298023224D), Telerik.Reporting.Drawing.Unit.Cm(2.0999002456665039D));
     this.txtzona.Name     = "txtzona";
     this.txtzona.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(1.7000000476837158D), Telerik.Reporting.Drawing.Unit.Cm(0.39999979734420776D));
     this.txtzona.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Groove;
     this.txtzona.Style.BorderStyle.Top    = Telerik.Reporting.Drawing.BorderType.Groove;
     this.txtzona.Style.Font.Bold          = true;
     this.txtzona.Style.TextAlign          = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.txtzona.Style.VerticalAlign      = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.txtzona.Value = "Zona";
     //
     // textBox31
     //
     this.textBox31.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(6.6999993324279785D), Telerik.Reporting.Drawing.Unit.Cm(0.099999949336051941D));
     this.textBox31.Name            = "textBox31";
     this.textBox31.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(20.5D), Telerik.Reporting.Drawing.Unit.Cm(0.40000009536743164D));
     this.textBox31.Style.Font.Bold = true;
     this.textBox31.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Pixel(12D);
     this.textBox31.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox31.Value           = "Key Química S.A. de C.V.";
     //
     // textBox30
     //
     this.textBox30.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(6.6999993324279785D), Telerik.Reporting.Drawing.Unit.Cm(0.49999994039535522D));
     this.textBox30.Name            = "textBox30";
     this.textBox30.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(20.5D), Telerik.Reporting.Drawing.Unit.Cm(0.39999991655349731D));
     this.textBox30.Style.Font.Bold = true;
     this.textBox30.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Pixel(12D);
     this.textBox30.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox30.Value           = "SIANWeb Central";
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Cm(0.50010108947753906D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.textBox10,
         this.textBox14,
         this.txtSaldo,
         this.textBox9,
         this.textBox8,
         this.textBox7,
         this.textBox5,
         this.textBox4,
         this.textBox3
     });
     this.detail.Name = "detail";
     //
     // textBox10
     //
     this.textBox10.Format   = "{0:N2}";
     this.textBox10.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(24.885618209838867D), Telerik.Reporting.Drawing.Unit.Cm(0.00020024616969749332D));
     this.textBox10.Name     = "textBox10";
     this.textBox10.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(3.0000009536743164D), Telerik.Reporting.Drawing.Unit.Cm(0.499900221824646D));
     this.textBox10.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox10.Style.Font.Bold          = false;
     this.textBox10.Style.TextAlign          = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox10.Style.VerticalAlign      = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox10.Value = "=Fields.Pagado";
     //
     // textBox14
     //
     this.textBox14.Format   = "{0:N2}";
     this.textBox14.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(21.975202560424805D), Telerik.Reporting.Drawing.Unit.Cm(0.00020024616969749332D));
     this.textBox14.Name     = "textBox14";
     this.textBox14.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(2.999997615814209D), Telerik.Reporting.Drawing.Unit.Cm(0.4999004602432251D));
     this.textBox14.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox14.Style.Font.Bold          = false;
     this.textBox14.Style.TextAlign          = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox14.Style.VerticalAlign      = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox14.Value = "=Fields.Total";
     //
     // txtSaldo
     //
     this.txtSaldo.Format   = "{0:N2}";
     this.txtSaldo.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(27.981243133544922D), Telerik.Reporting.Drawing.Unit.Cm(0.00020024616969749332D));
     this.txtSaldo.Name     = "txtSaldo";
     this.txtSaldo.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(2.8941707611083984D), Telerik.Reporting.Drawing.Unit.Cm(0.49980032444000244D));
     this.txtSaldo.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
     this.txtSaldo.Style.TextAlign          = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.txtSaldo.Style.VerticalAlign      = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.txtSaldo.Value = "=Fields.Saldo";
     //
     // textBox9
     //
     this.textBox9.Format   = "{0:d}";
     this.textBox9.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(18.985410690307617D), Telerik.Reporting.Drawing.Unit.Cm(0.00020024616969749332D));
     this.textBox9.Name     = "textBox9";
     this.textBox9.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(3.0000009536743164D), Telerik.Reporting.Drawing.Unit.Cm(0.49980011582374573D));
     this.textBox9.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox9.Style.Font.Bold          = false;
     this.textBox9.Style.TextAlign          = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox9.Style.VerticalAlign      = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox9.Value = "=Fields.Ven_Fecha\r\n";
     //
     // textBox8
     //
     this.textBox8.Format   = "{0:d}";
     this.textBox8.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(15.99561882019043D), Telerik.Reporting.Drawing.Unit.Cm(0.00020024616969749332D));
     this.textBox8.Name     = "textBox8";
     this.textBox8.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(3.0000009536743164D), Telerik.Reporting.Drawing.Unit.Cm(0.49979948997497559D));
     this.textBox8.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox8.Style.Font.Bold          = false;
     this.textBox8.Style.TextAlign          = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox8.Style.VerticalAlign      = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox8.Value = "=Fields.doc_Fecha";
     //
     // textBox7
     //
     instanceReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("Conexion", "=Parameters.Conexion.Value"));
     instanceReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("Id_Cd", "=Parameters.cdi.Value"));
     instanceReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("Id_DocSerie", "=Fields.Id_DocSerie"));
     instanceReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("Fecha_Corte", "=Parameters.Fecha_Corte.Value"));
     instanceReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("Serie", "=Fields.Id_DocSerie"));
     instanceReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("FechaCorte", "=Parameters.Fecha_Corte.Value"));
     instanceReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("Factura", "=Fields.Id_DocUnique"));
     instanceReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("Fecha", "=Fields.doc_Fecha"));
     instanceReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("Fecha_Ven", "=Fields.Ven_fecha"));
     instanceReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("Cargo", "=Fields.Total"));
     instanceReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("Credito", "=Fields.Pagado"));
     instanceReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("Saldo", "=Fields.Saldo"));
     instanceReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("Fecha_Cierre", "=Parameters.Fecha_Cierre.Value"));
     instanceReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("FechaCierre", "=PArameters.Fecha_Cierre.Value"));
     instanceReportSource1.ReportDocument = this.rep_ClienteMayorAdeudoDocDet2;
     navigateToReportAction1.ReportSource = instanceReportSource1;
     this.textBox7.Action   = navigateToReportAction1;
     this.textBox7.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(12.979369163513184D), Telerik.Reporting.Drawing.Unit.Cm(0.00020024616969749332D));
     this.textBox7.Name     = "textBox7";
     this.textBox7.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(2.995232105255127D), Telerik.Reporting.Drawing.Unit.Cm(0.49990004301071167D));
     this.textBox7.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox7.Style.Color          = System.Drawing.Color.Blue;
     this.textBox7.Style.Font.Underline = true;
     this.textBox7.Style.TextAlign      = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox7.Style.VerticalAlign  = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox7.Value = "=Fields.Id_DocUnique";
     //
     // textBox5
     //
     this.textBox5.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(9.59270191192627D), Telerik.Reporting.Drawing.Unit.Cm(0.00020024616969749332D));
     this.textBox5.Name     = "textBox5";
     this.textBox5.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(3.3959367275238037D), Telerik.Reporting.Drawing.Unit.Cm(0.49980011582374573D));
     this.textBox5.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox5.Style.Font.Bold          = false;
     this.textBox5.Style.TextAlign          = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox5.Style.VerticalAlign      = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox5.Value = "=Fields.Id_Cte";
     //
     // textBox4
     //
     this.textBox4.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(1.8933274745941162D), Telerik.Reporting.Drawing.Unit.Cm(0.00020024616969749332D));
     this.textBox4.Name     = "textBox4";
     this.textBox4.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(7.6995997428894043D), Telerik.Reporting.Drawing.Unit.Cm(0.499799907207489D));
     this.textBox4.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox4.Style.Font.Bold          = false;
     this.textBox4.Style.TextAlign          = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox4.Style.VerticalAlign      = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox4.Value = "=Fields.Cdi";
     //
     // textBox3
     //
     this.textBox3.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(0.19999425113201141D), Telerik.Reporting.Drawing.Unit.Cm(0.00020024616969749332D));
     this.textBox3.Name     = "textBox3";
     this.textBox3.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(1.6998999118804932D), Telerik.Reporting.Drawing.Unit.Cm(0.49980032444000244D));
     this.textBox3.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox3.Style.Font.Bold          = false;
     this.textBox3.Style.TextAlign          = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox3.Style.VerticalAlign      = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox3.Value = "=Fields.Id_Cd";
     //
     // pageFooterSection1
     //
     this.pageFooterSection1.Height = Telerik.Reporting.Drawing.Unit.Cm(0.59999960660934448D);
     this.pageFooterSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.textBox23,
         this.textBox11,
         this.textBox6
     });
     this.pageFooterSection1.Name = "pageFooterSection1";
     //
     // textBox23
     //
     this.textBox23.Format   = "{0:N2}";
     this.textBox23.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(27.981243133544922D), Telerik.Reporting.Drawing.Unit.Cm(0D));
     this.textBox23.Name     = "textBox23";
     this.textBox23.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(2.8941707611083984D), Telerik.Reporting.Drawing.Unit.Cm(0.60010021924972534D));
     this.textBox23.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Groove;
     this.textBox23.Style.BorderStyle.Top    = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox23.Style.Font.Bold          = true;
     this.textBox23.Style.VerticalAlign      = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox23.Value = "=SUM(Fields.Saldo)";
     //
     // textBox11
     //
     this.textBox11.Format   = "{0:N2}";
     this.textBox11.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(22.093957901000977D), Telerik.Reporting.Drawing.Unit.Cm(0D));
     this.textBox11.Name     = "textBox11";
     this.textBox11.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(2.881242036819458D), Telerik.Reporting.Drawing.Unit.Cm(0.60010021924972534D));
     this.textBox11.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Groove;
     this.textBox11.Style.BorderStyle.Top    = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox11.Style.Font.Bold          = true;
     this.textBox11.Style.VerticalAlign      = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox11.Value = "= Sum(Fields.Total)";
     //
     // textBox6
     //
     this.textBox6.Format   = "{0:N2}";
     this.textBox6.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(25.110208511352539D), Telerik.Reporting.Drawing.Unit.Cm(0D));
     this.textBox6.Name     = "textBox6";
     this.textBox6.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(2.7816486358642578D), Telerik.Reporting.Drawing.Unit.Cm(0.60000008344650269D));
     this.textBox6.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Groove;
     this.textBox6.Style.BorderStyle.Top    = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox6.Style.Font.Bold          = true;
     this.textBox6.Style.VerticalAlign      = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox6.Value = "= Sum(Fields.Pagado)";
     //
     // sqlConnection1
     //
     this.sqlConnection1.ConnectionString = "Data Source=10.1.0.120;Initial Catalog=SIANCENTRAL;Persist Security Info=True;Use" +
                                            "r ID=sa;Password=sistemas";
     this.sqlConnection1.FireInfoMessageEventOnUserErrors = false;
     //
     // sqlCommand1
     //
     this.sqlCommand1.CommandText    = "Nivel5_SaldosClientePorPagar";
     this.sqlCommand1.CommandTimeout = 600;
     this.sqlCommand1.CommandType    = System.Data.CommandType.StoredProcedure;
     this.sqlCommand1.Connection     = this.sqlConnection1;
     this.sqlCommand1.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] {
         new System.Data.SqlClient.SqlParameter("@RETURN_VALUE", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.ReturnValue, false, ((byte)(0)), ((byte)(0)), "", System.Data.DataRowVersion.Current, null),
         new System.Data.SqlClient.SqlParameter("@FechaCorte", System.Data.SqlDbType.DateTime, 8),
         new System.Data.SqlClient.SqlParameter("@Dias", System.Data.SqlDbType.Int, 4),
         new System.Data.SqlClient.SqlParameter("@DiasRevision", System.Data.SqlDbType.Int, 4),
         new System.Data.SqlClient.SqlParameter("@Plazo", System.Data.SqlDbType.Int, 4),
         new System.Data.SqlClient.SqlParameter("@Vencimiento", System.Data.SqlDbType.Int, 4),
         new System.Data.SqlClient.SqlParameter("@TipoCte", System.Data.SqlDbType.Int, 4),
         new System.Data.SqlClient.SqlParameter("@Cd", System.Data.SqlDbType.Int, 4),
         new System.Data.SqlClient.SqlParameter("@Cte", System.Data.SqlDbType.Float, 8),
         new System.Data.SqlClient.SqlParameter("@Legal", System.Data.SqlDbType.Int, 4)
     });
     //
     // sqlSelectCommand1
     //
     this.sqlSelectCommand1.CommandText    = "Nivel5_SaldosClientePorPagar";
     this.sqlSelectCommand1.CommandTimeout = 600;
     this.sqlSelectCommand1.CommandType    = System.Data.CommandType.StoredProcedure;
     this.sqlSelectCommand1.Connection     = this.sqlConnection1;
     this.sqlSelectCommand1.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] {
         new System.Data.SqlClient.SqlParameter("@RETURN_VALUE", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.ReturnValue, false, ((byte)(0)), ((byte)(0)), "", System.Data.DataRowVersion.Current, null),
         new System.Data.SqlClient.SqlParameter("@FechaCorte", System.Data.SqlDbType.DateTime, 8),
         new System.Data.SqlClient.SqlParameter("@Dias", System.Data.SqlDbType.Int, 4),
         new System.Data.SqlClient.SqlParameter("@DiasRevision", System.Data.SqlDbType.Int, 4),
         new System.Data.SqlClient.SqlParameter("@Plazo", System.Data.SqlDbType.Int, 4),
         new System.Data.SqlClient.SqlParameter("@Vencimiento", System.Data.SqlDbType.Int, 4),
         new System.Data.SqlClient.SqlParameter("@TipoCte", System.Data.SqlDbType.Int, 4),
         new System.Data.SqlClient.SqlParameter("@Cd", System.Data.SqlDbType.Int, 4),
         new System.Data.SqlClient.SqlParameter("@Cte", System.Data.SqlDbType.Float, 8),
         new System.Data.SqlClient.SqlParameter("@Legal", System.Data.SqlDbType.Int, 4)
     });
     //
     // sqlDataAdapter1
     //
     this.sqlDataAdapter1.SelectCommand = this.sqlSelectCommand1;
     //
     // Rep_clienteMayorAdeudoDocPorPagar
     //
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.pageHeaderSection1,
         this.detail,
         this.pageFooterSection1
     });
     this.Name = "Rep_clienteMayorAdeudoDocPorPagar";
     this.PageSettings.Margins   = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Mm(25.399999618530273D), Telerik.Reporting.Drawing.Unit.Mm(25.399999618530273D), Telerik.Reporting.Drawing.Unit.Mm(25.399999618530273D), Telerik.Reporting.Drawing.Unit.Mm(25.399999618530273D));
     this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.A4;
     reportParameter1.Name       = "Conexion";
     reportParameter2.Name       = "Fecha_Corte";
     reportParameter2.Type       = Telerik.Reporting.ReportParameterType.DateTime;
     reportParameter3.Name       = "Fecha_Cierre";
     reportParameter3.Type       = Telerik.Reporting.ReportParameterType.DateTime;
     reportParameter4.Name       = "Dias";
     reportParameter4.Type       = Telerik.Reporting.ReportParameterType.Integer;
     reportParameter5.Name       = "Dias_Revision";
     reportParameter5.Type       = Telerik.Reporting.ReportParameterType.Integer;
     reportParameter6.Name       = "Vencidos";
     reportParameter6.Type       = Telerik.Reporting.ReportParameterType.Integer;
     reportParameter7.Name       = "cdi";
     reportParameter7.Type       = Telerik.Reporting.ReportParameterType.Integer;
     reportParameter8.Name       = "Id_Cte";
     reportParameter8.Type       = Telerik.Reporting.ReportParameterType.Integer;
     reportParameter9.Name       = "Legal";
     reportParameter9.Type       = Telerik.Reporting.ReportParameterType.Integer;
     this.ReportParameters.Add(reportParameter1);
     this.ReportParameters.Add(reportParameter2);
     this.ReportParameters.Add(reportParameter3);
     this.ReportParameters.Add(reportParameter4);
     this.ReportParameters.Add(reportParameter5);
     this.ReportParameters.Add(reportParameter6);
     this.ReportParameters.Add(reportParameter7);
     this.ReportParameters.Add(reportParameter8);
     this.ReportParameters.Add(reportParameter9);
     this.Style.BackgroundColor = System.Drawing.Color.White;
     styleRule1.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
         new Telerik.Reporting.Drawing.TypeSelector(typeof(Telerik.Reporting.TextItemBase)),
         new Telerik.Reporting.Drawing.TypeSelector(typeof(Telerik.Reporting.HtmlTextBox))
     });
     styleRule1.Style.Padding.Left  = Telerik.Reporting.Drawing.Unit.Point(2D);
     styleRule1.Style.Padding.Right = Telerik.Reporting.Drawing.Unit.Point(2D);
     this.StyleSheet.AddRange(new Telerik.Reporting.Drawing.StyleRule[] {
         styleRule1
     });
     this.Width           = Telerik.Reporting.Drawing.Unit.Cm(30.87541389465332D);
     this.NeedDataSource += new System.EventHandler(this.Rep_clienteMayorAdeudoDocPorPagar_NeedDataSource);
     ((System.ComponentModel.ISupportInitialize)(this.rep_ClienteMayorAdeudoDocDet2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.Reporting.InstanceReportSource instanceReportSource1 = new Telerik.Reporting.InstanceReportSource();
     this.reportProveedores1 = new Medica2.Farmacia.Proveedores.Reportes.ReportProveedores();
     this.reportViewer1      = new Telerik.ReportViewer.WinForms.ReportViewer();
     this.button1            = new System.Windows.Forms.Button();
     this.dateTimePicker2    = new System.Windows.Forms.DateTimePicker();
     this.dateTimePicker1    = new System.Windows.Forms.DateTimePicker();
     this.label2             = new System.Windows.Forms.Label();
     this.label1             = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.reportProveedores1)).BeginInit();
     this.SuspendLayout();
     //
     // reportProveedores1
     //
     this.reportProveedores1.Name = "ReportProveedores";
     //
     // reportViewer1
     //
     this.reportViewer1.Location          = new System.Drawing.Point(0, 75);
     this.reportViewer1.Margin            = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.reportViewer1.Name              = "reportViewer1";
     instanceReportSource1.ReportDocument = this.reportProveedores1;
     this.reportViewer1.ReportSource      = instanceReportSource1;
     this.reportViewer1.Size              = new System.Drawing.Size(776, 519);
     this.reportViewer1.TabIndex          = 0;
     this.reportViewer1.Load             += new System.EventHandler(this.reportViewer1_Load);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(675, 34);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 50;
     this.button1.Text     = "Generar";
     this.button1.UseVisualStyleBackColor = true;
     //
     // dateTimePicker2
     //
     this.dateTimePicker2.Location = new System.Drawing.Point(409, 32);
     this.dateTimePicker2.Name     = "dateTimePicker2";
     this.dateTimePicker2.Size     = new System.Drawing.Size(244, 22);
     this.dateTimePicker2.TabIndex = 49;
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.Location = new System.Drawing.Point(64, 32);
     this.dateTimePicker1.Name     = "dateTimePicker1";
     this.dateTimePicker1.Size     = new System.Drawing.Size(244, 22);
     this.dateTimePicker1.TabIndex = 48;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(349, 37);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(45, 17);
     this.label2.TabIndex = 47;
     this.label2.Text     = "Hasta";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(9, 37);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(49, 17);
     this.label1.TabIndex = 46;
     this.label1.Text     = "Desde";
     //
     // RProveedores
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(772, 611);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.dateTimePicker2);
     this.Controls.Add(this.dateTimePicker1);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.reportViewer1);
     this.Name = "RProveedores";
     this.Text = "RProveedores";
     ((System.ComponentModel.ISupportInitialize)(this.reportProveedores1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <summary>
        /// Required method for telerik Reporting designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RptInvoiceMain));
            Telerik.Reporting.InstanceReportSource instanceReportSource1 = new Telerik.Reporting.InstanceReportSource();
            Telerik.Reporting.InstanceReportSource instanceReportSource2 = new Telerik.Reporting.InstanceReportSource();
            Telerik.Reporting.Group group1 = new Telerik.Reporting.Group();
            Telerik.Reporting.ReportParameter reportParameter1 = new Telerik.Reporting.ReportParameter();
            this.rptInvoiceLine1 = new AriCliReport.RptInvoiceLine();
            this.reptInvoiceVAT1 = new AriCliReport.ReptInvoiceVAT();
            this.sqlInvoiceFilter = new Telerik.Reporting.SqlDataSource();
            this.pageHeaderSection1 = new Telerik.Reporting.PageHeaderSection();
            this.detail = new Telerik.Reporting.DetailSection();
            this.pageFooterSection1 = new Telerik.Reporting.PageFooterSection();
            this.sqlInvoice = new Telerik.Reporting.SqlDataSource();
            this.groupFooterSection1 = new Telerik.Reporting.GroupFooterSection();
            this.groupHeaderSection1 = new Telerik.Reporting.GroupHeaderSection();
            this.textBox1 = new Telerik.Reporting.TextBox();
            this.textBox17 = new Telerik.Reporting.TextBox();
            this.textBox2 = new Telerik.Reporting.TextBox();
            this.textBox3 = new Telerik.Reporting.TextBox();
            this.textBox4 = new Telerik.Reporting.TextBox();
            this.textBox5 = new Telerik.Reporting.TextBox();
            this.textBox6 = new Telerik.Reporting.TextBox();
            this.textBox7 = new Telerik.Reporting.TextBox();
            this.textBox8 = new Telerik.Reporting.TextBox();
            this.textBox9 = new Telerik.Reporting.TextBox();
            this.textBox10 = new Telerik.Reporting.TextBox();
            this.textBox11 = new Telerik.Reporting.TextBox();
            this.textBox12 = new Telerik.Reporting.TextBox();
            this.textBox13 = new Telerik.Reporting.TextBox();
            this.textBox14 = new Telerik.Reporting.TextBox();
            this.textBox15 = new Telerik.Reporting.TextBox();
            this.textBox16 = new Telerik.Reporting.TextBox();
            this.textBox18 = new Telerik.Reporting.TextBox();
            this.textBox19 = new Telerik.Reporting.TextBox();
            this.subReport1 = new Telerik.Reporting.SubReport();
            this.textBox20 = new Telerik.Reporting.TextBox();
            this.textBox21 = new Telerik.Reporting.TextBox();
            this.textBox22 = new Telerik.Reporting.TextBox();
            this.textBox23 = new Telerik.Reporting.TextBox();
            this.textBox24 = new Telerik.Reporting.TextBox();
            this.textBox25 = new Telerik.Reporting.TextBox();
            this.textBox26 = new Telerik.Reporting.TextBox();
            this.subReport2 = new Telerik.Reporting.SubReport();
            ((System.ComponentModel.ISupportInitialize)(this.rptInvoiceLine1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.reptInvoiceVAT1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // rptInvoiceLine1
            // 
            this.rptInvoiceLine1.Name = "rptInvoiceLine1";
            // 
            // reptInvoiceVAT1
            // 
            this.reptInvoiceVAT1.Name = "reptInvoiceVAT1";
            // 
            // sqlInvoiceFilter
            // 
            this.sqlInvoiceFilter.ConnectionString = "AriClinicContext";
            this.sqlInvoiceFilter.Name = "sqlInvoiceFilter";
            this.sqlInvoiceFilter.SelectCommand = "SELECT invoice_id, CONCAT(YEAR,\"-\",RIGHT(CONCAT(\"000000\",invoice_number),6),\"-\",S" +
    "ERIAL) AS keyid \r\nFROM invoice ORDER BY 2 DESC;";
            // 
            // pageHeaderSection1
            // 
            this.pageHeaderSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(0.23622052371501923D);
            this.pageHeaderSection1.Name = "pageHeaderSection1";
            // 
            // detail
            // 
            this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(0.19685046374797821D);
            this.detail.Name = "detail";
            this.detail.Style.Visible = false;
            // 
            // pageFooterSection1
            // 
            this.pageFooterSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D);
            this.pageFooterSection1.Name = "pageFooterSection1";
            // 
            // sqlInvoice
            // 
            this.sqlInvoice.ConnectionString = "AriClinicContext";
            this.sqlInvoice.Name = "sqlInvoice";
            this.sqlInvoice.Parameters.AddRange(new Telerik.Reporting.SqlDataSourceParameter[] {
            new Telerik.Reporting.SqlDataSourceParameter("@InvoiceKey", System.Data.DbType.Int32, "=Parameters.InvoiceKey.Value")});
            this.sqlInvoice.SelectCommand = resources.GetString("sqlInvoice.SelectCommand");
            // 
            // groupFooterSection1
            // 
            this.groupFooterSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(0.10315004736185074D);
            this.groupFooterSection1.Name = "groupFooterSection1";
            this.groupFooterSection1.PageBreak = Telerik.Reporting.PageBreak.None;
            // 
            // groupHeaderSection1
            // 
            this.groupHeaderSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(4.7637796401977539D);
            this.groupHeaderSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.textBox1,
            this.textBox17,
            this.textBox2,
            this.textBox3,
            this.textBox4,
            this.textBox5,
            this.textBox6,
            this.textBox7,
            this.textBox8,
            this.textBox9,
            this.textBox10,
            this.textBox11,
            this.textBox12,
            this.textBox13,
            this.textBox14,
            this.textBox15,
            this.textBox16,
            this.textBox18,
            this.textBox19,
            this.subReport1,
            this.textBox20,
            this.textBox21,
            this.textBox22,
            this.textBox23,
            this.textBox24,
            this.textBox25,
            this.textBox26,
            this.subReport2});
            this.groupHeaderSection1.Name = "groupHeaderSection1";
            // 
            // textBox1
            // 
            this.textBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.2000002861022949D), Telerik.Reporting.Drawing.Unit.Inch(0D));
            this.textBox1.Name = "textBox1";
            this.textBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.3228347301483154D), Telerik.Reporting.Drawing.Unit.Inch(0.29999995231628418D));
            this.textBox1.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox1.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(18D);
            this.textBox1.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox1.Value = "FACTURA";
            // 
            // textBox17
            // 
            this.textBox17.Format = "{0:dd/MM/yyyy}";
            this.textBox17.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.0377197265625D));
            this.textBox17.Name = "textBox17";
            this.textBox17.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.4000003337860107D), Telerik.Reporting.Drawing.Unit.Inch(0.31863212585449219D));
            this.textBox17.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox17.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(15D);
            this.textBox17.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox17.Value = "= Fields.company_name";
            // 
            // textBox2
            // 
            this.textBox2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Mm(0.0010012307902798057D), Telerik.Reporting.Drawing.Unit.Mm(9.0533351898193359D));
            this.textBox2.Name = "textBox2";
            this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Mm(12.998998641967773D), Telerik.Reporting.Drawing.Unit.Mm(8.0932559967041016D));
            this.textBox2.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox2.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(15D);
            this.textBox2.Value = "CIF:";
            // 
            // textBox3
            // 
            this.textBox3.Format = "{0:dd/MM/yyyy}";
            this.textBox3.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.5118897557258606D), Telerik.Reporting.Drawing.Unit.Inch(0.3564305305480957D));
            this.textBox3.Name = "textBox3";
            this.textBox3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.8881103992462158D), Telerik.Reporting.Drawing.Unit.Inch(0.31863212585449219D));
            this.textBox3.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox3.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(15D);
            this.textBox3.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox3.Value = "= Fields.company_vat";
            // 
            // textBox4
            // 
            this.textBox4.Format = "{0:dd/MM/yyyy}";
            this.textBox4.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.67514133453369141D));
            this.textBox4.Name = "textBox4";
            this.textBox4.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.3307089805603027D), Telerik.Reporting.Drawing.Unit.Inch(0.23037052154541016D));
            this.textBox4.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox4.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            this.textBox4.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox4.Value = "= Fields.street";
            // 
            // textBox5
            // 
            this.textBox5.Format = "{0:dd/MM/yyyy}";
            this.textBox5.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D), Telerik.Reporting.Drawing.Unit.Inch(0.9055907130241394D));
            this.textBox5.Name = "textBox5";
            this.textBox5.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2204328775405884D), Telerik.Reporting.Drawing.Unit.Inch(0.23037052154541016D));
            this.textBox5.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox5.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            this.textBox5.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox5.Value = "= Fields.post_code";
            // 
            // textBox6
            // 
            this.textBox6.Format = "{0:dd/MM/yyyy}";
            this.textBox6.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.2205511331558228D), Telerik.Reporting.Drawing.Unit.Inch(0.9055907130241394D));
            this.textBox6.Name = "textBox6";
            this.textBox6.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.1101577281951904D), Telerik.Reporting.Drawing.Unit.Inch(0.23037052154541016D));
            this.textBox6.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox6.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            this.textBox6.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox6.Value = "= Fields.city";
            // 
            // textBox7
            // 
            this.textBox7.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.2000002861022949D), Telerik.Reporting.Drawing.Unit.Inch(0.3000786304473877D));
            this.textBox7.Name = "textBox7";
            this.textBox7.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.66929197311401367D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox7.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox7.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox7.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox7.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            this.textBox7.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox7.Value = "Serie";
            // 
            // textBox8
            // 
            this.textBox8.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.9086613655090332D), Telerik.Reporting.Drawing.Unit.Inch(0.3000786304473877D));
            this.textBox8.Name = "textBox8";
            this.textBox8.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.78740197420120239D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox8.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox8.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox8.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox8.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            this.textBox8.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox8.Value = "Año";
            // 
            // textBox9
            // 
            this.textBox9.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(6.7748031616210938D), Telerik.Reporting.Drawing.Unit.Inch(0.30007871985435486D));
            this.textBox9.Name = "textBox9";
            this.textBox9.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.74803179502487183D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox9.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox9.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox9.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox9.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            this.textBox9.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox9.Value = "Número";
            // 
            // textBox10
            // 
            this.textBox10.Format = "{0:dd/MM/yyyy}";
            this.textBox10.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.2000002861022949D), Telerik.Reporting.Drawing.Unit.Inch(0.500157356262207D));
            this.textBox10.Name = "textBox10";
            this.textBox10.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.66929179430007935D), Telerik.Reporting.Drawing.Unit.Inch(0.23037052154541016D));
            this.textBox10.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox10.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            this.textBox10.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox10.Value = "= Fields.serial";
            // 
            // textBox11
            // 
            this.textBox11.Format = "{0:0000}";
            this.textBox11.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.9086613655090332D), Telerik.Reporting.Drawing.Unit.Inch(0.500157356262207D));
            this.textBox11.Name = "textBox11";
            this.textBox11.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.78740185499191284D), Telerik.Reporting.Drawing.Unit.Inch(0.23037052154541016D));
            this.textBox11.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox11.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            this.textBox11.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox11.Value = "= Fields.year";
            // 
            // textBox12
            // 
            this.textBox12.Format = "{0:000000}";
            this.textBox12.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(6.7748031616210938D), Telerik.Reporting.Drawing.Unit.Inch(0.50015741586685181D));
            this.textBox12.Name = "textBox12";
            this.textBox12.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.748030960559845D), Telerik.Reporting.Drawing.Unit.Inch(0.23037052154541016D));
            this.textBox12.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox12.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            this.textBox12.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox12.Value = "= Fields.invoice_number";
            // 
            // textBox13
            // 
            this.textBox13.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.6929134130477905D), Telerik.Reporting.Drawing.Unit.Inch(1.6141732931137085D));
            this.textBox13.Name = "textBox13";
            this.textBox13.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.6456694602966309D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox13.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox13.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox13.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox13.Style.Font.Bold = true;
            this.textBox13.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            this.textBox13.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox13.Value = "Cliente";
            // 
            // textBox14
            // 
            this.textBox14.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(6.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(1.6141732931137085D));
            this.textBox14.Name = "textBox14";
            this.textBox14.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1417320966720581D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox14.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox14.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox14.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox14.Style.Font.Bold = true;
            this.textBox14.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            this.textBox14.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox14.Value = "NIF";
            // 
            // textBox15
            // 
            this.textBox15.Format = "{0:dd/MM/yyyy}";
            this.textBox15.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.6929134130477905D), Telerik.Reporting.Drawing.Unit.Inch(1.8503937721252441D));
            this.textBox15.Name = "textBox15";
            this.textBox15.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.6456694602966309D), Telerik.Reporting.Drawing.Unit.Inch(0.23037052154541016D));
            this.textBox15.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox15.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            this.textBox15.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox15.Value = "= Fields.cus_name";
            // 
            // textBox16
            // 
            this.textBox16.Format = "{0:dd/MM/yyyy}";
            this.textBox16.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(6.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(1.8503937721252441D));
            this.textBox16.Name = "textBox16";
            this.textBox16.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.141731858253479D), Telerik.Reporting.Drawing.Unit.Inch(0.23037052154541016D));
            this.textBox16.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox16.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            this.textBox16.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox16.Value = "= Fields.cus_vat";
            // 
            // textBox18
            // 
            this.textBox18.Format = "{0:dd/MM/yyyy}";
            this.textBox18.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(1.1360400915145874D));
            this.textBox18.Name = "textBox18";
            this.textBox18.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.7559053897857666D), Telerik.Reporting.Drawing.Unit.Inch(0.23037052154541016D));
            this.textBox18.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox18.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            this.textBox18.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox18.Value = "= Fields.province";
            // 
            // textBox19
            // 
            this.textBox19.Format = "{0:dd/MM/yyyy}";
            this.textBox19.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.8346455097198486D), Telerik.Reporting.Drawing.Unit.Inch(1.1360400915145874D));
            this.textBox19.Name = "textBox19";
            this.textBox19.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.496063232421875D), Telerik.Reporting.Drawing.Unit.Inch(0.23037052154541016D));
            this.textBox19.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox19.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            this.textBox19.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox19.Value = "= Fields.country";
            // 
            // subReport1
            // 
            this.subReport1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Mm(5.0799989700317383D), Telerik.Reporting.Drawing.Unit.Mm(72.740005493164062D));
            this.subReport1.Name = "subReport1";
            instanceReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("InvoiceId", "=Fields.invoice_id"));
            instanceReportSource1.ReportDocument = this.rptInvoiceLine1;
            this.subReport1.ReportSource = instanceReportSource1;
            this.subReport1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Mm(186.99998474121094D), Telerik.Reporting.Drawing.Unit.Mm(16D));
            this.subReport1.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            // 
            // textBox20
            // 
            this.textBox20.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Mm(132.08000183105469D), Telerik.Reporting.Drawing.Unit.Mm(21.940000534057617D));
            this.textBox20.Name = "textBox20";
            this.textBox20.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Mm(17.00001335144043D), Telerik.Reporting.Drawing.Unit.Mm(5.9225873947143555D));
            this.textBox20.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox20.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            this.textBox20.Value = "Fecha:";
            // 
            // textBox21
            // 
            this.textBox21.Format = "{0:dd/MM/yyyy}";
            this.textBox21.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.8693709373474121D), Telerik.Reporting.Drawing.Unit.Inch(0.86658173799514771D));
            this.textBox21.Name = "textBox21";
            this.textBox21.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6534633636474609D), Telerik.Reporting.Drawing.Unit.Inch(0.23037052154541016D));
            this.textBox21.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox21.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            this.textBox21.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox21.Value = "= Fields.invoice_date";
            // 
            // textBox22
            // 
            this.textBox22.Format = "{0:dd/MM/yyyy}";
            this.textBox22.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.6929134130477905D), Telerik.Reporting.Drawing.Unit.Inch(2.0808432102203369D));
            this.textBox22.Name = "textBox22";
            this.textBox22.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.6456694602966309D), Telerik.Reporting.Drawing.Unit.Inch(0.23037052154541016D));
            this.textBox22.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox22.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(11D);
            this.textBox22.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox22.Value = "= Fields.cus_address";
            // 
            // textBox23
            // 
            this.textBox23.Format = "{0:dd/MM/yyyy}";
            this.textBox23.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.6929134130477905D), Telerik.Reporting.Drawing.Unit.Inch(2.3112924098968506D));
            this.textBox23.Name = "textBox23";
            this.textBox23.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6070867776870728D), Telerik.Reporting.Drawing.Unit.Inch(0.23037052154541016D));
            this.textBox23.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox23.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(11D);
            this.textBox23.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox23.Value = "= Fields.cus_postcode";
            // 
            // textBox24
            // 
            this.textBox24.Format = "{0:dd/MM/yyyy}";
            this.textBox24.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.3000791072845459D), Telerik.Reporting.Drawing.Unit.Inch(2.3112924098968506D));
            this.textBox24.Name = "textBox24";
            this.textBox24.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.0385036468505859D), Telerik.Reporting.Drawing.Unit.Inch(0.23037052154541016D));
            this.textBox24.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox24.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(11D);
            this.textBox24.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox24.Value = "= Fields.cus_city";
            // 
            // textBox25
            // 
            this.textBox25.Format = "{0:dd/MM/yyyy}";
            this.textBox25.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.6929134130477905D), Telerik.Reporting.Drawing.Unit.Inch(2.5417418479919434D));
            this.textBox25.Name = "textBox25";
            this.textBox25.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.5070867538452148D), Telerik.Reporting.Drawing.Unit.Inch(0.23037052154541016D));
            this.textBox25.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox25.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(11D);
            this.textBox25.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox25.Value = "= Fields.cus_province";
            // 
            // textBox26
            // 
            this.textBox26.Format = "{0:dd/MM/yyyy}";
            this.textBox26.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.2000789642333984D), Telerik.Reporting.Drawing.Unit.Inch(2.5417418479919434D));
            this.textBox26.Name = "textBox26";
            this.textBox26.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.1385030746459961D), Telerik.Reporting.Drawing.Unit.Inch(0.23037052154541016D));
            this.textBox26.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox26.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(11D);
            this.textBox26.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox26.Value = "= Fields.cus_country";
            // 
            // subReport2
            // 
            this.subReport2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Mm(5.0799989700317383D), Telerik.Reporting.Drawing.Unit.Mm(93.05999755859375D));
            this.subReport2.Name = "subReport2";
            instanceReportSource2.Parameters.Add(new Telerik.Reporting.Parameter("InvoiceIdVat", "=Fields.invoice_id"));
            instanceReportSource2.ReportDocument = this.reptInvoiceVAT1;
            this.subReport2.ReportSource = instanceReportSource2;
            this.subReport2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Mm(186.99998474121094D), Telerik.Reporting.Drawing.Unit.Mm(21.000001907348633D));
            // 
            // RptInvoiceMain
            // 
            this.DataSource = this.sqlInvoice;
            group1.GroupFooter = this.groupFooterSection1;
            group1.GroupHeader = this.groupHeaderSection1;
            group1.Groupings.Add(new Telerik.Reporting.Grouping("=Fields.invoice_id"));
            group1.Name = "invoiceId";
            this.Groups.AddRange(new Telerik.Reporting.Group[] {
            group1});
            this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.groupHeaderSection1,
            this.groupFooterSection1,
            this.pageHeaderSection1,
            this.detail,
            this.pageFooterSection1});
            this.Name = "RptInvoiceMain";
            this.PageSettings.Landscape = false;
            this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Mm(5D), Telerik.Reporting.Drawing.Unit.Mm(5D), Telerik.Reporting.Drawing.Unit.Mm(5D), Telerik.Reporting.Drawing.Unit.Mm(5D));
            this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.A4;
            reportParameter1.AvailableValues.DataSource = this.sqlInvoiceFilter;
            reportParameter1.AvailableValues.DisplayMember = "= Fields.keyid";
            reportParameter1.AvailableValues.ValueMember = "= Fields.invoice_id";
            reportParameter1.MultiValue = true;
            reportParameter1.Name = "InvoiceKey";
            reportParameter1.Text = "Factura ";
            reportParameter1.Type = Telerik.Reporting.ReportParameterType.Integer;
            reportParameter1.Visible = true;
            this.ReportParameters.Add(reportParameter1);
            this.Style.BackgroundColor = System.Drawing.Color.White;
            this.UnitOfMeasure = Telerik.Reporting.Drawing.UnitType.Mm;
            this.Width = Telerik.Reporting.Drawing.Unit.Inch(7.7559056282043457D);
            ((System.ComponentModel.ISupportInitialize)(this.rptInvoiceLine1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.reptInvoiceVAT1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();

        }
Beispiel #39
0
 /// <summary>
 /// Required method for telerik Reporting designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.Reporting.TableGroup           tableGroup1           = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup           tableGroup2           = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.InstanceReportSource instanceReportSource1 = new Telerik.Reporting.InstanceReportSource();
     Telerik.Reporting.ReportParameter      reportParameter1      = new Telerik.Reporting.ReportParameter();
     this.detail                    = new Telerik.Reporting.DetailSection();
     this.list2                     = new Telerik.Reporting.List();
     this.panel2                    = new Telerik.Reporting.Panel();
     this.textBox6                  = new Telerik.Reporting.TextBox();
     this.textBox2                  = new Telerik.Reporting.TextBox();
     this.subReport1                = new Telerik.Reporting.SubReport();
     this.objectDataSource1         = new Telerik.Reporting.ObjectDataSource();
     this.pdDutyKSADetailSubReport2 = new HCMS.JNP.Reports.PDDutyKSADetailSubReport();
     this.pdDutyKSADetailSubReport1 = new HCMS.JNP.Reports.PDDutyKSADetailSubReport();
     ((System.ComponentModel.ISupportInitialize)(this.pdDutyKSADetailSubReport2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pdDutyKSADetailSubReport1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(0.91474074125289917D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.list2
     });
     this.detail.KeepTogether = false;
     this.detail.Name         = "detail";
     //
     // list2
     //
     this.list2.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(6.4800000190734863D)));
     this.list2.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(Telerik.Reporting.Drawing.Unit.Inch(0.91470128297805786D)));
     this.list2.Body.SetCellContent(0, 0, this.panel2);
     tableGroup1.Name = "ColumnGroup";
     this.list2.ColumnGroups.Add(tableGroup1);
     this.list2.DataSource = this.objectDataSource1;
     this.list2.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.panel2
     });
     this.list2.KeepTogether = false;
     this.list2.Location     = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D));
     this.list2.Name         = "list2";
     tableGroup2.Groupings.AddRange(new Telerik.Reporting.Grouping[] {
         new Telerik.Reporting.Grouping(null)
     });
     tableGroup2.Name = "DetailGroup";
     this.list2.RowGroups.Add(tableGroup2);
     this.list2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.4800000190734863D), Telerik.Reporting.Drawing.Unit.Inch(0.91470128297805786D));
     this.list2.Sortings.AddRange(new Telerik.Reporting.Sorting[] {
         new Telerik.Reporting.Sorting("=Fields.PercentageOfTime", Telerik.Reporting.SortDirection.Desc)
     });
     this.list2.Style.Padding.Bottom = Telerik.Reporting.Drawing.Unit.Inch(0.5D);
     //
     // panel2
     //
     this.panel2.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.textBox6,
         this.textBox2,
         this.subReport1
     });
     this.panel2.KeepTogether = false;
     this.panel2.Name         = "panel2";
     this.panel2.Size         = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.4800000190734863D), Telerik.Reporting.Drawing.Unit.Inch(0.91470128297805786D));
     //
     // textBox6
     //
     this.textBox6.Location  = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D), Telerik.Reporting.Drawing.Unit.Inch(0.34378933906555176D));
     this.textBox6.Name      = "textBox6";
     this.textBox6.Size      = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.4532942771911621D), Telerik.Reporting.Drawing.Unit.Inch(0.27000001072883606D));
     this.textBox6.StyleName = "";
     this.textBox6.Value     = "= \"Percentage of time: \" + Fields.PercentageOfTime";
     //
     // textBox2
     //
     this.textBox2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D), Telerik.Reporting.Drawing.Unit.Inch(3.9339065551757812E-05D));
     this.textBox2.Name     = "textBox2";
     this.textBox2.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.4532942771911621D), Telerik.Reporting.Drawing.Unit.Inch(0.31250005960464478D));
     this.textBox2.Value    = "= \"Duty Description: \" + Fields.DutyDescription";
     //
     // subReport1
     //
     this.subReport1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.61470144987106323D));
     this.subReport1.Name     = "subReport1";
     instanceReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("dutyID", "=Fields.DutyID"));
     instanceReportSource1.ReportDocument = this.pdDutyKSADetailSubReport2;
     this.subReport1.ReportSource         = instanceReportSource1;
     this.subReport1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.453333854675293D), Telerik.Reporting.Drawing.Unit.Inch(0.299999862909317D));
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataMember = "GetData";
     this.objectDataSource1.DataSource = typeof(HCMS.JNP.Reports.PDDutyDataSetTableAdapters.spr_GetPositionDutyByPositionDescriptionIDTableAdapter);
     this.objectDataSource1.Name       = "objectDataSource1";
     this.objectDataSource1.Parameters.AddRange(new Telerik.Reporting.ObjectDataSourceParameter[] {
         new Telerik.Reporting.ObjectDataSourceParameter("positionDescriptionID", typeof(System.Nullable <long>), "=Parameters.positionDescriptionID.Value")
     });
     //
     // pdDutyKSADetailSubReport2
     //
     this.pdDutyKSADetailSubReport2.Name = "PDDutyKSADetailSubReport";
     //
     // pdDutyKSADetailSubReport1
     //
     this.pdDutyKSADetailSubReport1.Name = "PDDutyKSADetailSubReport";
     //
     // PDDutyKSADetailReport
     //
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.detail
     });
     this.Name = "PDFDutyDetailReport";
     this.PageSettings.Margins.Bottom = Telerik.Reporting.Drawing.Unit.Inch(1D);
     this.PageSettings.Margins.Left   = Telerik.Reporting.Drawing.Unit.Inch(1D);
     this.PageSettings.Margins.Right  = Telerik.Reporting.Drawing.Unit.Inch(1D);
     this.PageSettings.Margins.Top    = Telerik.Reporting.Drawing.Unit.Inch(1D);
     this.PageSettings.PaperKind      = System.Drawing.Printing.PaperKind.Letter;
     reportParameter1.Name            = "positionDescriptionID";
     reportParameter1.Text            = "positionDescriptionID";
     reportParameter1.Type            = Telerik.Reporting.ReportParameterType.Integer;
     reportParameter1.Visible         = true;
     this.ReportParameters.Add(reportParameter1);
     this.Style.BackgroundColor = System.Drawing.Color.White;
     this.Width = Telerik.Reporting.Drawing.Unit.Inch(6.4800000190734863D);
     ((System.ComponentModel.ISupportInitialize)(this.pdDutyKSADetailSubReport2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pdDutyKSADetailSubReport1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.Reporting.InstanceReportSource instanceReportSource1 = new Telerik.Reporting.InstanceReportSource();
     this.r_Empleado1     = new Medica2.Administracion.Reportes.R_Empleado();
     this.reportViewer1   = new Telerik.ReportViewer.WinForms.ReportViewer();
     this.button1         = new System.Windows.Forms.Button();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.label2          = new System.Windows.Forms.Label();
     this.label1          = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.r_Empleado1)).BeginInit();
     this.SuspendLayout();
     //
     // r_Empleado1
     //
     this.r_Empleado1.Name = "R_Empleado";
     //
     // reportViewer1
     //
     this.reportViewer1.Location = new System.Drawing.Point(0, 61);
     this.reportViewer1.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.reportViewer1.Name     = "reportViewer1";
     this.reportViewer1.ReportEngineConnection = "engine=Embedded";
     instanceReportSource1.ReportDocument      = this.r_Empleado1;
     this.reportViewer1.ReportSource           = instanceReportSource1;
     this.reportViewer1.Size     = new System.Drawing.Size(939, 389);
     this.reportViewer1.TabIndex = 0;
     this.reportViewer1.Load    += new System.EventHandler(this.reportViewer1_Load);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(740, 23);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 45;
     this.button1.Text     = "Generar";
     this.button1.UseVisualStyleBackColor = true;
     //
     // dateTimePicker2
     //
     this.dateTimePicker2.Location = new System.Drawing.Point(474, 21);
     this.dateTimePicker2.Name     = "dateTimePicker2";
     this.dateTimePicker2.Size     = new System.Drawing.Size(244, 22);
     this.dateTimePicker2.TabIndex = 44;
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.Location = new System.Drawing.Point(129, 21);
     this.dateTimePicker1.Name     = "dateTimePicker1";
     this.dateTimePicker1.Size     = new System.Drawing.Size(244, 22);
     this.dateTimePicker1.TabIndex = 43;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(414, 26);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(45, 17);
     this.label2.TabIndex = 42;
     this.label2.Text     = "Hasta";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(74, 26);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(49, 17);
     this.label1.TabIndex = 41;
     this.label1.Text     = "Desde";
     //
     // R_Empleados
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(939, 450);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.dateTimePicker2);
     this.Controls.Add(this.dateTimePicker1);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.reportViewer1);
     this.Name = "R_Empleados";
     this.Text = "R_Empleados";
     ((System.ComponentModel.ISupportInitialize)(this.r_Empleado1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        protected void RadBtnSaveLetter_Click(object sender, EventArgs e)
        {
            //Saving

            strMagnumID = Request.QueryString["MagnumID"].ToString();
            strQuoteAuditID = Request.QueryString["QuoteAuditID"].ToString();
            string strQuoteOptionAuditTrailIDO1 = "0";
            string strQuoteOptionAuditTrailIDO2 = "0";
            string strQuoteOptionAuditTrailIDO3 = "0";
            string strQuoteOptionAuditTrailIDO4 = "0";
            string strQuoteOptionAuditTrailIDO5 = "0";
            string strMessageMain = string.Empty;
            string strMessage = string.Empty;
            int intcheckCount = 0;

            try
            {
                Telerik.Web.UI.RadGrid OptionsGrid = (Telerik.Web.UI.RadGrid)RadPanelBar1.FindItemByValue("PanelItem1").FindControl("RadGridOptions");

                #region "Get options"
                foreach (GridDataItem item in OptionsGrid.Items)
                {
                    if ((item.FindControl("CheckBoxSelect") as System.Web.UI.WebControls.CheckBox).Checked == true)
                    {
                        intcheckCount += 1;
                        #region "Old"
                        //switch (item.Cells[3].Text.Trim())
                        //{
                        //    case "1":
                        //        if (strQuoteOptionAuditTrailIDO1 == "0")
                        //            strQuoteOptionAuditTrailIDO1 = item.Cells[2].Text;
                        //        else
                        //        {
                        //            blnContinue = false;
                        //        }
                        //        break;
                        //    case "2":
                        //        if (strQuoteOptionAuditTrailIDO2 == "0")
                        //            strQuoteOptionAuditTrailIDO2 = item.Cells[2].Text;
                        //        else
                        //        {
                        //            blnContinue = false;
                        //        }
                        //        break;
                        //    case "3":
                        //        if (strQuoteOptionAuditTrailIDO3 == "0")
                        //            strQuoteOptionAuditTrailIDO3 = item.Cells[2].Text;
                        //        else
                        //        {
                        //            blnContinue = false;
                        //        }
                        //        break;
                        //    case "4":
                        //        if (strQuoteOptionAuditTrailIDO4 == "0")
                        //            strQuoteOptionAuditTrailIDO4 = item.Cells[2].Text;
                        //        else
                        //        {
                        //            blnContinue = false;
                        //        }
                        //        break;
                        //    case "5":
                        //        if (strQuoteOptionAuditTrailIDO5 == "0")
                        //            strQuoteOptionAuditTrailIDO5 = item.Cells[2].Text;
                        //        else
                        //        {
                        //            blnContinue = false;
                        //        }
                        //        break;
                        //}
                        #endregion

                        switch (intcheckCount)
                        {
                            case 1:
                                strQuoteOptionAuditTrailIDO1 = item.Cells[2].Text;
                                break;
                            case 2:
                                strQuoteOptionAuditTrailIDO2 = item.Cells[2].Text;
                                break;
                            case 3:
                                strQuoteOptionAuditTrailIDO3 = item.Cells[2].Text;
                                break;
                            case 4:
                                strQuoteOptionAuditTrailIDO4 = item.Cells[2].Text;
                                break;
                            case 5:
                                strQuoteOptionAuditTrailIDO5 = item.Cells[2].Text;
                                break;
                        }
                    }
                }
                #endregion

                DataSet DS = new DataSet();

                #region "SQL"
                SqlConnection sqlConnectionX;
                SqlCommand sqlCommandX;
                SqlParameter sqlParam;
                SqlDataReader sqlDR;

                sqlConnectionX = new SqlConnection(ConfigurationManager.AppSettings["SQLConnection"]);
                sqlConnectionX.Open();

                sqlCommandX = new SqlCommand();
                sqlCommandX.Connection = sqlConnectionX;
                sqlCommandX.CommandType = CommandType.StoredProcedure;
                sqlCommandX.CommandText = "spx_SELECT_QuoteDetailByAuditTrailID_Detailed";

                sqlParam = new SqlParameter("QuoteAuditTrailID", strQuoteAuditID);
                sqlCommandX.Parameters.Add(sqlParam);
                sqlParam = new SqlParameter("QuoteOption1ID", strQuoteOptionAuditTrailIDO1);
                sqlCommandX.Parameters.Add(sqlParam);
                sqlParam = new SqlParameter("QuoteOption2ID", strQuoteOptionAuditTrailIDO2);
                sqlCommandX.Parameters.Add(sqlParam);
                sqlParam = new SqlParameter("QuoteOption3ID", strQuoteOptionAuditTrailIDO3);
                sqlCommandX.Parameters.Add(sqlParam);
                sqlParam = new SqlParameter("QuoteOption4ID", strQuoteOptionAuditTrailIDO4);
                sqlCommandX.Parameters.Add(sqlParam);
                sqlParam = new SqlParameter("QuoteOption5ID", strQuoteOptionAuditTrailIDO5);
                sqlCommandX.Parameters.Add(sqlParam);

                sqlDR = sqlCommandX.ExecuteReader();
                DataTable dt = new DataTable("Info");
                dt.Load(sqlDR);
                DS.Tables.Add(dt);

                sqlDR.Close();
                sqlCommandX.Cancel();
                sqlCommandX.Dispose();

                #endregion

                // Creating and configuring the ObjectDataSource component:
                var objectDataSource = new Telerik.Reporting.ObjectDataSource();
                objectDataSource.DataSource = DS; // GetData returns a DataSet with three tables
                //objectDataSource.DataMember = "Product"; /// Indicating the exact table to bind to. If the DataMember is not specified the first data table will be used.
                //objectDataSource.CalculatedFields.Add(new Telerik.Reporting.CalculatedField("FullName", typeof(string), "=Fields.Name + ' ' + Fields.ProductNumber")); // Adding a sample calculated field.

                // Creating a new report
                Telerik.Reporting.Report report = new Telerik.Reporting.Report();

                //if ((dt.Rows[0][36].ToString() == "ok") && (dt.Rows[0][37].ToString() == "ok"))
                //{
                //    report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetter"));
                //}

                //if (dt.Rows[0][36].ToString() != "ok")
                //{
                //    report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetterDisabilityOnly"));
                //}

                //if (dt.Rows[0][37].ToString() != "ok")
                //{
                //    report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetterLifeOnly"));
                //}

                //Telerik.Reporting.Report report = new Telerik.Reporting.Report();
                if (((dt.Rows[0][36].ToString() == "ok") && (dt.Rows[0][37].ToString() == "ok")) || ((dt.Rows[0][72].ToString() != "FDB") && (dt.Rows[0][73].ToString() != "FDB")))
                {
                    //Both quoteLife and QuoteDisability were selected
                    if ((dt.Rows[0][42].ToString() == "1") && (dt.Rows[0][43].ToString() == "1"))
                    {
                        report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetter"));
                    }

                    //if only QuoteLife was selected
                    if ((dt.Rows[0][42].ToString() == "1") && (dt.Rows[0][43].ToString() == "0"))
                    {
                        report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetterLifeOnly"));
                    }

                    //if only QuoteDisability was selected
                    if ((dt.Rows[0][42].ToString() == "0") && (dt.Rows[0][43].ToString() == "1"))
                    {
                        //report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetterDisabilityOnly"));
                        report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetterDisOnly"));
                        //report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetter"));
                        //report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetterLifeOnly"));
                    }

                }
                else
                {
                    //2015-10-12 - changed to include if user selects ADB or ACDB then show both life and disability
                    //if (dt.Rows[0][36].ToString() != "ok")
                    //{
                    //    report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetterDisabilityOnly"));
                    //}

                    //if (dt.Rows[0][37].ToString() != "ok")
                    //{
                    //    report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetterLifeOnly"));
                    //}
                    if (dt.Rows[0][36].ToString() != "ok")
                    {
                        if (dt.Rows[0][72].ToString() == "FDB")
                        {
                            report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetterDisabilityOnly"));
                        }
                        else
                        {
                            report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetter"));
                        }
                    }

                    if (dt.Rows[0][37].ToString() != "ok")
                    {
                        if (dt.Rows[0][73].ToString() == "FDB")
                        {
                            report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetterLifeOnly"));
                        }
                        else
                        {
                            report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetter"));
                        }
                    }
                }

                DateTime now = DateTime.Now;
                //Console.WriteLine("Today is " + now.ToString("MMMM dd, yyyy") + ".");

                report.DocumentName = now.ToString("ddMMhhmm") + "_" + strMagnumID + "_Quote requested";
                // Assigning the ObjectDataSource component to the DataSource property of the report.
                report.DataSource = objectDataSource;
                // Use the InstanceReportSource to pass the report to the viewer for displaying
                Telerik.Reporting.InstanceReportSource reportSource = new Telerik.Reporting.InstanceReportSource();
                reportSource.ReportDocument = report;

                string fileName = report.DocumentName + ".PDF";
                //string path = System.IO.Path.GetTempPath();
                //string strFolder = "~/files/";

                //string month = dateTime.ToString("MMMM");
                int intMonth = System.DateTime.Now.Month;
                string strMonth = intMonth.ToString();
                if (intMonth < 10)
                    strMonth = "0" + intMonth.ToString();

                string path = Server.MapPath("~/files/");
                path += now.ToString("yyyy") + "\\" + strMonth;

                if (!System.IO.Directory.Exists(path))
                {
                    System.IO.Directory.CreateDirectory(path);
                }

                string filePath = System.IO.Path.Combine(path, fileName);

                ReportProcessor reportProcessor = new ReportProcessor();
                Telerik.Reporting.InstanceReportSource instanceReportSource = new Telerik.Reporting.InstanceReportSource();
                instanceReportSource.ReportDocument = report;
                RenderingResult result = reportProcessor.RenderReport("PDF", instanceReportSource, null);

                using (FileStream fs = new FileStream(filePath, FileMode.Create))
                {
                    fs.Write(result.DocumentBytes, 0, result.DocumentBytes.Length);
                }

                #region "Insert File location into DB"
                sqlCommandX = new SqlCommand();
                sqlCommandX.Connection = sqlConnectionX;
                sqlCommandX.CommandType = CommandType.StoredProcedure;
                sqlCommandX.CommandText = "spx_INSERT_QuoteFile";

                sqlParam = new SqlParameter("QuoteAuditTrailID", strQuoteAuditID);
                sqlCommandX.Parameters.Add(sqlParam);
                sqlParam = new SqlParameter("QuoteFile", filePath);
                sqlCommandX.Parameters.Add(sqlParam);

                sqlCommandX.ExecuteNonQuery();

                sqlDR.Close();
                sqlCommandX.Cancel();
                sqlCommandX.Dispose();
                #endregion

                sqlConnectionX.Close();

                HiddenFieldSavedFileName.Value = filePath;

                //Color color = (Color)ColorConverter.ConvertFromString("#00CC00");
                System.Drawing.Color col = System.Drawing.ColorTranslator.FromHtml("#00CC00");

                lblInfo.ForeColor = col;
                lblInfo.Text = "File saved successfully";

                RadBtnEmail.Visible = true;
            }
            catch (Exception ex)
            {
                lblInfo.ForeColor = System.Drawing.Color.Red;
                lblInfo.Text = ex.Message;
            }
        }
        /// <summary>
        /// Required method for telerik Reporting designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SummaryReport));
            Telerik.Reporting.InstanceReportSource instanceReportSource1 = new Telerik.Reporting.InstanceReportSource();
            Telerik.Reporting.InstanceReportSource instanceReportSource2 = new Telerik.Reporting.InstanceReportSource();
            Telerik.Reporting.ReportParameter reportParameter1 = new Telerik.Reporting.ReportParameter();
            Telerik.Reporting.ReportParameter reportParameter2 = new Telerik.Reporting.ReportParameter();
            Telerik.Reporting.Drawing.StyleRule styleRule1 = new Telerik.Reporting.Drawing.StyleRule();
            Telerik.Reporting.Drawing.StyleRule styleRule2 = new Telerik.Reporting.Drawing.StyleRule();
            Telerik.Reporting.Drawing.StyleRule styleRule3 = new Telerik.Reporting.Drawing.StyleRule();
            Telerik.Reporting.Drawing.StyleRule styleRule4 = new Telerik.Reporting.Drawing.StyleRule();
            this.subSummarySampleTests1 = new ServiceHost.Implementation.Reports.SubSummarySampleTests();
            this.subSummarySamples1 = new ServiceHost.Implementation.Reports.SubSummarySamples();
            this.OrderData = new Telerik.Reporting.ObjectDataSource();
            this.pageHeader = new Telerik.Reporting.PageHeaderSection();
            this.txtTitle = new Telerik.Reporting.TextBox();
            this.pictureBox2 = new Telerik.Reporting.PictureBox();
            this.textBox7 = new Telerik.Reporting.TextBox();
            this.textBox12 = new Telerik.Reporting.TextBox();
            this.textBox4 = new Telerik.Reporting.TextBox();
            this.textBox6 = new Telerik.Reporting.TextBox();
            this.textBox3 = new Telerik.Reporting.TextBox();
            this.textBox11 = new Telerik.Reporting.TextBox();
            this.textBox5 = new Telerik.Reporting.TextBox();
            this.textBox8 = new Telerik.Reporting.TextBox();
            this.textBox9 = new Telerik.Reporting.TextBox();
            this.textBox10 = new Telerik.Reporting.TextBox();
            this.textBox13 = new Telerik.Reporting.TextBox();
            this.textBox14 = new Telerik.Reporting.TextBox();
            this.textBox15 = new Telerik.Reporting.TextBox();
            this.textBox16 = new Telerik.Reporting.TextBox();
            this.textBox17 = new Telerik.Reporting.TextBox();
            this.textBox18 = new Telerik.Reporting.TextBox();
            this.textBox2 = new Telerik.Reporting.TextBox();
            this.textBox78 = new Telerik.Reporting.TextBox();
            this.textBox79 = new Telerik.Reporting.TextBox();
            this.pageFooter = new Telerik.Reporting.PageFooterSection();
            this.currentTimeTextBox = new Telerik.Reporting.TextBox();
            this.textBoxPageNo = new Telerik.Reporting.TextBox();
            this.detail = new Telerik.Reporting.DetailSection();
            this.subSummarySampleTests = new Telerik.Reporting.SubReport();
            this.subSummarySamples = new Telerik.Reporting.SubReport();
            ((System.ComponentModel.ISupportInitialize)(this.subSummarySampleTests1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.subSummarySamples1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // subSummarySampleTests1
            // 
            this.subSummarySampleTests1.Name = "CoaSubSampleTests";
            // 
            // subSummarySamples1
            // 
            this.subSummarySamples1.Name = "SubSummarySamples";
            // 
            // OrderData
            // 
            this.OrderData.DataMember = "GetSubmission";
            this.OrderData.DataSource = "ServiceHost.Implementation.ReportDataService.OrderReportService, ServiceHost.Impl" +
    "ementation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null";
            this.OrderData.Name = "OrderData";
            this.OrderData.Parameters.AddRange(new Telerik.Reporting.ObjectDataSourceParameter[] {
            new Telerik.Reporting.ObjectDataSourceParameter("token", typeof(string), "=Parameters.token.Value"),
            new Telerik.Reporting.ObjectDataSourceParameter("orderId", typeof(object), "=Parameters.orderId.Value")});
            // 
            // pageHeader
            // 
            this.pageHeader.Height = Telerik.Reporting.Drawing.Unit.Inch(2.4999606609344482D);
            this.pageHeader.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.txtTitle,
            this.pictureBox2,
            this.textBox7,
            this.textBox12,
            this.textBox4,
            this.textBox6,
            this.textBox3,
            this.textBox11,
            this.textBox5,
            this.textBox8,
            this.textBox9,
            this.textBox10,
            this.textBox13,
            this.textBox14,
            this.textBox15,
            this.textBox16,
            this.textBox17,
            this.textBox18,
            this.textBox2,
            this.textBox78,
            this.textBox79});
            this.pageHeader.Name = "pageHeader";
            // 
            // txtTitle
            // 
            this.txtTitle.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D));
            this.txtTitle.Name = "txtTitle";
            this.txtTitle.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(7.42711877822876D), Telerik.Reporting.Drawing.Unit.Inch(0.29996046423912048D));
            this.txtTitle.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
            this.txtTitle.Style.Font.Bold = true;
            this.txtTitle.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(20D);
            this.txtTitle.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.txtTitle.TextWrap = false;
            this.txtTitle.Value = "Submission Summary";
            // 
            // pictureBox2
            // 
            this.pictureBox2.Anchoring = ((Telerik.Reporting.AnchoringStyles)((Telerik.Reporting.AnchoringStyles.Top | Telerik.Reporting.AnchoringStyles.Left)));
            this.pictureBox2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0.022916793823242188D));
            this.pictureBox2.MimeType = "image/png";
            this.pictureBox2.Name = "pictureBox2";
            this.pictureBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.0936710834503174D), Telerik.Reporting.Drawing.Unit.Inch(1.1999607086181641D));
            this.pictureBox2.Sizing = Telerik.Reporting.Drawing.ImageSizeMode.Stretch;
            this.pictureBox2.Value = ((object)(resources.GetObject("pictureBox2.Value")));
            // 
            // textBox7
            // 
            this.textBox7.CanGrow = false;
            this.textBox7.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.99166679382324219D));
            this.textBox7.Name = "textBox7";
            this.textBox7.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(7.4479918479919434D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox7.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Pixel(20D);
            this.textBox7.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox7.Value = "FAX (405) 271-1174";
            // 
            // textBox12
            // 
            this.textBox12.CanGrow = false;
            this.textBox12.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0.39791679382324219D));
            this.textBox12.Name = "textBox12";
            this.textBox12.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(7.4271583557128906D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox12.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Pixel(20D);
            this.textBox12.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox12.Value = "840 RESEARCH PARKWAY, SUITE 546";
            // 
            // textBox4
            // 
            this.textBox4.CanGrow = false;
            this.textBox4.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0.59583348035812378D));
            this.textBox4.Name = "textBox4";
            this.textBox4.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(7.4271583557128906D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox4.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Pixel(20D);
            this.textBox4.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox4.Value = "OKLAHOMA CITY, OK 73104";
            // 
            // textBox6
            // 
            this.textBox6.CanGrow = false;
            this.textBox6.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.7937501072883606D));
            this.textBox6.Name = "textBox6";
            this.textBox6.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(7.4479918479919434D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox6.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Pixel(20D);
            this.textBox6.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox6.Value = "PHONE (405) 271-1144";
            // 
            // textBox3
            // 
            this.textBox3.CanGrow = false;
            this.textBox3.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.0020834605675190687D));
            this.textBox3.Name = "textBox3";
            this.textBox3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(7.4479918479919434D), Telerik.Reporting.Drawing.Unit.Inch(0.39571526646614075D));
            this.textBox3.Style.Font.Bold = true;
            this.textBox3.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            this.textBox3.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Pixel(20D);
            this.textBox3.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Pixel(15D);
            this.textBox3.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox3.Value = "ANALYTICAL RESEARCH LABORATORIES";
            // 
            // textBox11
            // 
            this.textBox11.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.099999986588954926D), Telerik.Reporting.Drawing.Unit.Inch(2.20011830329895D));
            this.textBox11.Name = "textBox11";
            this.textBox11.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1999212503433228D), Telerik.Reporting.Drawing.Unit.Inch(0.19988171756267548D));
            this.textBox11.Style.Font.Bold = true;
            this.textBox11.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox11.Value = "Customer Name :";
            // 
            // textBox5
            // 
            this.textBox5.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.099999986588954926D), Telerik.Reporting.Drawing.Unit.Inch(2.0001180171966553D));
            this.textBox5.Name = "textBox5";
            this.textBox5.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1999212503433228D), Telerik.Reporting.Drawing.Unit.Inch(0.19988171756267548D));
            this.textBox5.Style.Font.Bold = true;
            this.textBox5.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox5.Value = "Customer # :";
            // 
            // textBox8
            // 
            this.textBox8.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.3000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(2.0001180171966553D));
            this.textBox8.Name = "textBox8";
            this.textBox8.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.7000002861022949D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox8.Value = "=Fields.Customer.Id";
            // 
            // textBox9
            // 
            this.textBox9.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.7519693374633789D), Telerik.Reporting.Drawing.Unit.Inch(1.6000000238418579D));
            this.textBox9.Name = "textBox9";
            this.textBox9.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1895046234130859D), Telerik.Reporting.Drawing.Unit.Inch(0.19988171756267548D));
            this.textBox9.Style.Font.Bold = true;
            this.textBox9.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox9.Value = "Subission Date :";
            // 
            // textBox10
            // 
            this.textBox10.Format = "{0:g}";
            this.textBox10.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.9519691467285156D), Telerik.Reporting.Drawing.Unit.Inch(1.6000000238418579D));
            this.textBox10.Name = "textBox10";
            this.textBox10.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.5D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox10.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox10.Value = "=Fields.ReceivedDate";
            // 
            // textBox13
            // 
            this.textBox13.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.3000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(1.8001971244812012D));
            this.textBox13.Name = "textBox13";
            this.textBox13.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.7000002861022949D), Telerik.Reporting.Drawing.Unit.Inch(0.19980287551879883D));
            this.textBox13.Value = "=Fields.PoNumber";
            // 
            // textBox14
            // 
            this.textBox14.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.099999986588954926D), Telerik.Reporting.Drawing.Unit.Inch(1.8001183271408081D));
            this.textBox14.Name = "textBox14";
            this.textBox14.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1999212503433228D), Telerik.Reporting.Drawing.Unit.Inch(0.19988171756267548D));
            this.textBox14.Style.Font.Bold = true;
            this.textBox14.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox14.Value = "PO Number :";
            // 
            // textBox15
            // 
            this.textBox15.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.7519693374633789D), Telerik.Reporting.Drawing.Unit.Inch(1.8000000715255737D));
            this.textBox15.Name = "textBox15";
            this.textBox15.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1895046234130859D), Telerik.Reporting.Drawing.Unit.Inch(0.19988171756267548D));
            this.textBox15.Style.Font.Bold = true;
            this.textBox15.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox15.Value = "Status :";
            // 
            // textBox16
            // 
            this.textBox16.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.9519691467285156D), Telerik.Reporting.Drawing.Unit.Inch(1.8000000715255737D));
            this.textBox16.Name = "textBox16";
            this.textBox16.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.5D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox16.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox16.Value = "=Fields.Status";
            // 
            // textBox17
            // 
            this.textBox17.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.7519693374633789D), Telerik.Reporting.Drawing.Unit.Inch(2D));
            this.textBox17.Name = "textBox17";
            this.textBox17.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1895046234130859D), Telerik.Reporting.Drawing.Unit.Inch(0.19988171756267548D));
            this.textBox17.Style.Font.Bold = true;
            this.textBox17.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox17.Value = "Total :";
            // 
            // textBox18
            // 
            this.textBox18.Format = "{0:C2}";
            this.textBox18.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.9519691467285156D), Telerik.Reporting.Drawing.Unit.Inch(2.0000791549682617D));
            this.textBox18.Name = "textBox18";
            this.textBox18.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.5D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
            this.textBox18.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox18.Value = "=Fields.OrderTotal";
            // 
            // textBox2
            // 
            this.textBox2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.3000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(2.20011830329895D));
            this.textBox2.Name = "textBox2";
            this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.9000003337860107D), Telerik.Reporting.Drawing.Unit.Inch(0.20007896423339844D));
            this.textBox2.Value = "=Fields.Customer.CustomerName";
            // 
            // textBox78
            // 
            this.textBox78.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.099999986588954926D), Telerik.Reporting.Drawing.Unit.Inch(1.6000000238418579D));
            this.textBox78.Name = "textBox78";
            this.textBox78.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1999212503433228D), Telerik.Reporting.Drawing.Unit.Inch(0.19988171756267548D));
            this.textBox78.Style.Font.Bold = true;
            this.textBox78.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox78.Value = "Submission # :";
            // 
            // textBox79
            // 
            this.textBox79.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.3000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(1.6000000238418579D));
            this.textBox79.Name = "textBox79";
            this.textBox79.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.7000002861022949D), Telerik.Reporting.Drawing.Unit.Inch(0.19980287551879883D));
            this.textBox79.Value = "=Fields.Id";
            // 
            // pageFooter
            // 
            this.pageFooter.Height = Telerik.Reporting.Drawing.Unit.Inch(0.30000019073486328D);
            this.pageFooter.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.currentTimeTextBox,
            this.textBoxPageNo});
            this.pageFooter.Name = "pageFooter";
            // 
            // currentTimeTextBox
            // 
            this.currentTimeTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0.10000038146972656D));
            this.currentTimeTextBox.Name = "currentTimeTextBox";
            this.currentTimeTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.6979167461395264D), Telerik.Reporting.Drawing.Unit.Inch(0.17916718125343323D));
            this.currentTimeTextBox.StyleName = "PageInfo";
            this.currentTimeTextBox.Value = "=NOW()";
            // 
            // textBoxPageNo
            // 
            this.textBoxPageNo.Anchoring = Telerik.Reporting.AnchoringStyles.Right;
            this.textBoxPageNo.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.5039772987365723D), Telerik.Reporting.Drawing.Unit.Inch(0.10000038146972656D));
            this.textBoxPageNo.Name = "textBoxPageNo";
            this.textBoxPageNo.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.9999606609344482D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
            this.textBoxPageNo.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBoxPageNo.Value = "= \'Page \' + PageNumber + \' of \' + PageCount";
            // 
            // detail
            // 
            this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(0.800000011920929D);
            this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.subSummarySampleTests,
            this.subSummarySamples});
            this.detail.KeepTogether = false;
            this.detail.Name = "detail";
            // 
            // subSummarySampleTests
            // 
            this.subSummarySampleTests.KeepTogether = false;
            this.subSummarySampleTests.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0.40000024437904358D));
            this.subSummarySampleTests.Name = "subSummarySampleTests";
            instanceReportSource1.ReportDocument = this.subSummarySampleTests1;
            this.subSummarySampleTests.ReportSource = instanceReportSource1;
            this.subSummarySampleTests.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(7.5D), Telerik.Reporting.Drawing.Unit.Inch(0.30000001192092896D));
            // 
            // subSummarySamples
            // 
            this.subSummarySamples.KeepTogether = false;
            this.subSummarySamples.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D));
            this.subSummarySamples.Name = "subSummarySamples";
            instanceReportSource2.ReportDocument = this.subSummarySamples1;
            this.subSummarySamples.ReportSource = instanceReportSource2;
            this.subSummarySamples.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(7.5D), Telerik.Reporting.Drawing.Unit.Inch(0.30000001192092896D));
            // 
            // SummaryReport
            // 
            this.DataSource = this.OrderData;
            this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.pageHeader,
            this.pageFooter,
            this.detail});
            this.Name = "SummaryReport";
            this.PageSettings.Landscape = false;
            this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(0.25D), Telerik.Reporting.Drawing.Unit.Inch(0.25D), Telerik.Reporting.Drawing.Unit.Inch(0.25D), Telerik.Reporting.Drawing.Unit.Inch(0.25D));
            this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.Letter;
            reportParameter1.Name = "token";
            reportParameter1.Text = "token";
            reportParameter1.Value = "1";
            reportParameter2.Name = "orderId";
            reportParameter2.Text = "orderId";
            reportParameter2.Type = Telerik.Reporting.ReportParameterType.Integer;
            reportParameter2.Value = "1";
            this.ReportParameters.Add(reportParameter1);
            this.ReportParameters.Add(reportParameter2);
            this.Style.BackgroundColor = System.Drawing.Color.White;
            styleRule1.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
            new Telerik.Reporting.Drawing.StyleSelector("Title")});
            styleRule1.Style.Color = System.Drawing.Color.Black;
            styleRule1.Style.Font.Bold = true;
            styleRule1.Style.Font.Italic = false;
            styleRule1.Style.Font.Name = "Tahoma";
            styleRule1.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(18D);
            styleRule1.Style.Font.Strikeout = false;
            styleRule1.Style.Font.Underline = false;
            styleRule2.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
            new Telerik.Reporting.Drawing.StyleSelector("Caption")});
            styleRule2.Style.Color = System.Drawing.Color.Black;
            styleRule2.Style.Font.Name = "Tahoma";
            styleRule2.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(10D);
            styleRule2.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
            styleRule3.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
            new Telerik.Reporting.Drawing.StyleSelector("Data")});
            styleRule3.Style.Font.Name = "Tahoma";
            styleRule3.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
            styleRule3.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
            styleRule4.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
            new Telerik.Reporting.Drawing.StyleSelector("PageInfo")});
            styleRule4.Style.Font.Name = "Tahoma";
            styleRule4.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
            styleRule4.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
            this.StyleSheet.AddRange(new Telerik.Reporting.Drawing.StyleRule[] {
            styleRule1,
            styleRule2,
            styleRule3,
            styleRule4});
            this.Width = Telerik.Reporting.Drawing.Unit.Inch(7.551969051361084D);
            ((System.ComponentModel.ISupportInitialize)(this.subSummarySampleTests1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.subSummarySamples1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();

        }
Beispiel #43
0
 /// <summary>
 /// Required method for telerik Reporting designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainPrescription));
     Telerik.Reporting.InstanceReportSource instanceReportSource1 = new Telerik.Reporting.InstanceReportSource();
     Telerik.Reporting.InstanceReportSource instanceReportSource2 = new Telerik.Reporting.InstanceReportSource();
     Telerik.Reporting.InstanceReportSource instanceReportSource3 = new Telerik.Reporting.InstanceReportSource();
     Telerik.Reporting.InstanceReportSource instanceReportSource4 = new Telerik.Reporting.InstanceReportSource();
     Telerik.Reporting.InstanceReportSource instanceReportSource5 = new Telerik.Reporting.InstanceReportSource();
     Telerik.Reporting.InstanceReportSource instanceReportSource6 = new Telerik.Reporting.InstanceReportSource();
     Telerik.Reporting.InstanceReportSource instanceReportSource7 = new Telerik.Reporting.InstanceReportSource();
     Telerik.Reporting.InstanceReportSource instanceReportSource8 = new Telerik.Reporting.InstanceReportSource();
     Telerik.Reporting.Group group1 = new Telerik.Reporting.Group();
     Telerik.Reporting.Group group2 = new Telerik.Reporting.Group();
     Telerik.Reporting.Drawing.StyleRule styleRule1 = new Telerik.Reporting.Drawing.StyleRule();
     Telerik.Reporting.Drawing.StyleRule styleRule2 = new Telerik.Reporting.Drawing.StyleRule();
     Telerik.Reporting.Drawing.StyleRule styleRule3 = new Telerik.Reporting.Drawing.StyleRule();
     Telerik.Reporting.Drawing.StyleRule styleRule4 = new Telerik.Reporting.Drawing.StyleRule();
     this.cC_Sub1 = new OnlineOutPatientManagementSystem.Report.CC_Sub();
     this.medicineDetails_Sub1 = new OnlineOutPatientManagementSystem.Report.MedicineDetails_Sub();
     this.provisionalDx_Sub1 = new OnlineOutPatientManagementSystem.Report.ProvisionalDx_Sub();
     this.confirmDx_Sub1 = new OnlineOutPatientManagementSystem.Report.ConfirmDx_Sub();
     this.positiveFindings_Sub1 = new OnlineOutPatientManagementSystem.Report.PositiveFindings_Sub();
     this.negativeFindings_Sub1 = new OnlineOutPatientManagementSystem.Report.NegativeFindings_Sub();
     this.investigations_Sub1 = new OnlineOutPatientManagementSystem.Report.Investigations_Sub();
     this.adviceBangla_Sub1 = new OnlineOutPatientManagementSystem.Report.AdviceBangla_Sub();
     this.visitIDGroupFooterSection = new Telerik.Reporting.GroupFooterSection();
     this.visitIDGroupHeaderSection = new Telerik.Reporting.GroupHeaderSection();
     this.visitIDCaptionTextBox = new Telerik.Reporting.TextBox();
     this.visitIDDataTextBox = new Telerik.Reporting.TextBox();
     this.labelsGroupFooterSection = new Telerik.Reporting.GroupFooterSection();
     this.labelsGroupHeaderSection = new Telerik.Reporting.GroupHeaderSection();
     this.sqlDataSource2 = new Telerik.Reporting.SqlDataSource();
     this.sqlDataSource1 = new Telerik.Reporting.SqlDataSource();
     this.patientIDCaptionTextBox = new Telerik.Reporting.TextBox();
     this.patientNameCaptionTextBox = new Telerik.Reporting.TextBox();
     this.pageHeader = new Telerik.Reporting.PageHeaderSection();
     this.pageFooter = new Telerik.Reporting.PageFooterSection();
     this.currentTimeTextBox = new Telerik.Reporting.TextBox();
     this.pageInfoTextBox = new Telerik.Reporting.TextBox();
     this.reportHeader = new Telerik.Reporting.ReportHeaderSection();
     this.titleTextBox = new Telerik.Reporting.TextBox();
     this.barcode1 = new Telerik.Reporting.Barcode();
     this.shape1 = new Telerik.Reporting.Shape();
     this.detail = new Telerik.Reporting.DetailSection();
     this.patientIDDataTextBox = new Telerik.Reporting.TextBox();
     this.patientNameDataTextBox = new Telerik.Reporting.TextBox();
     this.textBox1 = new Telerik.Reporting.TextBox();
     this.textBox2 = new Telerik.Reporting.TextBox();
     this.textBox3 = new Telerik.Reporting.TextBox();
     this.textBox4 = new Telerik.Reporting.TextBox();
     this.panel1 = new Telerik.Reporting.Panel();
     this.subReport1 = new Telerik.Reporting.SubReport();
     this.subReport2 = new Telerik.Reporting.SubReport();
     this.textBox5 = new Telerik.Reporting.TextBox();
     this.textBox6 = new Telerik.Reporting.TextBox();
     this.textBox7 = new Telerik.Reporting.TextBox();
     this.textBox8 = new Telerik.Reporting.TextBox();
     this.textBox9 = new Telerik.Reporting.TextBox();
     this.textBox10 = new Telerik.Reporting.TextBox();
     this.textBox11 = new Telerik.Reporting.TextBox();
     this.textBox12 = new Telerik.Reporting.TextBox();
     this.textBox13 = new Telerik.Reporting.TextBox();
     this.textBox14 = new Telerik.Reporting.TextBox();
     this.textBox15 = new Telerik.Reporting.TextBox();
     this.textBox16 = new Telerik.Reporting.TextBox();
     this.textBox17 = new Telerik.Reporting.TextBox();
     this.textBox18 = new Telerik.Reporting.TextBox();
     this.textBox19 = new Telerik.Reporting.TextBox();
     this.textBox20 = new Telerik.Reporting.TextBox();
     this.textBox21 = new Telerik.Reporting.TextBox();
     this.textBox22 = new Telerik.Reporting.TextBox();
     this.textBox23 = new Telerik.Reporting.TextBox();
     this.textBox24 = new Telerik.Reporting.TextBox();
     this.textBox25 = new Telerik.Reporting.TextBox();
     this.textBox26 = new Telerik.Reporting.TextBox();
     this.textBox27 = new Telerik.Reporting.TextBox();
     this.textBox28 = new Telerik.Reporting.TextBox();
     this.textBox29 = new Telerik.Reporting.TextBox();
     this.textBox30 = new Telerik.Reporting.TextBox();
     this.textBox31 = new Telerik.Reporting.TextBox();
     this.textBox32 = new Telerik.Reporting.TextBox();
     this.textBox33 = new Telerik.Reporting.TextBox();
     this.textBox34 = new Telerik.Reporting.TextBox();
     this.textBox35 = new Telerik.Reporting.TextBox();
     this.textBox36 = new Telerik.Reporting.TextBox();
     this.textBox37 = new Telerik.Reporting.TextBox();
     this.textBox38 = new Telerik.Reporting.TextBox();
     this.textBox39 = new Telerik.Reporting.TextBox();
     this.textBox40 = new Telerik.Reporting.TextBox();
     this.textBox41 = new Telerik.Reporting.TextBox();
     this.textBox42 = new Telerik.Reporting.TextBox();
     this.textBox43 = new Telerik.Reporting.TextBox();
     this.textBox44 = new Telerik.Reporting.TextBox();
     this.textBox45 = new Telerik.Reporting.TextBox();
     this.textBox46 = new Telerik.Reporting.TextBox();
     this.textBox47 = new Telerik.Reporting.TextBox();
     this.textBox48 = new Telerik.Reporting.TextBox();
     this.textBox49 = new Telerik.Reporting.TextBox();
     this.textBox50 = new Telerik.Reporting.TextBox();
     this.textBox51 = new Telerik.Reporting.TextBox();
     this.panel2 = new Telerik.Reporting.Panel();
     this.subReport3 = new Telerik.Reporting.SubReport();
     this.subReport4 = new Telerik.Reporting.SubReport();
     this.panel3 = new Telerik.Reporting.Panel();
     this.subReport5 = new Telerik.Reporting.SubReport();
     this.subReport6 = new Telerik.Reporting.SubReport();
     this.panel4 = new Telerik.Reporting.Panel();
     this.subReport7 = new Telerik.Reporting.SubReport();
     this.subReport8 = new Telerik.Reporting.SubReport();
     ((System.ComponentModel.ISupportInitialize)(this.cC_Sub1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.medicineDetails_Sub1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.provisionalDx_Sub1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.confirmDx_Sub1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.positiveFindings_Sub1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.negativeFindings_Sub1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.investigations_Sub1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.adviceBangla_Sub1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // cC_Sub1
     //
     this.cC_Sub1.Name = "CC_Sub";
     //
     // medicineDetails_Sub1
     //
     this.medicineDetails_Sub1.Name = "MedicineDetails_Sub";
     //
     // provisionalDx_Sub1
     //
     this.provisionalDx_Sub1.Name = "ProvisionalDx_Sub";
     //
     // confirmDx_Sub1
     //
     this.confirmDx_Sub1.Name = "ConfirmDx_Sub";
     //
     // positiveFindings_Sub1
     //
     this.positiveFindings_Sub1.Name = "PositiveFindings_Sub";
     //
     // negativeFindings_Sub1
     //
     this.negativeFindings_Sub1.Name = "NegativeFindings_Sub";
     //
     // investigations_Sub1
     //
     this.investigations_Sub1.Name = "Investigations_Sub";
     //
     // adviceBangla_Sub1
     //
     this.adviceBangla_Sub1.Name = "AdviceBangla_Sub";
     //
     // visitIDGroupFooterSection
     //
     this.visitIDGroupFooterSection.Height = Telerik.Reporting.Drawing.Unit.Inch(0.0520833320915699D);
     this.visitIDGroupFooterSection.Name = "visitIDGroupFooterSection";
     //
     // visitIDGroupHeaderSection
     //
     this.visitIDGroupHeaderSection.Height = Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D);
     this.visitIDGroupHeaderSection.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.visitIDCaptionTextBox,
     this.visitIDDataTextBox});
     this.visitIDGroupHeaderSection.Name = "visitIDGroupHeaderSection";
     //
     // visitIDCaptionTextBox
     //
     this.visitIDCaptionTextBox.CanGrow = true;
     this.visitIDCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.visitIDCaptionTextBox.Name = "visitIDCaptionTextBox";
     this.visitIDCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.77916669845581055D), Telerik.Reporting.Drawing.Unit.Inch(0.17916662991046906D));
     this.visitIDCaptionTextBox.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
     this.visitIDCaptionTextBox.StyleName = "Caption";
     this.visitIDCaptionTextBox.Value = "Visit ID:";
     //
     // visitIDDataTextBox
     //
     this.visitIDDataTextBox.CanGrow = true;
     this.visitIDDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.800000011920929D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.visitIDDataTextBox.Name = "visitIDDataTextBox";
     this.visitIDDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.3000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(0.17916662991046906D));
     this.visitIDDataTextBox.Style.Font.Bold = true;
     this.visitIDDataTextBox.StyleName = "Data";
     this.visitIDDataTextBox.Value = "=Fields.VisitID";
     //
     // labelsGroupFooterSection
     //
     this.labelsGroupFooterSection.Height = Telerik.Reporting.Drawing.Unit.Inch(0.0520833320915699D);
     this.labelsGroupFooterSection.Name = "labelsGroupFooterSection";
     this.labelsGroupFooterSection.Style.Visible = false;
     //
     // labelsGroupHeaderSection
     //
     this.labelsGroupHeaderSection.Height = Telerik.Reporting.Drawing.Unit.Inch(0.052083343267440796D);
     this.labelsGroupHeaderSection.Name = "labelsGroupHeaderSection";
     this.labelsGroupHeaderSection.PrintOnEveryPage = true;
     //
     // sqlDataSource2
     //
     this.sqlDataSource2.ConnectionString = "OnLinePrescriptionConnectionString";
     this.sqlDataSource2.Name = "sqlDataSource2";
     this.sqlDataSource2.SelectCommand = resources.GetString("sqlDataSource2.SelectCommand");
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionString = "OnLinePrescriptionConnectionString";
     this.sqlDataSource1.Name = "sqlDataSource1";
     this.sqlDataSource1.Parameters.AddRange(new Telerik.Reporting.SqlDataSourceParameter[] {
     new Telerik.Reporting.SqlDataSourceParameter("@VisitID", System.Data.DbType.AnsiString, "=Parameters.VisitID.Value")});
     this.sqlDataSource1.SelectCommand = "dbo.sp_rpt_PrescriptionMain";
     this.sqlDataSource1.SelectCommandType = Telerik.Reporting.SqlDataSourceCommandType.StoredProcedure;
     //
     // patientIDCaptionTextBox
     //
     this.patientIDCaptionTextBox.CanGrow = true;
     this.patientIDCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.patientIDCaptionTextBox.Name = "patientIDCaptionTextBox";
     this.patientIDCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.800000011920929D), Telerik.Reporting.Drawing.Unit.Inch(0.22708351910114288D));
     this.patientIDCaptionTextBox.Style.Font.Name = "Arial";
     this.patientIDCaptionTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.patientIDCaptionTextBox.StyleName = "Caption";
     this.patientIDCaptionTextBox.Value = "Patient ID:";
     //
     // patientNameCaptionTextBox
     //
     this.patientNameCaptionTextBox.CanGrow = true;
     this.patientNameCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.22716236114501953D));
     this.patientNameCaptionTextBox.Name = "patientNameCaptionTextBox";
     this.patientNameCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.800000011920929D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.patientNameCaptionTextBox.Style.Font.Name = "Arial";
     this.patientNameCaptionTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.patientNameCaptionTextBox.StyleName = "Caption";
     this.patientNameCaptionTextBox.Value = "Patient Name:";
     //
     // pageHeader
     //
     this.pageHeader.Height = Telerik.Reporting.Drawing.Unit.Inch(0.0520833320915699D);
     this.pageHeader.Name = "pageHeader";
     //
     // pageFooter
     //
     this.pageFooter.Height = Telerik.Reporting.Drawing.Unit.Inch(0.44166669249534607D);
     this.pageFooter.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.currentTimeTextBox,
     this.pageInfoTextBox});
     this.pageFooter.Name = "pageFooter";
     //
     // currentTimeTextBox
     //
     this.currentTimeTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.currentTimeTextBox.Name = "currentTimeTextBox";
     this.currentTimeTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.3317749500274658D), Telerik.Reporting.Drawing.Unit.Inch(0.40000000596046448D));
     this.currentTimeTextBox.StyleName = "PageInfo";
     this.currentTimeTextBox.Value = "=NOW()";
     //
     // pageInfoTextBox
     //
     this.pageInfoTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.3734416961669922D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.pageInfoTextBox.Name = "pageInfoTextBox";
     this.pageInfoTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.3317749500274658D), Telerik.Reporting.Drawing.Unit.Inch(0.40000000596046448D));
     this.pageInfoTextBox.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.pageInfoTextBox.StyleName = "PageInfo";
     this.pageInfoTextBox.Value = "=PageNumber";
     //
     // reportHeader
     //
     this.reportHeader.Height = Telerik.Reporting.Drawing.Unit.Inch(0.64791673421859741D);
     this.reportHeader.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.titleTextBox,
     this.barcode1,
     this.shape1});
     this.reportHeader.Name = "reportHeader";
     //
     // titleTextBox
     //
     this.titleTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(7.8757606388535351E-05D));
     this.titleTextBox.Name = "titleTextBox";
     this.titleTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.47908800840377808D));
     this.titleTextBox.Style.Font.Name = "SutonnyMJ";
     this.titleTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
     this.titleTextBox.StyleName = "Title";
     this.titleTextBox.Value = "GLv‡b evsjv †nWvi n‡e\r\nGKvwaK jvBb n‡e\r\n";
     //
     // barcode1
     //
     this.barcode1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.8000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(7.8757606388535351E-05D));
     this.barcode1.Name = "barcode1";
     this.barcode1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.1000001430511475D), Telerik.Reporting.Drawing.Unit.Inch(0.44783791899681091D));
     this.barcode1.Value = "= Fields.VisitID";
     //
     // shape1
     //
     this.shape1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.5479167103767395D));
     this.shape1.Name = "shape1";
     this.shape1.ShapeType = new Telerik.Reporting.Drawing.Shapes.LineShape(Telerik.Reporting.Drawing.Shapes.LineDirection.EW);
     this.shape1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.7000002861022949D), Telerik.Reporting.Drawing.Unit.Inch(0.099999986588954926D));
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(7.6479172706604D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.patientIDDataTextBox,
     this.patientNameDataTextBox,
     this.patientIDCaptionTextBox,
     this.patientNameCaptionTextBox,
     this.textBox1,
     this.textBox2,
     this.textBox3,
     this.textBox4,
     this.panel1,
     this.textBox5,
     this.textBox6,
     this.textBox7,
     this.textBox8,
     this.textBox9,
     this.textBox10,
     this.textBox11,
     this.textBox12,
     this.textBox13,
     this.textBox14,
     this.textBox15,
     this.textBox16,
     this.textBox17,
     this.textBox18,
     this.textBox19,
     this.textBox20,
     this.textBox21,
     this.textBox22,
     this.textBox23,
     this.textBox24,
     this.textBox25,
     this.textBox26,
     this.textBox27,
     this.textBox28,
     this.textBox29,
     this.textBox30,
     this.textBox31,
     this.textBox32,
     this.textBox33,
     this.textBox34,
     this.textBox35,
     this.textBox36,
     this.textBox37,
     this.textBox38,
     this.textBox39,
     this.textBox40,
     this.textBox41,
     this.textBox42,
     this.textBox43,
     this.textBox44,
     this.textBox45,
     this.textBox46,
     this.textBox47,
     this.textBox48,
     this.textBox49,
     this.textBox50,
     this.textBox51,
     this.panel2,
     this.panel3,
     this.panel4});
     this.detail.Name = "detail";
     //
     // patientIDDataTextBox
     //
     this.patientIDDataTextBox.CanGrow = true;
     this.patientIDDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.800000011920929D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.patientIDDataTextBox.Name = "patientIDDataTextBox";
     this.patientIDDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.3000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(0.22296698391437531D));
     this.patientIDDataTextBox.Style.Font.Bold = true;
     this.patientIDDataTextBox.Style.Font.Name = "Arial";
     this.patientIDDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.patientIDDataTextBox.StyleName = "Data";
     this.patientIDDataTextBox.Value = "=Fields.PatientID";
     //
     // patientNameDataTextBox
     //
     this.patientNameDataTextBox.CanGrow = true;
     this.patientNameDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.800000011920929D), Telerik.Reporting.Drawing.Unit.Inch(0.22716236114501953D));
     this.patientNameDataTextBox.Name = "patientNameDataTextBox";
     this.patientNameDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.patientNameDataTextBox.Style.Font.Name = "Arial";
     this.patientNameDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.patientNameDataTextBox.StyleName = "Data";
     this.patientNameDataTextBox.Value = "=Fields.PatientName";
     //
     // textBox1
     //
     this.textBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.7000000476837158D), Telerik.Reporting.Drawing.Unit.Inch(0.20007865130901337D));
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.49992084503173828D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox1.Style.Font.Name = "Arial";
     this.textBox1.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox1.Value = "=Fields.Sex";
     //
     // textBox2
     //
     this.textBox2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.0000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.20007880032062531D));
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox2.Style.Font.Name = "Arial";
     this.textBox2.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox2.Value = "=Fields.Age";
     //
     // textBox3
     //
     this.textBox3.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.0000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1999998092651367D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox3.Style.Font.Name = "Arial";
     this.textBox3.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox3.Value = "=Fields.StudyID";
     //
     // textBox4
     //
     this.textBox4.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.7000000476837158D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.74739170074462891D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox4.Style.Font.Name = "Arial";
     this.textBox4.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox4.Value = "=Fields.StudyName";
     //
     // panel1
     //
     this.panel1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.subReport1,
     this.subReport2});
     this.panel1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.558333694934845D));
     this.panel1.Name = "panel1";
     this.panel1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(7.1000003814697266D), Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D));
     //
     // subReport1
     //
     this.subReport1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.1000000610947609D));
     this.subReport1.Name = "subReport1";
     instanceReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("LinkprmCCVisitID", "=Fields.VisitID"));
     instanceReportSource1.ReportDocument = this.cC_Sub1;
     this.subReport1.ReportSource = instanceReportSource1;
     this.subReport1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.2000002861022949D), Telerik.Reporting.Drawing.Unit.Inch(0.89999991655349731D));
     //
     // subReport2
     //
     this.subReport2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.3000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(0.089583076536655426D));
     this.subReport2.Name = "subReport2";
     instanceReportSource2.Parameters.Add(new Telerik.Reporting.Parameter("LinkPrmVisitID", "=Fields.VisitID"));
     instanceReportSource2.ReportDocument = this.medicineDetails_Sub1;
     this.subReport2.ReportSource = instanceReportSource2;
     this.subReport2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.7999999523162842D), Telerik.Reporting.Drawing.Unit.Inch(0.89999991655349731D));
     //
     // textBox5
     //
     this.textBox5.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.3000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(0.20007865130901337D));
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.39999991655349731D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox5.Style.Font.Bold = true;
     this.textBox5.Style.Font.Name = "Arial";
     this.textBox5.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox5.Value = "Sex:";
     //
     // textBox6
     //
     this.textBox6.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.7000007629394531D), Telerik.Reporting.Drawing.Unit.Inch(0.20007880032062531D));
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.30000019073486328D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox6.Style.Font.Bold = true;
     this.textBox6.Style.Font.Name = "Arial";
     this.textBox6.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox6.Value = "Age:";
     //
     // textBox7
     //
     this.textBox7.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.3000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.textBox7.Name = "textBox7";
     this.textBox7.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.3999999463558197D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox7.Style.Font.Bold = true;
     this.textBox7.Style.Font.Name = "Arial";
     this.textBox7.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox7.Value = "Study:";
     //
     // textBox8
     //
     this.textBox8.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.4999213218688965D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.textBox8.Name = "textBox8";
     this.textBox8.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox8.Style.Font.Bold = true;
     this.textBox8.Style.Font.Name = "Arial";
     this.textBox8.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox8.Value = "Study ID:";
     //
     // textBox9
     //
     this.textBox9.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(2.3583333492279053D));
     this.textBox9.Name = "textBox9";
     this.textBox9.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox9.Style.Font.Bold = true;
     this.textBox9.Style.Font.Name = "Arial";
     this.textBox9.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox9.Value = "Anemia:";
     //
     // textBox10
     //
     this.textBox10.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(2.5084121227264404D));
     this.textBox10.Name = "textBox10";
     this.textBox10.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox10.Style.Font.Bold = true;
     this.textBox10.Style.Font.Name = "Arial";
     this.textBox10.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox10.Value = "Cervix:";
     //
     // textBox11
     //
     this.textBox11.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(2.8085696697235107D));
     this.textBox11.Name = "textBox11";
     this.textBox11.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox11.Style.Font.Bold = true;
     this.textBox11.Style.Font.Name = "Arial";
     this.textBox11.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox11.Value = "Heart:";
     //
     // textBox12
     //
     this.textBox12.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(2.6584908962249756D));
     this.textBox12.Name = "textBox12";
     this.textBox12.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox12.Style.Font.Bold = true;
     this.textBox12.Style.Font.Name = "Arial";
     this.textBox12.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox12.Value = "Clubbing:";
     //
     // textBox13
     //
     this.textBox13.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(3.1087272167205811D));
     this.textBox13.Name = "textBox13";
     this.textBox13.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox13.Style.Font.Bold = true;
     this.textBox13.Style.Font.Name = "Arial";
     this.textBox13.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox13.Value = "L/N:";
     //
     // textBox14
     //
     this.textBox14.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(2.9586484432220459D));
     this.textBox14.Name = "textBox14";
     this.textBox14.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox14.Style.Font.Bold = true;
     this.textBox14.Style.Font.Name = "Arial";
     this.textBox14.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox14.Value = "Jaundice:";
     //
     // textBox15
     //
     this.textBox15.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(3.2588062286376953D));
     this.textBox15.Name = "textBox15";
     this.textBox15.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox15.Style.Font.Bold = true;
     this.textBox15.Style.Font.Name = "Arial";
     this.textBox15.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox15.Value = "Liver:";
     //
     // textBox16
     //
     this.textBox16.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(3.4088847637176514D));
     this.textBox16.Name = "textBox16";
     this.textBox16.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox16.Style.Font.Bold = true;
     this.textBox16.Style.Font.Name = "Arial";
     this.textBox16.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox16.Value = "Lung:";
     //
     // textBox17
     //
     this.textBox17.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(3.5589630603790283D));
     this.textBox17.Name = "textBox17";
     this.textBox17.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox17.Style.Font.Bold = true;
     this.textBox17.Style.Font.Name = "Arial";
     this.textBox17.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox17.Value = "Oedema:";
     //
     // textBox18
     //
     this.textBox18.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.60000014305114746D), Telerik.Reporting.Drawing.Unit.Inch(2.3583333492279053D));
     this.textBox18.Name = "textBox18";
     this.textBox18.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox18.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox18.Value = "=Fields.Anemia";
     //
     // textBox19
     //
     this.textBox19.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.60007864236831665D), Telerik.Reporting.Drawing.Unit.Inch(2.5084121227264404D));
     this.textBox19.Name = "textBox19";
     this.textBox19.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox19.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox19.Value = "=Fields.Cervix";
     //
     // textBox20
     //
     this.textBox20.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.60000014305114746D), Telerik.Reporting.Drawing.Unit.Inch(2.8085696697235107D));
     this.textBox20.Name = "textBox20";
     this.textBox20.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox20.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox20.Value = "=Fields.Heart";
     //
     // textBox21
     //
     this.textBox21.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.60007864236831665D), Telerik.Reporting.Drawing.Unit.Inch(2.6584908962249756D));
     this.textBox21.Name = "textBox21";
     this.textBox21.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox21.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox21.Value = "=Fields.Clubbing";
     //
     // textBox22
     //
     this.textBox22.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.60000014305114746D), Telerik.Reporting.Drawing.Unit.Inch(2.9586484432220459D));
     this.textBox22.Name = "textBox22";
     this.textBox22.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox22.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox22.Value = "=Fields.Jaundice";
     //
     // textBox23
     //
     this.textBox23.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.60007864236831665D), Telerik.Reporting.Drawing.Unit.Inch(3.1087272167205811D));
     this.textBox23.Name = "textBox23";
     this.textBox23.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox23.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox23.Value = "=Fields.L_N";
     //
     // textBox24
     //
     this.textBox24.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.60007864236831665D), Telerik.Reporting.Drawing.Unit.Inch(3.2588062286376953D));
     this.textBox24.Name = "textBox24";
     this.textBox24.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox24.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox24.Value = "=Fields.Liver";
     //
     // textBox25
     //
     this.textBox25.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.600078821182251D), Telerik.Reporting.Drawing.Unit.Inch(3.5589630603790283D));
     this.textBox25.Name = "textBox25";
     this.textBox25.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox25.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox25.Value = "=Fields.Oedema";
     //
     // textBox26
     //
     this.textBox26.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.60000014305114746D), Telerik.Reporting.Drawing.Unit.Inch(3.4088847637176514D));
     this.textBox26.Name = "textBox26";
     this.textBox26.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox26.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox26.Value = "=Fields.Lung";
     //
     // textBox27
     //
     this.textBox27.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.8999999761581421D), Telerik.Reporting.Drawing.Unit.Inch(3.5610466003417969D));
     this.textBox27.Name = "textBox27";
     this.textBox27.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox27.Style.Font.Bold = true;
     this.textBox27.Style.Font.Name = "Arial";
     this.textBox27.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox27.Value = "Others:";
     //
     // textBox28
     //
     this.textBox28.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.8999999761581421D), Telerik.Reporting.Drawing.Unit.Inch(3.4109680652618408D));
     this.textBox28.Name = "textBox28";
     this.textBox28.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox28.Style.Font.Bold = true;
     this.textBox28.Style.Font.Name = "Arial";
     this.textBox28.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox28.Value = "Weight:";
     //
     // textBox29
     //
     this.textBox29.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.8999999761581421D), Telerik.Reporting.Drawing.Unit.Inch(3.2608897686004639D));
     this.textBox29.Name = "textBox29";
     this.textBox29.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox29.Style.Font.Bold = true;
     this.textBox29.Style.Font.Name = "Arial";
     this.textBox29.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox29.Value = "Temp:";
     //
     // textBox30
     //
     this.textBox30.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.8999999761581421D), Telerik.Reporting.Drawing.Unit.Inch(2.9607322216033936D));
     this.textBox30.Name = "textBox30";
     this.textBox30.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox30.Style.Font.Bold = true;
     this.textBox30.Style.Font.Name = "Arial";
     this.textBox30.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox30.Value = "BP:";
     //
     // textBox31
     //
     this.textBox31.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.8999999761581421D), Telerik.Reporting.Drawing.Unit.Inch(3.1108105182647705D));
     this.textBox31.Name = "textBox31";
     this.textBox31.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox31.Style.Font.Bold = true;
     this.textBox31.Style.Font.Name = "Arial";
     this.textBox31.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox31.Value = "Pulse:";
     //
     // textBox32
     //
     this.textBox32.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.8999999761581421D), Telerik.Reporting.Drawing.Unit.Inch(2.6605744361877441D));
     this.textBox32.Name = "textBox32";
     this.textBox32.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox32.Style.Font.Bold = true;
     this.textBox32.Style.Font.Name = "Arial";
     this.textBox32.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox32.Value = "V****a:";
     //
     // textBox33
     //
     this.textBox33.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.8999999761581421D), Telerik.Reporting.Drawing.Unit.Inch(2.8106534481048584D));
     this.textBox33.Name = "textBox33";
     this.textBox33.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox33.Style.Font.Bold = true;
     this.textBox33.Style.Font.Name = "Arial";
     this.textBox33.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox33.Value = "Vulva:";
     //
     // textBox34
     //
     this.textBox34.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.8999999761581421D), Telerik.Reporting.Drawing.Unit.Inch(2.510495662689209D));
     this.textBox34.Name = "textBox34";
     this.textBox34.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox34.Style.Font.Bold = true;
     this.textBox34.Style.Font.Name = "Arial";
     this.textBox34.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox34.Value = "Spleen:";
     //
     // textBox35
     //
     this.textBox35.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.8999999761581421D), Telerik.Reporting.Drawing.Unit.Inch(2.3604166507720947D));
     this.textBox35.Name = "textBox35";
     this.textBox35.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox35.Style.Font.Bold = true;
     this.textBox35.Style.Font.Name = "Arial";
     this.textBox35.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox35.Value = "OS:";
     //
     // textBox36
     //
     this.textBox36.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.5000789165496826D), Telerik.Reporting.Drawing.Unit.Inch(2.3583333492279053D));
     this.textBox36.Name = "textBox36";
     this.textBox36.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1999998092651367D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox36.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox36.Value = "=Fields.OS";
     //
     // textBox37
     //
     this.textBox37.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.5000789165496826D), Telerik.Reporting.Drawing.Unit.Inch(2.510495662689209D));
     this.textBox37.Name = "textBox37";
     this.textBox37.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1999998092651367D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox37.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox37.Value = "=Fields.Spleen";
     //
     // textBox38
     //
     this.textBox38.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.5000789165496826D), Telerik.Reporting.Drawing.Unit.Inch(2.6605744361877441D));
     this.textBox38.Name = "textBox38";
     this.textBox38.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1999998092651367D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox38.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox38.Value = "=Fields.V****a";
     //
     // textBox39
     //
     this.textBox39.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.5000789165496826D), Telerik.Reporting.Drawing.Unit.Inch(2.8106534481048584D));
     this.textBox39.Name = "textBox39";
     this.textBox39.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1999998092651367D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox39.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox39.Value = "=Fields.Vulva";
     //
     // textBox40
     //
     this.textBox40.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.5000789165496826D), Telerik.Reporting.Drawing.Unit.Inch(2.9607322216033936D));
     this.textBox40.Name = "textBox40";
     this.textBox40.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1999998092651367D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox40.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox40.Value = "=Fields.BP";
     //
     // textBox41
     //
     this.textBox41.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.5000789165496826D), Telerik.Reporting.Drawing.Unit.Inch(3.1108105182647705D));
     this.textBox41.Name = "textBox41";
     this.textBox41.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1999998092651367D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox41.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox41.Value = "=Fields.Pulse";
     //
     // textBox42
     //
     this.textBox42.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.5000789165496826D), Telerik.Reporting.Drawing.Unit.Inch(3.2608897686004639D));
     this.textBox42.Name = "textBox42";
     this.textBox42.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1999998092651367D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox42.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox42.Value = "=Fields.Temperature";
     //
     // textBox43
     //
     this.textBox43.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.5000789165496826D), Telerik.Reporting.Drawing.Unit.Inch(3.4109680652618408D));
     this.textBox43.Name = "textBox43";
     this.textBox43.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1999998092651367D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox43.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox43.Value = "=Fields.Weight";
     //
     // textBox44
     //
     this.textBox44.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.5000789165496826D), Telerik.Reporting.Drawing.Unit.Inch(3.5610466003417969D));
     this.textBox44.Name = "textBox44";
     this.textBox44.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1999998092651367D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox44.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox44.Value = "=Fields.Others";
     //
     // textBox45
     //
     this.textBox45.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.800000011920929D), Telerik.Reporting.Drawing.Unit.Inch(7.3479170799255371D));
     this.textBox45.Name = "textBox45";
     this.textBox45.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.899921178817749D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox45.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox45.Value = "=Fields.DoctorName";
     //
     // textBox46
     //
     this.textBox46.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.80000013113021851D), Telerik.Reporting.Drawing.Unit.Inch(1.7583333253860474D));
     this.textBox46.Name = "textBox46";
     this.textBox46.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6999999284744263D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox46.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox46.Value = "=Fields.DrugAllergy";
     //
     // textBox47
     //
     this.textBox47.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.8000791072845459D), Telerik.Reporting.Drawing.Unit.Inch(1.9583331346511841D));
     this.textBox47.Name = "textBox47";
     this.textBox47.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6999210119247437D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox47.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox47.Value = "=Fields.DrugHistory";
     //
     // textBox48
     //
     this.textBox48.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(2.1583333015441895D));
     this.textBox48.Name = "textBox48";
     this.textBox48.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2000000476837158D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox48.Style.Font.Bold = true;
     this.textBox48.Style.Font.Name = "Arial";
     this.textBox48.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(10D);
     this.textBox48.Style.Font.Strikeout = false;
     this.textBox48.Style.Font.Underline = true;
     this.textBox48.Value = "On Examination:";
     //
     // textBox49
     //
     this.textBox49.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(1.7583333253860474D));
     this.textBox49.Name = "textBox49";
     this.textBox49.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.80000013113021851D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox49.Style.Font.Bold = true;
     this.textBox49.Style.Font.Name = "Arial";
     this.textBox49.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox49.Value = "Drug Allergy:";
     //
     // textBox50
     //
     this.textBox50.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(1.9583330154418945D));
     this.textBox50.Name = "textBox50";
     this.textBox50.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.80000019073486328D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox50.Style.Font.Bold = true;
     this.textBox50.Style.Font.Name = "Arial";
     this.textBox50.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox50.Value = "Drug History:";
     //
     // textBox51
     //
     this.textBox51.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(7.3479170799255371D));
     this.textBox51.Name = "textBox51";
     this.textBox51.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.80000013113021851D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox51.Style.Font.Bold = true;
     this.textBox51.Style.Font.Name = "Arial";
     this.textBox51.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox51.Value = "Doctor Name:";
     //
     // panel2
     //
     this.panel2.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.subReport3,
     this.subReport4});
     this.panel2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(3.847916841506958D));
     this.panel2.Name = "panel2";
     this.panel2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.2000002861022949D), Telerik.Reporting.Drawing.Unit.Inch(2.3999998569488525D));
     //
     // subReport3
     //
     this.subReport3.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.1000000610947609D));
     this.subReport3.Name = "subReport3";
     instanceReportSource3.Parameters.Add(new Telerik.Reporting.Parameter("LinkPrmVisitID", "=Fields.VisitID"));
     instanceReportSource3.ReportDocument = this.provisionalDx_Sub1;
     this.subReport3.ReportSource = instanceReportSource3;
     this.subReport3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.0999999046325684D), Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D));
     //
     // subReport4
     //
     this.subReport4.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(1.3999999761581421D));
     this.subReport4.Name = "subReport4";
     instanceReportSource4.Parameters.Add(new Telerik.Reporting.Parameter("LinkPrmVisitID", "=Fields.VisitID"));
     instanceReportSource4.ReportDocument = this.confirmDx_Sub1;
     this.subReport4.ReportSource = instanceReportSource4;
     this.subReport4.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.0999999046325684D), Telerik.Reporting.Drawing.Unit.Inch(0.900000274181366D));
     //
     // panel3
     //
     this.panel3.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.subReport5,
     this.subReport6});
     this.panel3.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.2000002861022949D), Telerik.Reporting.Drawing.Unit.Inch(1.7583334445953369D));
     this.panel3.Name = "panel3";
     this.panel3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.9000003337860107D), Telerik.Reporting.Drawing.Unit.Inch(1.9895833730697632D));
     //
     // subReport5
     //
     this.subReport5.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.subReport5.Name = "subReport5";
     instanceReportSource5.Parameters.Add(new Telerik.Reporting.Parameter("LinkPrmVisitID", "=Fields.VisitID"));
     instanceReportSource5.ReportDocument = this.positiveFindings_Sub1;
     this.subReport5.ReportSource = instanceReportSource5;
     this.subReport5.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.9000003337860107D), Telerik.Reporting.Drawing.Unit.Inch(0.98958331346511841D));
     //
     // subReport6
     //
     this.subReport6.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(1.0895833969116211D));
     this.subReport6.Name = "subReport6";
     instanceReportSource6.Parameters.Add(new Telerik.Reporting.Parameter("LinkPrmVisitID", "=Fields.VisitID"));
     instanceReportSource6.ReportDocument = this.negativeFindings_Sub1;
     this.subReport6.ReportSource = instanceReportSource6;
     this.subReport6.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.9000003337860107D), Telerik.Reporting.Drawing.Unit.Inch(0.900000274181366D));
     //
     // panel4
     //
     this.panel4.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.subReport7,
     this.subReport8});
     this.panel4.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.2000002861022949D), Telerik.Reporting.Drawing.Unit.Inch(3.847916841506958D));
     this.panel4.Name = "panel4";
     this.panel4.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.89996075630188D), Telerik.Reporting.Drawing.Unit.Inch(2.3999998569488525D));
     //
     // subReport7
     //
     this.subReport7.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(7.8837074397597462E-05D), Telerik.Reporting.Drawing.Unit.Inch(0.1000000610947609D));
     this.subReport7.Name = "subReport7";
     instanceReportSource7.Parameters.Add(new Telerik.Reporting.Parameter("LinkPrmVisitID", "=Fields.VisitID"));
     instanceReportSource7.ReportDocument = this.investigations_Sub1;
     this.subReport7.ReportSource = instanceReportSource7;
     this.subReport7.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.8999214172363281D), Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D));
     //
     // subReport8
     //
     this.subReport8.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(1.3999999761581421D));
     this.subReport8.Name = "subReport8";
     instanceReportSource8.Parameters.Add(new Telerik.Reporting.Parameter("LinkPrmVisitID", "=Fields.VisitID"));
     instanceReportSource8.ReportDocument = this.adviceBangla_Sub1;
     this.subReport8.ReportSource = instanceReportSource8;
     this.subReport8.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.7999999523162842D), Telerik.Reporting.Drawing.Unit.Inch(0.900000274181366D));
     //
     // MainPrescription
     //
     this.DataSource = this.sqlDataSource1;
     group1.GroupFooter = this.visitIDGroupFooterSection;
     group1.GroupHeader = this.visitIDGroupHeaderSection;
     group1.Groupings.Add(new Telerik.Reporting.Grouping("=Fields.VisitID"));
     group1.Name = "visitIDGroup";
     group2.GroupFooter = this.labelsGroupFooterSection;
     group2.GroupHeader = this.labelsGroupHeaderSection;
     group2.Name = "labelsGroup";
     this.Groups.AddRange(new Telerik.Reporting.Group[] {
     group1,
     group2});
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.visitIDGroupHeaderSection,
     this.visitIDGroupFooterSection,
     this.labelsGroupHeaderSection,
     this.labelsGroupFooterSection,
     this.pageHeader,
     this.pageFooter,
     this.reportHeader,
     this.detail});
     this.Name = "MainPrescription";
     this.PageSettings.Landscape = false;
     this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(0.5D));
     this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.Style.BackgroundColor = System.Drawing.Color.White;
     styleRule1.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
     new Telerik.Reporting.Drawing.StyleSelector("Title")});
     styleRule1.Style.Color = System.Drawing.Color.Black;
     styleRule1.Style.Font.Bold = true;
     styleRule1.Style.Font.Italic = false;
     styleRule1.Style.Font.Name = "Tahoma";
     styleRule1.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(18D);
     styleRule1.Style.Font.Strikeout = false;
     styleRule1.Style.Font.Underline = false;
     styleRule2.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
     new Telerik.Reporting.Drawing.StyleSelector("Caption")});
     styleRule2.Style.Color = System.Drawing.Color.Black;
     styleRule2.Style.Font.Name = "Tahoma";
     styleRule2.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(10D);
     styleRule2.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     styleRule3.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
     new Telerik.Reporting.Drawing.StyleSelector("Data")});
     styleRule3.Style.Font.Name = "Tahoma";
     styleRule3.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     styleRule3.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     styleRule4.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
     new Telerik.Reporting.Drawing.StyleSelector("PageInfo")});
     styleRule4.Style.Font.Name = "Tahoma";
     styleRule4.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     styleRule4.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.StyleSheet.AddRange(new Telerik.Reporting.Drawing.StyleRule[] {
     styleRule1,
     styleRule2,
     styleRule3,
     styleRule4});
     this.Width = Telerik.Reporting.Drawing.Unit.Inch(7.1000003814697266D);
     ((System.ComponentModel.ISupportInitialize)(this.cC_Sub1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.medicineDetails_Sub1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.provisionalDx_Sub1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.confirmDx_Sub1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.positiveFindings_Sub1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.negativeFindings_Sub1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.investigations_Sub1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.adviceBangla_Sub1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
        /// <summary>
        /// Required method for telerik Reporting designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.Reporting.TableGroup tableGroup1 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.TableGroup tableGroup2 = new Telerik.Reporting.TableGroup();
            Telerik.Reporting.InstanceReportSource instanceReportSource1 = new Telerik.Reporting.InstanceReportSource();
            Telerik.Reporting.InstanceReportSource instanceReportSource2 = new Telerik.Reporting.InstanceReportSource();
            Telerik.Reporting.Drawing.StyleRule styleRule1 = new Telerik.Reporting.Drawing.StyleRule();
            Telerik.Reporting.Drawing.StyleRule styleRule2 = new Telerik.Reporting.Drawing.StyleRule();
            Telerik.Reporting.Drawing.StyleRule styleRule3 = new Telerik.Reporting.Drawing.StyleRule();
            Telerik.Reporting.Drawing.StyleRule styleRule4 = new Telerik.Reporting.Drawing.StyleRule();
            this.subSummarySampleTestNotes1 = new ServiceHost.Implementation.Reports.SubSummarySampleTestNotes();
            this.subSummaryTestStandardNotes1 = new ServiceHost.Implementation.Reports.SubSummaryTestStandardNotes();
            this.detail = new Telerik.Reporting.DetailSection();
            this.textBox1 = new Telerik.Reporting.TextBox();
            this.textBox3 = new Telerik.Reporting.TextBox();
            this.textBox2 = new Telerik.Reporting.TextBox();
            this.textBox5 = new Telerik.Reporting.TextBox();
            this.textBox6 = new Telerik.Reporting.TextBox();
            this.textBox7 = new Telerik.Reporting.TextBox();
            this.textBox4 = new Telerik.Reporting.TextBox();
            this.textBox8 = new Telerik.Reporting.TextBox();
            this.list2 = new Telerik.Reporting.List();
            this.panelTimePoints = new Telerik.Reporting.Panel();
            this.textBox9 = new Telerik.Reporting.TextBox();
            this.textBox10 = new Telerik.Reporting.TextBox();
            this.textBox11 = new Telerik.Reporting.TextBox();
            this.textBox12 = new Telerik.Reporting.TextBox();
            this.textBox13 = new Telerik.Reporting.TextBox();
            this.textBox14 = new Telerik.Reporting.TextBox();
            this.textBox27 = new Telerik.Reporting.TextBox();
            this.textBox28 = new Telerik.Reporting.TextBox();
            this.textBox29 = new Telerik.Reporting.TextBox();
            this.textBox30 = new Telerik.Reporting.TextBox();
            this.textBox31 = new Telerik.Reporting.TextBox();
            this.textBox32 = new Telerik.Reporting.TextBox();
            this.textBox33 = new Telerik.Reporting.TextBox();
            this.textBox34 = new Telerik.Reporting.TextBox();
            this.textBox15 = new Telerik.Reporting.TextBox();
            this.textBox16 = new Telerik.Reporting.TextBox();
            this.textBox20 = new Telerik.Reporting.TextBox();
            this.textBox19 = new Telerik.Reporting.TextBox();
            this.textBox22 = new Telerik.Reporting.TextBox();
            this.textBox21 = new Telerik.Reporting.TextBox();
            this.textBox24 = new Telerik.Reporting.TextBox();
            this.textBox23 = new Telerik.Reporting.TextBox();
            this.textBox25 = new Telerik.Reporting.TextBox();
            this.textBox26 = new Telerik.Reporting.TextBox();
            this.subSummarySampleTestNotes = new Telerik.Reporting.SubReport();
            this.subSummaryTestStandardNotes = new Telerik.Reporting.SubReport();
            ((System.ComponentModel.ISupportInitialize)(this.subSummarySampleTestNotes1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.subSummaryTestStandardNotes1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // subSummarySampleTestNotes1
            // 
            this.subSummarySampleTestNotes1.Name = "SubSummarySampleTestNotes";
            // 
            // subSummaryTestStandardNotes1
            // 
            this.subSummaryTestStandardNotes1.Name = "SubSummarySampleNotes";
            // 
            // detail
            // 
            this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(3.2375001907348633D);
            this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.textBox1,
            this.textBox3,
            this.textBox2,
            this.textBox5,
            this.textBox6,
            this.textBox7,
            this.textBox4,
            this.textBox8,
            this.list2,
            this.textBox15,
            this.textBox16,
            this.textBox20,
            this.textBox19,
            this.textBox22,
            this.textBox21,
            this.textBox24,
            this.textBox23,
            this.textBox25,
            this.textBox26,
            this.subSummarySampleTestNotes,
            this.subSummaryTestStandardNotes});
            this.detail.KeepTogether = false;
            this.detail.Name = "detail";
            this.detail.Style.BorderColor.Default = System.Drawing.Color.Black;
            this.detail.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
            this.detail.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Pixel(0.5D);
            this.detail.Style.Padding.Bottom = Telerik.Reporting.Drawing.Unit.Pixel(10D);
            this.detail.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Pixel(0D);
            // 
            // textBox1
            // 
            this.textBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.1999212503433228D), Telerik.Reporting.Drawing.Unit.Inch(0.30000004172325134D));
            this.textBox1.Name = "textBox1";
            this.textBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.20007848739624D), Telerik.Reporting.Drawing.Unit.Inch(0.19992136955261231D));
            this.textBox1.Value = "=Fields.TestType.TestName";
            // 
            // textBox3
            // 
            this.textBox3.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.1999212503433228D), Telerik.Reporting.Drawing.Unit.Inch(0.50000005960464478D));
            this.textBox3.Name = "textBox3";
            this.textBox3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.2000789642333984D), Telerik.Reporting.Drawing.Unit.Inch(0.19992136955261231D));
            this.textBox3.Value = "{Fields.MethodName} {Fields.MethodNumberName}";
            // 
            // textBox2
            // 
            this.textBox2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.1999212503433228D), Telerik.Reporting.Drawing.Unit.Inch(0.69996070861816406D));
            this.textBox2.Name = "textBox2";
            this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.20007848739624D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox2.Value = "=Fields.CatalogItem.Analyte.AnalyteName";
            // 
            // textBox5
            // 
            this.textBox5.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.1999212503433228D), Telerik.Reporting.Drawing.Unit.Inch(0.89996075630187988D));
            this.textBox5.Name = "textBox5";
            this.textBox5.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.20007848739624D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox5.Value = "=Fields.Specifications";
            // 
            // textBox6
            // 
            this.textBox6.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.0999605655670166D), Telerik.Reporting.Drawing.Unit.Inch(0.29996070265769958D));
            this.textBox6.Name = "textBox6";
            this.textBox6.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.0998818874359131D), Telerik.Reporting.Drawing.Unit.Inch(0.19996070861816406D));
            this.textBox6.Style.Font.Bold = true;
            this.textBox6.Value = "Test :";
            // 
            // textBox7
            // 
            this.textBox7.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.0999605655670166D), Telerik.Reporting.Drawing.Unit.Inch(0.49996066093444824D));
            this.textBox7.Name = "textBox7";
            this.textBox7.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.0998818874359131D), Telerik.Reporting.Drawing.Unit.Inch(0.19996070861816406D));
            this.textBox7.Style.Font.Bold = true;
            this.textBox7.Value = "Test Method :";
            // 
            // textBox4
            // 
            this.textBox4.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.099921144545078278D), Telerik.Reporting.Drawing.Unit.Inch(0.69996070861816406D));
            this.textBox4.Name = "textBox4";
            this.textBox4.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.0998818874359131D), Telerik.Reporting.Drawing.Unit.Inch(0.19996070861816406D));
            this.textBox4.Style.Font.Bold = true;
            this.textBox4.Value = "Analyte :";
            // 
            // textBox8
            // 
            this.textBox8.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.099921144545078278D), Telerik.Reporting.Drawing.Unit.Inch(0.89996075630187988D));
            this.textBox8.Name = "textBox8";
            this.textBox8.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.0998818874359131D), Telerik.Reporting.Drawing.Unit.Inch(0.19996070861816406D));
            this.textBox8.Style.Font.Bold = true;
            this.textBox8.Value = "Specifications :";
            // 
            // list2
            // 
            this.list2.Bindings.Add(new Telerik.Reporting.Binding("DataSource", "=ReportItem.DataObject.TimePoints"));
            this.list2.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(7.399960994720459D)));
            this.list2.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(Telerik.Reporting.Drawing.Unit.Inch(0.99992114305496216D)));
            this.list2.Body.SetCellContent(0, 0, this.panelTimePoints);
            tableGroup1.Name = "ColumnGroup";
            this.list2.ColumnGroups.Add(tableGroup1);
            this.list2.Filters.Add(new Telerik.Reporting.Filter("=CStr(Fields.TimepointType)", Telerik.Reporting.FilterOperator.NotEqual, "Begin"));
            this.list2.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.panelTimePoints});
            this.list2.KeepTogether = false;
            this.list2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D), Telerik.Reporting.Drawing.Unit.Inch(1.5D));
            this.list2.Name = "list2";
            tableGroup2.Groupings.Add(new Telerik.Reporting.Grouping(null));
            tableGroup2.Name = "DetailGroup";
            this.list2.RowGroups.Add(tableGroup2);
            this.list2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(7.399960994720459D), Telerik.Reporting.Drawing.Unit.Inch(0.99992114305496216D));
            // 
            // panelTimePoints
            // 
            this.panelTimePoints.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.textBox9,
            this.textBox10,
            this.textBox11,
            this.textBox12,
            this.textBox13,
            this.textBox14,
            this.textBox27,
            this.textBox28,
            this.textBox29,
            this.textBox30,
            this.textBox31,
            this.textBox32,
            this.textBox33,
            this.textBox34});
            this.panelTimePoints.Name = "panelTimePoints";
            this.panelTimePoints.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(7.399960994720459D), Telerik.Reporting.Drawing.Unit.Inch(0.99992114305496216D));
            // 
            // textBox9
            // 
            this.textBox9.CanShrink = true;
            this.textBox9.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.66037708520889282D), Telerik.Reporting.Drawing.Unit.Inch(0.5D));
            this.textBox9.Name = "textBox9";
            this.textBox9.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.7394261360168457D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox9.Value = "=Fields.ResultDetail.Limit";
            // 
            // textBox10
            // 
            this.textBox10.CanShrink = true;
            this.textBox10.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.66037708520889282D), Telerik.Reporting.Drawing.Unit.Inch(0.79996109008789062D));
            this.textBox10.Name = "textBox10";
            this.textBox10.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.7394261360168457D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox10.Value = "=Fields.ResultDetail.Result";
            // 
            // textBox11
            // 
            this.textBox11.Format = "{0:d}";
            this.textBox11.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.79988175630569458D), Telerik.Reporting.Drawing.Unit.Inch(0.10000014305114746D));
            this.textBox11.Name = "textBox11";
            this.textBox11.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.3000003099441528D), Telerik.Reporting.Drawing.Unit.Inch(0.19984228909015656D));
            this.textBox11.Value = "=Fields.ResultDetail.ResultDate";
            // 
            // textBox12
            // 
            this.textBox12.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.0999605655670166D), Telerik.Reporting.Drawing.Unit.Inch(0.10000014305114746D));
            this.textBox12.Name = "textBox12";
            this.textBox12.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.69992125034332275D), Telerik.Reporting.Drawing.Unit.Inch(0.19996070861816406D));
            this.textBox12.Style.Font.Bold = true;
            this.textBox12.Value = "Test Date:";
            // 
            // textBox13
            // 
            this.textBox13.CanShrink = false;
            this.textBox13.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.099921144545078278D), Telerik.Reporting.Drawing.Unit.Inch(0.5D));
            this.textBox13.Name = "textBox13";
            this.textBox13.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.56037724018096924D), Telerik.Reporting.Drawing.Unit.Inch(0.19996070861816406D));
            this.textBox13.Style.Font.Bold = true;
            this.textBox13.Value = "Limit :";
            // 
            // textBox14
            // 
            this.textBox14.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.099921144545078278D), Telerik.Reporting.Drawing.Unit.Inch(0.80000019073486328D));
            this.textBox14.Name = "textBox14";
            this.textBox14.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.560377299785614D), Telerik.Reporting.Drawing.Unit.Inch(0.19996070861816406D));
            this.textBox14.Style.Font.Bold = true;
            this.textBox14.Value = "Result :";
            // 
            // textBox27
            // 
            this.textBox27.Bindings.Add(new Telerik.Reporting.Binding("Visible", "= IIf(IsNull(Fields.ResultDetail.ExpectedResult, 0) <> 0,True,False)"));
            this.textBox27.CanShrink = true;
            this.textBox27.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.9998819828033447D), Telerik.Reporting.Drawing.Unit.Inch(0.2999211847782135D));
            this.textBox27.Name = "textBox27";
            this.textBox27.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6999211311340332D), Telerik.Reporting.Drawing.Unit.Inch(0.19996070861816406D));
            this.textBox27.Style.Font.Bold = true;
            this.textBox27.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox27.Value = "Percentage of Expected :";
            // 
            // textBox28
            // 
            this.textBox28.Bindings.Add(new Telerik.Reporting.Binding("Visible", "= IIf(IsNull(Fields.ResultDetail.ExpectedResult, 0) <> 0,True,False)"));
            this.textBox28.CanShrink = true;
            this.textBox28.Format = "{0}";
            this.textBox28.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.6998820304870605D), Telerik.Reporting.Drawing.Unit.Inch(0.2999211847782135D));
            this.textBox28.Name = "textBox28";
            this.textBox28.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2999997138977051D), Telerik.Reporting.Drawing.Unit.Inch(0.19984228909015656D));
            this.textBox28.Value = "{Fields.ResultDetail.ExpectedResult} %";
            // 
            // textBox29
            // 
            this.textBox29.Bindings.Add(new Telerik.Reporting.Binding("Visible", "= IIf(IsNull(Fields.ResultDetail.ExpectedResult, 0) <> 0,True,False)"));
            this.textBox29.CanShrink = true;
            this.textBox29.Format = "{0}";
            this.textBox29.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.4020832777023315D), Telerik.Reporting.Drawing.Unit.Inch(0.3000396192073822D));
            this.textBox29.Name = "textBox29";
            this.textBox29.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.89583331346511841D), Telerik.Reporting.Drawing.Unit.Inch(0.19984228909015656D));
            this.textBox29.Value = "= Fields.ResultDetail.ExpectedAmount";
            // 
            // textBox30
            // 
            this.textBox30.Bindings.Add(new Telerik.Reporting.Binding("Visible", "= IIf(IsNull(Fields.ResultDetail.ExpectedResult, 0) <> 0,True,False)"));
            this.textBox30.CanShrink = true;
            this.textBox30.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.099999986588954926D), Telerik.Reporting.Drawing.Unit.Inch(0.3000396192073822D));
            this.textBox30.Name = "textBox30";
            this.textBox30.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2978377342224121D), Telerik.Reporting.Drawing.Unit.Inch(0.19996070861816406D));
            this.textBox30.Style.Font.Bold = true;
            this.textBox30.Value = "Expected Amount:";
            // 
            // textBox31
            // 
            this.textBox31.Bindings.Add(new Telerik.Reporting.Binding("Visible", "= IIf(IsNull(Fields.ResultDetail.ExpectedResult, 0) <> 0,True,False)"));
            this.textBox31.CanShrink = true;
            this.textBox31.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.3998818397521973D), Telerik.Reporting.Drawing.Unit.Inch(0.2999211847782135D));
            this.textBox31.Name = "textBox31";
            this.textBox31.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.49791601300239563D), Telerik.Reporting.Drawing.Unit.Inch(0.19996070861816406D));
            this.textBox31.Style.Font.Bold = true;
            this.textBox31.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox31.Value = "Units :";
            // 
            // textBox32
            // 
            this.textBox32.Bindings.Add(new Telerik.Reporting.Binding("Visible", "= IIf(IsNull(Fields.ResultDetail.ExpectedResult, 0) <> 0,True,False)"));
            this.textBox32.CanShrink = true;
            this.textBox32.Format = "{0}";
            this.textBox32.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.8977978229522705D), Telerik.Reporting.Drawing.Unit.Inch(0.2999211847782135D));
            this.textBox32.Name = "textBox32";
            this.textBox32.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.902083694934845D), Telerik.Reporting.Drawing.Unit.Inch(0.19984228909015656D));
            this.textBox32.Value = "= Fields.ResultDetail.ExpectedUnits";
            // 
            // textBox33
            // 
            this.textBox33.CanShrink = true;
            this.textBox33.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.3998818397521973D), Telerik.Reporting.Drawing.Unit.Inch(0.099881649017333984D));
            this.textBox33.Name = "textBox33";
            this.textBox33.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.899999737739563D), Telerik.Reporting.Drawing.Unit.Inch(0.19996070861816406D));
            this.textBox33.Style.Font.Bold = true;
            this.textBox33.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox33.Value = "Certified By: ";
            // 
            // textBox34
            // 
            this.textBox34.Format = "{0:d}";
            this.textBox34.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.2999606132507324D), Telerik.Reporting.Drawing.Unit.Inch(0.099881649017333984D));
            this.textBox34.Name = "textBox34";
            this.textBox34.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.6999211311340332D), Telerik.Reporting.Drawing.Unit.Inch(0.19984228909015656D));
            this.textBox34.Value = "{Fields.ReportedByUser} on {Fields.ReportDate}";
            // 
            // textBox15
            // 
            this.textBox15.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.099999986588954926D), Telerik.Reporting.Drawing.Unit.Inch(0.099960722029209137D));
            this.textBox15.Name = "textBox15";
            this.textBox15.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.0998818874359131D), Telerik.Reporting.Drawing.Unit.Inch(0.19996070861816406D));
            this.textBox15.Style.Font.Bold = true;
            this.textBox15.Value = "Test # :";
            // 
            // textBox16
            // 
            this.textBox16.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.199881911277771D), Telerik.Reporting.Drawing.Unit.Inch(0.10000010579824448D));
            this.textBox16.Name = "textBox16";
            this.textBox16.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.0999997854232788D), Telerik.Reporting.Drawing.Unit.Inch(0.20000004768371582D));
            this.textBox16.Value = "=Fields.Id";
            // 
            // textBox20
            // 
            this.textBox20.Bindings.Add(new Telerik.Reporting.Binding("Visible", "= IIf(Fields.RequirementCode = \"EndotoxinUSP85\", IIf(IsNull(Fields.EndotoxinLimit" +
            ", 0) >= 0,True,False), False)"));
            this.textBox20.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.2999212741851807D), Telerik.Reporting.Drawing.Unit.Inch(1.1000396013259888D));
            this.textBox20.Name = "textBox20";
            this.textBox20.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.5D), Telerik.Reporting.Drawing.Unit.Inch(0.20000004768371582D));
            this.textBox20.Style.Visible = true;
            this.textBox20.Value = "{Fields.EndotoxinLimit} / {Fields.EndotoxinLimitUom}";
            // 
            // textBox19
            // 
            this.textBox19.Bindings.Add(new Telerik.Reporting.Binding("Visible", "= IIf(Fields.RequirementCode = \"EndotoxinUSP85\", IIf(IsNull(Fields.EndotoxinLimit" +
            ", 0) >= 0,True,False), False)"));
            this.textBox19.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.099921144545078278D), Telerik.Reporting.Drawing.Unit.Inch(1.1000396013259888D));
            this.textBox19.Name = "textBox19";
            this.textBox19.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.199881911277771D), Telerik.Reporting.Drawing.Unit.Inch(0.19996070861816406D));
            this.textBox19.Style.Font.Bold = true;
            this.textBox19.Value = "Endotoxin Limit :";
            // 
            // textBox22
            // 
            this.textBox22.Bindings.Add(new Telerik.Reporting.Binding("Visible", "= IIf(Fields.RequirementCode = \"EndotoxinUSP85\", IIf(IsNull(Fields.EndotoxinLimit" +
            ", 0) <= 0,True,False), False)"));
            this.textBox22.CanShrink = true;
            this.textBox22.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.099921144545078278D), Telerik.Reporting.Drawing.Unit.Inch(1.3001184463500977D));
            this.textBox22.Name = "textBox22";
            this.textBox22.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.199881911277771D), Telerik.Reporting.Drawing.Unit.Inch(0.19992096722126007D));
            this.textBox22.Style.Font.Bold = true;
            this.textBox22.Value = "Average Weight :";
            // 
            // textBox21
            // 
            this.textBox21.Bindings.Add(new Telerik.Reporting.Binding("Visible", "= IIf(Fields.RequirementCode = \"EndotoxinUSP85\", IIf(IsNull(Fields.EndotoxinLimit" +
            ", 0) <= 0,True,False), False)"));
            this.textBox21.CanShrink = true;
            this.textBox21.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.2999211549758911D), Telerik.Reporting.Drawing.Unit.Inch(1.3001184463500977D));
            this.textBox21.Name = "textBox21";
            this.textBox21.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.99795597791671753D), Telerik.Reporting.Drawing.Unit.Inch(0.19996030628681183D));
            this.textBox21.Style.Visible = true;
            this.textBox21.Value = "{Fields.AvgWeight} {Fields.AvgWeightUom}";
            // 
            // textBox24
            // 
            this.textBox24.Bindings.Add(new Telerik.Reporting.Binding("Visible", "= IIf(Fields.RequirementCode = \"EndotoxinUSP85\", IIf(IsNull(Fields.EndotoxinLimit" +
            ", 0) <= 0,True,False), False)"));
            this.textBox24.CanShrink = true;
            this.textBox24.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.6998045444488525D), Telerik.Reporting.Drawing.Unit.Inch(1.3001184463500977D));
            this.textBox24.Name = "textBox24";
            this.textBox24.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.86041772365570068D), Telerik.Reporting.Drawing.Unit.Inch(0.19996030628681183D));
            this.textBox24.Style.Visible = true;
            this.textBox24.Value = "{Fields.DosePerHour} / {Fields.DosePerHourUom}";
            // 
            // textBox23
            // 
            this.textBox23.Bindings.Add(new Telerik.Reporting.Binding("Visible", "= IIf(Fields.RequirementCode = \"EndotoxinUSP85\", IIf(IsNull(Fields.EndotoxinLimit" +
            ", 0) <= 0,True,False), False)"));
            this.textBox23.CanShrink = true;
            this.textBox23.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.2998030185699463D), Telerik.Reporting.Drawing.Unit.Inch(1.3001184463500977D));
            this.textBox23.Name = "textBox23";
            this.textBox23.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.3999996185302734D), Telerik.Reporting.Drawing.Unit.Inch(0.19992096722126007D));
            this.textBox23.Style.Font.Bold = true;
            this.textBox23.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox23.Value = "Max Dose Per Hour :";
            // 
            // textBox25
            // 
            this.textBox25.Bindings.Add(new Telerik.Reporting.Binding("Visible", "= IIf(Fields.RequirementCode = \"EndotoxinUSP85\", IIf(IsNull(Fields.EndotoxinLimit" +
            ", 0) <= 0,True,False), False)"));
            this.textBox25.CanShrink = true;
            this.textBox25.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.6999216079711914D), Telerik.Reporting.Drawing.Unit.Inch(1.3000392913818359D));
            this.textBox25.Name = "textBox25";
            this.textBox25.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6999212503433228D), Telerik.Reporting.Drawing.Unit.Inch(0.20000004768371582D));
            this.textBox25.Style.Visible = true;
            this.textBox25.Value = "=Fields.RouteOfAdministration";
            // 
            // textBox26
            // 
            this.textBox26.Bindings.Add(new Telerik.Reporting.Binding("Visible", "= IIf(Fields.RequirementCode = \"EndotoxinUSP85\", IIf(IsNull(Fields.EndotoxinLimit" +
            ", 0) <= 0,True,False), False)"));
            this.textBox26.CanShrink = true;
            this.textBox26.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.601926326751709D), Telerik.Reporting.Drawing.Unit.Inch(1.3000392913818359D));
            this.textBox26.Name = "textBox26";
            this.textBox26.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.0979163646697998D), Telerik.Reporting.Drawing.Unit.Inch(0.19996070861816406D));
            this.textBox26.Style.Font.Bold = true;
            this.textBox26.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox26.Value = "Administration :";
            // 
            // subSummarySampleTestNotes
            // 
            this.subSummarySampleTestNotes.KeepTogether = false;
            this.subSummarySampleTestNotes.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.052122753113508224D), Telerik.Reporting.Drawing.Unit.Inch(2.53125D));
            this.subSummarySampleTestNotes.Name = "subSummarySampleTestNotes";
            instanceReportSource1.ReportDocument = this.subSummarySampleTestNotes1;
            this.subSummarySampleTestNotes.ReportSource = instanceReportSource1;
            this.subSummarySampleTestNotes.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(7.40000057220459D), Telerik.Reporting.Drawing.Unit.Inch(0.30000019073486328D));
            // 
            // subSummaryTestStandardNotes
            // 
            this.subSummaryTestStandardNotes.KeepTogether = false;
            this.subSummaryTestStandardNotes.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.0520833320915699D), Telerik.Reporting.Drawing.Unit.Inch(2.879166841506958D));
            this.subSummaryTestStandardNotes.Name = "subSummaryTestStandardNotes";
            instanceReportSource2.ReportDocument = this.subSummaryTestStandardNotes1;
            this.subSummaryTestStandardNotes.ReportSource = instanceReportSource2;
            this.subSummaryTestStandardNotes.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(7.4061713218688965D), Telerik.Reporting.Drawing.Unit.Inch(0.29579383134841919D));
            // 
            // SubSummarySampleTests
            // 
            this.Bindings.Add(new Telerik.Reporting.Binding("DataSource", "=ReportItem.DataObject.SampleTests"));
            this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.detail});
            this.Name = "SubSummarySampleTests";
            this.PageSettings.Landscape = false;
            this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(0.5D));
            this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.Letter;
            this.Style.BackgroundColor = System.Drawing.Color.White;
            styleRule1.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
            new Telerik.Reporting.Drawing.StyleSelector("Title")});
            styleRule1.Style.Color = System.Drawing.Color.Black;
            styleRule1.Style.Font.Bold = true;
            styleRule1.Style.Font.Italic = false;
            styleRule1.Style.Font.Name = "Tahoma";
            styleRule1.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(18D);
            styleRule1.Style.Font.Strikeout = false;
            styleRule1.Style.Font.Underline = false;
            styleRule2.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
            new Telerik.Reporting.Drawing.StyleSelector("Caption")});
            styleRule2.Style.Color = System.Drawing.Color.Black;
            styleRule2.Style.Font.Name = "Tahoma";
            styleRule2.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(10D);
            styleRule2.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
            styleRule3.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
            new Telerik.Reporting.Drawing.StyleSelector("Data")});
            styleRule3.Style.Font.Name = "Tahoma";
            styleRule3.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
            styleRule3.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
            styleRule4.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
            new Telerik.Reporting.Drawing.StyleSelector("PageInfo")});
            styleRule4.Style.Font.Name = "Tahoma";
            styleRule4.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
            styleRule4.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
            this.StyleSheet.AddRange(new Telerik.Reporting.Drawing.StyleRule[] {
            styleRule1,
            styleRule2,
            styleRule3,
            styleRule4});
            this.Width = Telerik.Reporting.Drawing.Unit.Inch(7.4999213218688965D);
            ((System.ComponentModel.ISupportInitialize)(this.subSummarySampleTestNotes1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.subSummaryTestStandardNotes1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();

        }
        private static void CreateLetterToPutInFrontOfNote(FaxTelephoneNumber faxTelephoneNumber, SignedDocument document)
        {
            Correspondence letter = new Correspondence();
            letter.TodaysDate = DateTime.Now.ToLongDateString();
            letter.MessageFrom = "A patient communications update from the office of " + document.CareProviderName;

            if (string.IsNullOrEmpty(faxTelephoneNumber.AddressLine1))
            {
                faxTelephoneNumber.AddressLine1 = string.Empty;
            }

            if (string.IsNullOrEmpty(faxTelephoneNumber.AddressLine2))
            {
                faxTelephoneNumber.AddressLine2 = string.Empty;
            }

            if (string.IsNullOrEmpty(faxTelephoneNumber.City))
            {
                faxTelephoneNumber.City = string.Empty;
            }
            else
            {
                faxTelephoneNumber.City = faxTelephoneNumber.City + ", ";
            }

            if (string.IsNullOrEmpty(faxTelephoneNumber.State))
            {
                faxTelephoneNumber.State = string.Empty;
            }
            else
            {
                faxTelephoneNumber.State = faxTelephoneNumber.State + " ";
            }

            if (string.IsNullOrEmpty(faxTelephoneNumber.PostalCode))
            {
                faxTelephoneNumber.PostalCode = string.Empty;
            }

            if (faxTelephoneNumber.AddressLine2.Length > 0)
            {
                letter.HeaderText = faxTelephoneNumber.Name + Environment.NewLine
                    + faxTelephoneNumber.AddressLine1 + Environment.NewLine
                    + faxTelephoneNumber.AddressLine2 + Environment.NewLine
                    + faxTelephoneNumber.City
                    + faxTelephoneNumber.State + faxTelephoneNumber.PostalCode;
            }
            else
            {
                string[] credential = faxTelephoneNumber.FullName.Split(' ');
                faxTelephoneNumber.Name = credential[1] + " " + credential[0] + " " + credential[credential.Length - 1];

                letter.HeaderText = credential[1] + " " + credential[0] + " " + credential[credential.Length - 1] + Environment.NewLine
                     + faxTelephoneNumber.AddressLine1 + Environment.NewLine
                     + faxTelephoneNumber.City
                     + faxTelephoneNumber.State + faxTelephoneNumber.PostalCode;
            }

            letter.BodyText = "I saw your patient " + document.PatientName
                + " at your request in consultation regarding the patient’s  orthopedic problem.  "
                + " Thank you for your kind referral." + Environment.NewLine + Environment.NewLine
                + "I’ve enclosed a copy of our office notes which includes "
                + "the diagnosis and treatment plan.  I will continue to keep you updated in the future with "
                + "regard to our patient’s progress .  Please let me know if I can answer any further questions "
                + "regarding our patient’s care." + Environment.NewLine + Environment.NewLine + Environment.NewLine
                + "All the Best,"
                + Environment.NewLine + Environment.NewLine + Environment.NewLine + Environment.NewLine + Environment.NewLine + Environment.NewLine + Environment.NewLine
                + document.CareProviderName
                + Environment.NewLine + Environment.NewLine
                + "Enclosure"
            ;

            AutomatedFaxReports.Letter report1 = new AutomatedFaxReports.Letter(letter);
            Telerik.Reporting.Processing.ReportProcessor reportProcessor = new Telerik.Reporting.Processing.ReportProcessor();
            Telerik.Reporting.InstanceReportSource instanceReportSource = new Telerik.Reporting.InstanceReportSource();
            instanceReportSource.ReportDocument = report1;
            Telerik.Reporting.Processing.RenderingResult result = reportProcessor.RenderReport("PDF", instanceReportSource, null);
            using (var pdfStream = new MemoryStream(result.DocumentBytes))
            using (var reportFile = new FileStream(ConfigurationValues.CorrespondensePath, FileMode.Create))
            {
                pdfStream.CopyTo(reportFile);
            }

            PdfFileEditor pdfEditor = new PdfFileEditor();

            //    try
            //    {
            //        File.Delete(ConfigurationValues.FinalFaxPath);
            //    }
            //    catch { }

            ConfigurationValues.FinalFaxPath = System.Configuration.ConfigurationManager.AppSettings["finalFaxPath"] + Guid.NewGuid().ToString() + ".pdf";
            pdfEditor.Concatenate(ConfigurationValues.CorrespondensePath, ConfigurationValues.CreatePdfPath, ConfigurationValues.FinalFaxPath);

        }
Beispiel #46
0
 /// <summary>
 /// Required method for telerik Reporting designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.Reporting.InstanceReportSource instanceReportSource1 = new Telerik.Reporting.InstanceReportSource();
     Telerik.Reporting.InstanceReportSource instanceReportSource2 = new Telerik.Reporting.InstanceReportSource();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LabTestOrderMain));
     Telerik.Reporting.Group group1 = new Telerik.Reporting.Group();
     Telerik.Reporting.Drawing.StyleRule styleRule1 = new Telerik.Reporting.Drawing.StyleRule();
     Telerik.Reporting.Drawing.StyleRule styleRule2 = new Telerik.Reporting.Drawing.StyleRule();
     Telerik.Reporting.Drawing.StyleRule styleRule3 = new Telerik.Reporting.Drawing.StyleRule();
     Telerik.Reporting.Drawing.StyleRule styleRule4 = new Telerik.Reporting.Drawing.StyleRule();
     this.labTestName_Sub1 = new OnlineOutPatientManagementSystem.Report.LabTestName_Sub();
     this.labTestDetails_Sub1 = new OnlineOutPatientManagementSystem.Report.LabTestDetails_Sub();
     this.labelsGroupFooterSection = new Telerik.Reporting.GroupFooterSection();
     this.labelsGroupHeaderSection = new Telerik.Reporting.GroupHeaderSection();
     this.sqlDataSource1 = new Telerik.Reporting.SqlDataSource();
     this.labTestIDCaptionTextBox = new Telerik.Reporting.TextBox();
     this.patientIDCaptionTextBox = new Telerik.Reporting.TextBox();
     this.pageHeader = new Telerik.Reporting.PageHeaderSection();
     this.reportNameTextBox = new Telerik.Reporting.TextBox();
     this.pageFooter = new Telerik.Reporting.PageFooterSection();
     this.currentTimeTextBox = new Telerik.Reporting.TextBox();
     this.pageInfoTextBox = new Telerik.Reporting.TextBox();
     this.reportHeader = new Telerik.Reporting.ReportHeaderSection();
     this.titleTextBox = new Telerik.Reporting.TextBox();
     this.reportFooter = new Telerik.Reporting.ReportFooterSection();
     this.detail = new Telerik.Reporting.DetailSection();
     this.labTestIDDataTextBox = new Telerik.Reporting.TextBox();
     this.patientIDDataTextBox = new Telerik.Reporting.TextBox();
     this.patientNameDataTextBox = new Telerik.Reporting.TextBox();
     this.panel1 = new Telerik.Reporting.Panel();
     this.subReport1 = new Telerik.Reporting.SubReport();
     this.panel2 = new Telerik.Reporting.Panel();
     this.subReport2 = new Telerik.Reporting.SubReport();
     this.textBox1 = new Telerik.Reporting.TextBox();
     this.textBox2 = new Telerik.Reporting.TextBox();
     this.textBox3 = new Telerik.Reporting.TextBox();
     this.textBox4 = new Telerik.Reporting.TextBox();
     this.textBox5 = new Telerik.Reporting.TextBox();
     this.textBox6 = new Telerik.Reporting.TextBox();
     this.textBox7 = new Telerik.Reporting.TextBox();
     this.textBox8 = new Telerik.Reporting.TextBox();
     this.textBox9 = new Telerik.Reporting.TextBox();
     this.textBox10 = new Telerik.Reporting.TextBox();
     this.textBox11 = new Telerik.Reporting.TextBox();
     this.textBox12 = new Telerik.Reporting.TextBox();
     this.textBox13 = new Telerik.Reporting.TextBox();
     this.textBox14 = new Telerik.Reporting.TextBox();
     this.textBox15 = new Telerik.Reporting.TextBox();
     this.textBox16 = new Telerik.Reporting.TextBox();
     this.textBox17 = new Telerik.Reporting.TextBox();
     this.textBox18 = new Telerik.Reporting.TextBox();
     this.textBox19 = new Telerik.Reporting.TextBox();
     this.textBox20 = new Telerik.Reporting.TextBox();
     this.textBox21 = new Telerik.Reporting.TextBox();
     this.textBox22 = new Telerik.Reporting.TextBox();
     this.textBox23 = new Telerik.Reporting.TextBox();
     this.textBox24 = new Telerik.Reporting.TextBox();
     this.textBox25 = new Telerik.Reporting.TextBox();
     this.textBox26 = new Telerik.Reporting.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.labTestName_Sub1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.labTestDetails_Sub1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // labTestName_Sub1
     //
     this.labTestName_Sub1.Name = "LabTestName_Sub";
     //
     // labTestDetails_Sub1
     //
     this.labTestDetails_Sub1.Name = "LabTestDetails_Sub";
     //
     // labelsGroupFooterSection
     //
     this.labelsGroupFooterSection.Height = Telerik.Reporting.Drawing.Unit.Inch(0.28125D);
     this.labelsGroupFooterSection.Name = "labelsGroupFooterSection";
     this.labelsGroupFooterSection.Style.Visible = false;
     //
     // labelsGroupHeaderSection
     //
     this.labelsGroupHeaderSection.Height = Telerik.Reporting.Drawing.Unit.Inch(0.29999995231628418D);
     this.labelsGroupHeaderSection.Name = "labelsGroupHeaderSection";
     this.labelsGroupHeaderSection.PrintOnEveryPage = true;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionString = "OnLinePrescriptionConnectionString";
     this.sqlDataSource1.Name = "sqlDataSource1";
     this.sqlDataSource1.Parameters.AddRange(new Telerik.Reporting.SqlDataSourceParameter[] {
     new Telerik.Reporting.SqlDataSourceParameter("@LabTestID", System.Data.DbType.AnsiString, "=Parameters.LabTestID.Value")});
     this.sqlDataSource1.SelectCommand = "dbo.sp_rpt_LabTestOrder";
     this.sqlDataSource1.SelectCommandType = Telerik.Reporting.SqlDataSourceCommandType.StoredProcedure;
     //
     // labTestIDCaptionTextBox
     //
     this.labTestIDCaptionTextBox.CanGrow = true;
     this.labTestIDCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0.3999999463558197D));
     this.labTestIDCaptionTextBox.Name = "labTestIDCaptionTextBox";
     this.labTestIDCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.90000009536743164D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.labTestIDCaptionTextBox.StyleName = "Caption";
     this.labTestIDCaptionTextBox.Value = "Lab Test ID";
     //
     // patientIDCaptionTextBox
     //
     this.patientIDCaptionTextBox.CanGrow = true;
     this.patientIDCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.2000000476837158D), Telerik.Reporting.Drawing.Unit.Inch(0.3999999463558197D));
     this.patientIDCaptionTextBox.Name = "patientIDCaptionTextBox";
     this.patientIDCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.89999991655349731D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.patientIDCaptionTextBox.StyleName = "Caption";
     this.patientIDCaptionTextBox.Value = "Patient ID";
     //
     // pageHeader
     //
     this.pageHeader.Height = Telerik.Reporting.Drawing.Unit.Inch(0.44166669249534607D);
     this.pageHeader.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.reportNameTextBox});
     this.pageHeader.Name = "pageHeader";
     //
     // reportNameTextBox
     //
     this.reportNameTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.reportNameTextBox.Name = "reportNameTextBox";
     this.reportNameTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(10.609580039978027D), Telerik.Reporting.Drawing.Unit.Inch(0.40000000596046448D));
     this.reportNameTextBox.StyleName = "PageInfo";
     this.reportNameTextBox.Value = "LabTestOrderMain";
     //
     // pageFooter
     //
     this.pageFooter.Height = Telerik.Reporting.Drawing.Unit.Inch(0.44166669249534607D);
     this.pageFooter.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.currentTimeTextBox,
     this.pageInfoTextBox});
     this.pageFooter.Name = "pageFooter";
     //
     // currentTimeTextBox
     //
     this.currentTimeTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.currentTimeTextBox.Name = "currentTimeTextBox";
     this.currentTimeTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(5.2943735122680664D), Telerik.Reporting.Drawing.Unit.Inch(0.40000000596046448D));
     this.currentTimeTextBox.StyleName = "PageInfo";
     this.currentTimeTextBox.Value = "=NOW()";
     //
     // pageInfoTextBox
     //
     this.pageInfoTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.3360400199890137D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.pageInfoTextBox.Name = "pageInfoTextBox";
     this.pageInfoTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(5.2943735122680664D), Telerik.Reporting.Drawing.Unit.Inch(0.40000000596046448D));
     this.pageInfoTextBox.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.pageInfoTextBox.StyleName = "PageInfo";
     this.pageInfoTextBox.Value = "=PageNumber";
     //
     // reportHeader
     //
     this.reportHeader.Height = Telerik.Reporting.Drawing.Unit.Inch(0.35833331942558289D);
     this.reportHeader.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.titleTextBox});
     this.reportHeader.Name = "reportHeader";
     //
     // titleTextBox
     //
     this.titleTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.titleTextBox.Name = "titleTextBox";
     this.titleTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(10.651247024536133D), Telerik.Reporting.Drawing.Unit.Inch(0.35833331942558289D));
     this.titleTextBox.StyleName = "Title";
     this.titleTextBox.Value = "LabTestOrderMain";
     //
     // reportFooter
     //
     this.reportFooter.Height = Telerik.Reporting.Drawing.Unit.Inch(0.28125D);
     this.reportFooter.Name = "reportFooter";
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(4.0999999046325684D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.labTestIDDataTextBox,
     this.patientIDDataTextBox,
     this.patientNameDataTextBox,
     this.labTestIDCaptionTextBox,
     this.patientIDCaptionTextBox,
     this.panel1,
     this.panel2,
     this.textBox1,
     this.textBox2,
     this.textBox3,
     this.textBox4,
     this.textBox5,
     this.textBox6,
     this.textBox7,
     this.textBox8,
     this.textBox9,
     this.textBox10,
     this.textBox11,
     this.textBox12,
     this.textBox13,
     this.textBox14,
     this.textBox15,
     this.textBox16,
     this.textBox17,
     this.textBox18,
     this.textBox19,
     this.textBox20,
     this.textBox21,
     this.textBox22,
     this.textBox23,
     this.textBox24,
     this.textBox25,
     this.textBox26});
     this.detail.Name = "detail";
     //
     // labTestIDDataTextBox
     //
     this.labTestIDDataTextBox.CanGrow = true;
     this.labTestIDDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.92091226577758789D), Telerik.Reporting.Drawing.Unit.Inch(0.3999999463558197D));
     this.labTestIDDataTextBox.Name = "labTestIDDataTextBox";
     this.labTestIDDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1791667938232422D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.labTestIDDataTextBox.StyleName = "Data";
     this.labTestIDDataTextBox.Value = "=Fields.LabTestID";
     //
     // patientIDDataTextBox
     //
     this.patientIDDataTextBox.CanGrow = true;
     this.patientIDDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.1000792980194092D), Telerik.Reporting.Drawing.Unit.Inch(0.3999999463558197D));
     this.patientIDDataTextBox.Name = "patientIDDataTextBox";
     this.patientIDDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1791667938232422D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.patientIDDataTextBox.StyleName = "Data";
     this.patientIDDataTextBox.Value = "=Fields.PatientID";
     //
     // patientNameDataTextBox
     //
     this.patientNameDataTextBox.CanGrow = true;
     this.patientNameDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.40007877349853516D), Telerik.Reporting.Drawing.Unit.Inch(0.68281286954879761D));
     this.patientNameDataTextBox.Name = "patientNameDataTextBox";
     this.patientNameDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.4790878295898438D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.patientNameDataTextBox.StyleName = "Data";
     this.patientNameDataTextBox.Value = "=Fields.PatientName";
     //
     // panel1
     //
     this.panel1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.subReport1});
     this.panel1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(1.3999999761581421D));
     this.panel1.Name = "panel1";
     this.panel1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.900000274181366D));
     //
     // subReport1
     //
     this.subReport1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.subReport1.Name = "subReport1";
     instanceReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("LinkPrmLabTestID", "=Fields.LabTestID"));
     instanceReportSource1.ReportDocument = this.labTestName_Sub1;
     this.subReport1.ReportSource = instanceReportSource1;
     this.subReport1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.3000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(0.80000019073486328D));
     //
     // panel2
     //
     this.panel2.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.subReport2});
     this.panel2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.9000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(1.6000000238418579D));
     this.panel2.Name = "panel2";
     this.panel2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.59999942779541D), Telerik.Reporting.Drawing.Unit.Inch(2D));
     //
     // subReport2
     //
     this.subReport2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.1000000610947609D));
     this.subReport2.Name = "subReport2";
     instanceReportSource2.Parameters.Add(new Telerik.Reporting.Parameter("LinkPrmLabTestID", "=Fields.LabTestID"));
     instanceReportSource2.ReportDocument = this.labTestDetails_Sub1;
     this.subReport2.ReportSource = instanceReportSource2;
     this.subReport2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.5D), Telerik.Reporting.Drawing.Unit.Inch(1.7999998331069946D));
     //
     // textBox1
     //
     this.textBox1.CanGrow = true;
     this.textBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.9000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.25833320617675781D));
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.89999991655349731D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox1.StyleName = "Caption";
     this.textBox1.Value = "Patient ID";
     //
     // textBox2
     //
     this.textBox2.CanGrow = true;
     this.textBox2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.900078296661377D), Telerik.Reporting.Drawing.Unit.Inch(0.05833323672413826D));
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.90000009536743164D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox2.StyleName = "Caption";
     this.textBox2.Value = "Lab Test ID";
     //
     // textBox3
     //
     this.textBox3.CanGrow = true;
     this.textBox3.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(6.80007791519165D), Telerik.Reporting.Drawing.Unit.Inch(0.26244974136352539D));
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1791667938232422D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox3.StyleName = "Data";
     this.textBox3.Value = "=Fields.PatientID";
     //
     // textBox4
     //
     this.textBox4.CanGrow = true;
     this.textBox4.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(6.80007791519165D), Telerik.Reporting.Drawing.Unit.Inch(0.05833323672413826D));
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1791667938232422D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox4.StyleName = "Data";
     this.textBox4.Value = "=Fields.LabTestID";
     //
     // textBox5
     //
     this.textBox5.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.020833492279052734D), Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D));
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.4791669845581055D), Telerik.Reporting.Drawing.Unit.Inch(0.39996051788330078D));
     this.textBox5.Style.Font.Bold = true;
     this.textBox5.Value = "REGISTRATION/CONSENT FROM FOR SAMPLE COLLECTION FOR DIAGNOSTIC/FUTURE RESEARCH";
     //
     // textBox6
     //
     this.textBox6.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.699999988079071D));
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.40000000596046448D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox6.Style.Font.Bold = false;
     this.textBox6.Style.Font.Name = "SutonnyMJ";
     this.textBox6.Value = "Avwg";
     //
     // textBox7
     //
     this.textBox7.CanGrow = true;
     this.textBox7.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.9000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.5D));
     this.textBox7.Name = "textBox7";
     this.textBox7.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.90000009536743164D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox7.StyleName = "Caption";
     this.textBox7.Value = "Patient Name";
     //
     // textBox8
     //
     this.textBox8.CanGrow = true;
     this.textBox8.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(6.8166656494140625D), Telerik.Reporting.Drawing.Unit.Inch(0.5D));
     this.textBox8.Name = "textBox8";
     this.textBox8.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.48333477973938D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox8.StyleName = "Data";
     this.textBox8.Value = "=Fields.PatientName";
     //
     // textBox9
     //
     this.textBox9.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.89999991655349731D));
     this.textBox9.Name = "textBox9";
     this.textBox9.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.4791669845581055D), Telerik.Reporting.Drawing.Unit.Inch(0.39996051788330078D));
     this.textBox9.Style.Font.Bold = true;
     this.textBox9.Style.Font.Name = "SutonnyMJ";
     this.textBox9.Value = "G g�g� m��wZ w`w�Q �h Avgvi i�/c�k�ve/ewn d�zBW/wUmy� wb���v� cix�vi D�χk� e�env" +
     "i Kiv hv�e| \r\nev�qvK�vwgK�vj/wm�iv�jwRK�vj/wngv�Uv�jwRK�vj/mvB�Uv�jwRK�vj/gvB��v" +
     "mKwc";
     //
     // textBox10
     //
     this.textBox10.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(2.3999998569488525D));
     this.textBox10.Name = "textBox10";
     this.textBox10.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.4791669845581055D), Telerik.Reporting.Drawing.Unit.Inch(0.900000274181366D));
     this.textBox10.Style.Font.Bold = true;
     this.textBox10.Style.Font.Name = "SutonnyMJ";
     this.textBox10.Value = resources.GetString("textBox10.Value");
     //
     // textBox11
     //
     this.textBox11.Format = "{0:dd/MM/yyyy}";
     this.textBox11.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(9.1000003814697266D), Telerik.Reporting.Drawing.Unit.Inch(0.05833323672413826D));
     this.textBox11.Name = "textBox11";
     this.textBox11.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D), Telerik.Reporting.Drawing.Unit.Inch(0.24166679382324219D));
     this.textBox11.Value = "=Fields.TestDate";
     //
     // textBox12
     //
     this.textBox12.Format = "{0:dd/MM/yyyy}";
     this.textBox12.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(9.1000003814697266D), Telerik.Reporting.Drawing.Unit.Inch(0.3000788688659668D));
     this.textBox12.Name = "textBox12";
     this.textBox12.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox12.Value = "=Fields.DeliveryDate";
     //
     // textBox13
     //
     this.textBox13.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(6.8000006675720215D), Telerik.Reporting.Drawing.Unit.Inch(0.699999988079071D));
     this.textBox13.Name = "textBox13";
     this.textBox13.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox13.Value = "=Fields.Sex";
     //
     // textBox14
     //
     this.textBox14.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(9.1000003814697266D), Telerik.Reporting.Drawing.Unit.Inch(0.699999988079071D));
     this.textBox14.Name = "textBox14";
     this.textBox14.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox14.Value = "=Fields.Age";
     //
     // textBox15
     //
     this.textBox15.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(6.8000006675720215D), Telerik.Reporting.Drawing.Unit.Inch(0.89999991655349731D));
     this.textBox15.Name = "textBox15";
     this.textBox15.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox15.Value = "=Fields.HeightCM";
     //
     // textBox16
     //
     this.textBox16.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(6.8000006675720215D), Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D));
     this.textBox16.Name = "textBox16";
     this.textBox16.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox16.Value = "=Fields.WeightKG";
     //
     // textBox17
     //
     this.textBox17.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(9.1000003814697266D), Telerik.Reporting.Drawing.Unit.Inch(0.89999991655349731D));
     this.textBox17.Name = "textBox17";
     this.textBox17.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox17.Value = "=Fields.HipCM";
     //
     // textBox18
     //
     this.textBox18.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(9.1000003814697266D), Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D));
     this.textBox18.Name = "textBox18";
     this.textBox18.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2000007629394531D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox18.Value = "=Fields.WaistCM";
     //
     // textBox19
     //
     this.textBox19.CanGrow = true;
     this.textBox19.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.9000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.699999988079071D));
     this.textBox19.Name = "textBox19";
     this.textBox19.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.90000009536743164D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox19.StyleName = "Caption";
     this.textBox19.Value = "Sex:";
     //
     // textBox20
     //
     this.textBox20.CanGrow = true;
     this.textBox20.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.9000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.89999991655349731D));
     this.textBox20.Name = "textBox20";
     this.textBox20.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.90000009536743164D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox20.StyleName = "Caption";
     this.textBox20.Value = "Height in CM:";
     //
     // textBox21
     //
     this.textBox21.CanGrow = true;
     this.textBox21.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.9000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D));
     this.textBox21.Name = "textBox21";
     this.textBox21.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.90000009536743164D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox21.StyleName = "Caption";
     this.textBox21.Value = "Weight in KG:";
     //
     // textBox22
     //
     this.textBox22.CanGrow = true;
     this.textBox22.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(8.1999216079711914D), Telerik.Reporting.Drawing.Unit.Inch(0.058333557099103928D));
     this.textBox22.Name = "textBox22";
     this.textBox22.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.90000009536743164D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox22.StyleName = "Caption";
     this.textBox22.Value = "Test Date:";
     //
     // textBox23
     //
     this.textBox23.CanGrow = true;
     this.textBox23.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(8.1999998092651367D), Telerik.Reporting.Drawing.Unit.Inch(0.30000004172325134D));
     this.textBox23.Name = "textBox23";
     this.textBox23.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.90000009536743164D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox23.StyleName = "Caption";
     this.textBox23.Value = "Delivery Date:";
     //
     // textBox24
     //
     this.textBox24.CanGrow = true;
     this.textBox24.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(8.1999998092651367D), Telerik.Reporting.Drawing.Unit.Inch(0.699999988079071D));
     this.textBox24.Name = "textBox24";
     this.textBox24.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.90000009536743164D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox24.StyleName = "Caption";
     this.textBox24.Value = "Age:";
     //
     // textBox25
     //
     this.textBox25.CanGrow = true;
     this.textBox25.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(8.1999998092651367D), Telerik.Reporting.Drawing.Unit.Inch(0.89999991655349731D));
     this.textBox25.Name = "textBox25";
     this.textBox25.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.90000009536743164D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox25.StyleName = "Caption";
     this.textBox25.Value = "Hip CM:";
     //
     // textBox26
     //
     this.textBox26.CanGrow = true;
     this.textBox26.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(8.1999998092651367D), Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D));
     this.textBox26.Name = "textBox26";
     this.textBox26.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.90000009536743164D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox26.StyleName = "Caption";
     this.textBox26.Value = "Waist CM:";
     //
     // LabTestOrderMain
     //
     this.DataSource = this.sqlDataSource1;
     group1.GroupFooter = this.labelsGroupFooterSection;
     group1.GroupHeader = this.labelsGroupHeaderSection;
     group1.Name = "labelsGroup";
     this.Groups.AddRange(new Telerik.Reporting.Group[] {
     group1});
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.labelsGroupHeaderSection,
     this.labelsGroupFooterSection,
     this.pageHeader,
     this.pageFooter,
     this.reportHeader,
     this.reportFooter,
     this.detail});
     this.Name = "LabTestOrderMain";
     this.PageSettings.Landscape = true;
     this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(0.5D));
     this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.Style.BackgroundColor = System.Drawing.Color.White;
     styleRule1.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
     new Telerik.Reporting.Drawing.StyleSelector("Title")});
     styleRule1.Style.Color = System.Drawing.Color.Black;
     styleRule1.Style.Font.Bold = true;
     styleRule1.Style.Font.Italic = false;
     styleRule1.Style.Font.Name = "Tahoma";
     styleRule1.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(18D);
     styleRule1.Style.Font.Strikeout = false;
     styleRule1.Style.Font.Underline = false;
     styleRule2.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
     new Telerik.Reporting.Drawing.StyleSelector("Caption")});
     styleRule2.Style.Color = System.Drawing.Color.Black;
     styleRule2.Style.Font.Name = "Tahoma";
     styleRule2.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(10D);
     styleRule2.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     styleRule3.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
     new Telerik.Reporting.Drawing.StyleSelector("Data")});
     styleRule3.Style.Font.Name = "Tahoma";
     styleRule3.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     styleRule3.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     styleRule4.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
     new Telerik.Reporting.Drawing.StyleSelector("PageInfo")});
     styleRule4.Style.Font.Name = "Tahoma";
     styleRule4.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     styleRule4.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.StyleSheet.AddRange(new Telerik.Reporting.Drawing.StyleRule[] {
     styleRule1,
     styleRule2,
     styleRule3,
     styleRule4});
     this.Width = Telerik.Reporting.Drawing.Unit.Inch(10.651247024536133D);
     ((System.ComponentModel.ISupportInitialize)(this.labTestName_Sub1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.labTestDetails_Sub1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
        /// <summary>
        /// Required method for telerik Reporting designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.Reporting.InstanceReportSource instanceReportSource1 = new Telerik.Reporting.InstanceReportSource();
            Telerik.Reporting.Drawing.StyleRule styleRule1 = new Telerik.Reporting.Drawing.StyleRule();
            this.pageHeaderSection1 = new Telerik.Reporting.PageHeaderSection();
            this.textBox1 = new Telerik.Reporting.TextBox();
            this.textBox2 = new Telerik.Reporting.TextBox();
            this.textBox3 = new Telerik.Reporting.TextBox();
            this.textBox4 = new Telerik.Reporting.TextBox();
            this.textBox5 = new Telerik.Reporting.TextBox();
            this.textBox6 = new Telerik.Reporting.TextBox();
            this.textBox7 = new Telerik.Reporting.TextBox();
            this.textBox8 = new Telerik.Reporting.TextBox();
            this.textBox9 = new Telerik.Reporting.TextBox();
            this.textBox10 = new Telerik.Reporting.TextBox();
            this.textBox11 = new Telerik.Reporting.TextBox();
            this.pictureBox2 = new Telerik.Reporting.PictureBox();
            this.detail = new Telerik.Reporting.DetailSection();
            this.ReportHoster = new Telerik.Reporting.SubReport();
            this.pageFooterSection1 = new Telerik.Reporting.PageFooterSection();
            this.textBox12 = new Telerik.Reporting.TextBox();
            this.CompanyInformationDS = new Telerik.Reporting.ObjectDataSource();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // pageHeaderSection1
            // 
            this.pageHeaderSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(2D);
            this.pageHeaderSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.textBox1,
            this.textBox2,
            this.textBox3,
            this.textBox4,
            this.textBox5,
            this.textBox6,
            this.textBox7,
            this.textBox8,
            this.textBox9,
            this.textBox10,
            this.textBox11,
            this.pictureBox2});
            this.pageHeaderSection1.Name = "pageHeaderSection1";
            // 
            // textBox1
            // 
            this.textBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.3000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(0.20000001788139343D));
            this.textBox1.Name = "textBox1";
            this.textBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.7999997138977051D), Telerik.Reporting.Drawing.Unit.Inch(0.40000000596046448D));
            this.textBox1.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(25D);
            this.textBox1.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox1.Value = "=Fields.CompaneyName";
            // 
            // textBox2
            // 
            this.textBox2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.8000789880752564D), Telerik.Reporting.Drawing.Unit.Inch(0.80000007152557373D));
            this.textBox2.Name = "textBox2";
            this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.2999210357666016D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox2.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox2.Value = "=Fields.AddressOne";
            // 
            // textBox3
            // 
            this.textBox3.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.1499214172363281D), Telerik.Reporting.Drawing.Unit.Inch(0.80000007152557373D));
            this.textBox3.Name = "textBox3";
            this.textBox3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.65007859468460083D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox3.Value = "Address :";
            // 
            // textBox4
            // 
            this.textBox4.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.1299999952316284D), Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D));
            this.textBox4.Name = "textBox4";
            this.textBox4.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.67000001668930054D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox4.Value = "Contract :";
            // 
            // textBox5
            // 
            this.textBox5.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.8000789880752564D), Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D));
            this.textBox5.Name = "textBox5";
            this.textBox5.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.2999210357666016D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox5.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox5.Value = "=Fields.ContractDetails";
            // 
            // textBox6
            // 
            this.textBox6.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.6000001430511475D), Telerik.Reporting.Drawing.Unit.Inch(1.4000000953674316D));
            this.textBox6.Name = "textBox6";
            this.textBox6.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.9000002145767212D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox6.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox6.Value = "=Fields.Web";
            // 
            // textBox7
            // 
            this.textBox7.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.149921178817749D), Telerik.Reporting.Drawing.Unit.Inch(1.4000000953674316D));
            this.textBox7.Name = "textBox7";
            this.textBox7.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.44999998807907104D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox7.Value = "Web :";
            // 
            // textBox8
            // 
            this.textBox8.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.6620831489562988D), Telerik.Reporting.Drawing.Unit.Inch(1.4000000953674316D));
            this.textBox8.Name = "textBox8";
            this.textBox8.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.54000002145767212D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox8.Value = "E-Mail :";
            // 
            // textBox9
            // 
            this.textBox9.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.20216178894043D), Telerik.Reporting.Drawing.Unit.Inch(1.4000000953674316D));
            this.textBox9.Name = "textBox9";
            this.textBox9.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.9000002145767212D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox9.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
            this.textBox9.Value = "=Fields.Email";
            // 
            // textBox10
            // 
            this.textBox10.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.7020831108093262D), Telerik.Reporting.Drawing.Unit.Inch(1.7000001668930054D));
            this.textBox10.Name = "textBox10";
            this.textBox10.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.49999997019767761D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox10.Value = "Date :";
            // 
            // textBox11
            // 
            this.textBox11.Format = "{0:g}";
            this.textBox11.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.20216178894043D), Telerik.Reporting.Drawing.Unit.Inch(1.7000001668930054D));
            this.textBox11.Name = "textBox11";
            this.textBox11.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.89783775806427D), Telerik.Reporting.Drawing.Unit.Inch(0.19999991357326508D));
            this.textBox11.Value = "= Now()";
            // 
            // pictureBox2
            // 
            this.pictureBox2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.099999956786632538D), Telerik.Reporting.Drawing.Unit.Inch(0.20000001788139343D));
            this.pictureBox2.MimeType = "";
            this.pictureBox2.Name = "pictureBox2";
            this.pictureBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1.0000001192092896D));
            this.pictureBox2.Sizing = Telerik.Reporting.Drawing.ImageSizeMode.Stretch;
            this.pictureBox2.Value = "=Fields.Logo";
            // 
            // detail
            // 
            this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(2.1000001430511475D);
            this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.ReportHoster});
            this.detail.Name = "detail";
            // 
            // ReportHoster
            // 
            this.ReportHoster.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D), Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D));
            this.ReportHoster.Name = "ReportHoster";
            instanceReportSource1.ReportDocument = null;
            this.ReportHoster.ReportSource = instanceReportSource1;
            this.ReportHoster.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.299921989440918D), Telerik.Reporting.Drawing.Unit.Inch(2.0999214649200439D));
            // 
            // pageFooterSection1
            // 
            this.pageFooterSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(1.1000003814697266D);
            this.pageFooterSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.textBox12});
            this.pageFooterSection1.Name = "pageFooterSection1";
            // 
            // textBox12
            // 
            this.textBox12.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.40000057220459D), Telerik.Reporting.Drawing.Unit.Inch(0.60000014305114746D));
            this.textBox12.Name = "textBox12";
            this.textBox12.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.5D), Telerik.Reporting.Drawing.Unit.Inch(0.2999996542930603D));
            this.textBox12.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox12.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Point(2D);
            this.textBox12.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox12.Value = "Signature";
            // 
            // CompanyInformationDS
            // 
            this.CompanyInformationDS.DataSource = typeof(CompanyInformation);
            this.CompanyInformationDS.Name = "CompanyInformationDS";
            // 
            // MainReport
            // 
            this.DataSource = this.CompanyInformationDS;
            this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.pageHeaderSection1,
            this.detail,
            this.pageFooterSection1});
            this.Name = "MainReport";
            this.PageSettings.Margins.Bottom = Telerik.Reporting.Drawing.Unit.Inch(1D);
            this.PageSettings.Margins.Left = Telerik.Reporting.Drawing.Unit.Inch(1D);
            this.PageSettings.Margins.Right = Telerik.Reporting.Drawing.Unit.Inch(1D);
            this.PageSettings.Margins.Top = Telerik.Reporting.Drawing.Unit.Inch(1D);
            this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.Letter;
            this.Style.BackgroundColor = System.Drawing.Color.White;
            styleRule1.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
            new Telerik.Reporting.Drawing.TypeSelector(typeof(Telerik.Reporting.TextItemBase)),
            new Telerik.Reporting.Drawing.TypeSelector(typeof(Telerik.Reporting.HtmlTextBox))});
            styleRule1.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Point(2D);
            styleRule1.Style.Padding.Right = Telerik.Reporting.Drawing.Unit.Point(2D);
            this.StyleSheet.AddRange(new Telerik.Reporting.Drawing.StyleRule[] {
            styleRule1});
            this.Width = Telerik.Reporting.Drawing.Unit.Inch(6.3000006675720215D);
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();

        }
        /// <summary>
        /// Required method for telerik Reporting designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RptInvoicesPeriod));
            Telerik.Reporting.InstanceReportSource instanceReportSource1 = new Telerik.Reporting.InstanceReportSource();
            this.pageHeaderSection1 = new Telerik.Reporting.PageHeaderSection();
            this.textBox5 = new Telerik.Reporting.TextBox();
            this.pictureBox1 = new Telerik.Reporting.PictureBox();
            this.textBox3 = new Telerik.Reporting.TextBox();
            this.textBox1 = new Telerik.Reporting.TextBox();
            this.textBox4 = new Telerik.Reporting.TextBox();
            this.textBox9 = new Telerik.Reporting.TextBox();
            this.textBox7 = new Telerik.Reporting.TextBox();
            this.textBox11 = new Telerik.Reporting.TextBox();
            this.textBox2 = new Telerik.Reporting.TextBox();
            this.detail = new Telerik.Reporting.DetailSection();
            this.textBox10 = new Telerik.Reporting.TextBox();
            this.textBox12 = new Telerik.Reporting.TextBox();
            this.textBox18 = new Telerik.Reporting.TextBox();
            this.textBox8 = new Telerik.Reporting.TextBox();
            this.pageFooterSection1 = new Telerik.Reporting.PageFooterSection();
            this.textBox6 = new Telerik.Reporting.TextBox();
            this.group1 = new Telerik.Reporting.Group();
            this.groupFooterSection1 = new Telerik.Reporting.GroupFooterSection();
            this.groupHeaderSection1 = new Telerik.Reporting.GroupHeaderSection();
            this.reportFooterSection1 = new Telerik.Reporting.ReportFooterSection();
            this.subReport2 = new Telerik.Reporting.SubReport();
            this.subInvoiceFooter1 = new AriCliReport.SubInvoiceFooter();
            ((System.ComponentModel.ISupportInitialize)(this.subInvoiceFooter1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // pageHeaderSection1
            // 
            this.pageHeaderSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(1.2999211549758911D);
            this.pageHeaderSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.textBox5,
            this.pictureBox1,
            this.textBox3,
            this.textBox1,
            this.textBox4,
            this.textBox9,
            this.textBox7,
            this.textBox11,
            this.textBox2});
            this.pageHeaderSection1.Name = "pageHeaderSection1";
            // 
            // textBox5
            // 
            this.textBox5.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.5D));
            this.textBox5.Name = "textBox5";
            this.textBox5.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.2440550327301025D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox5.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox5.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            this.textBox5.Value = "=GetCompanyName()";
            // 
            // pictureBox1
            // 
            this.pictureBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.099999986588954926D));
            this.pictureBox1.MimeType = "image/png";
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2999606132507324D), Telerik.Reporting.Drawing.Unit.Inch(0.39247044920921326D));
            this.pictureBox1.Sizing = Telerik.Reporting.Drawing.ImageSizeMode.ScaleProportional;
            this.pictureBox1.Value = ((object)(resources.GetObject("pictureBox1.Value")));
            // 
            // textBox3
            // 
            this.textBox3.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(8.297877311706543D), Telerik.Reporting.Drawing.Unit.Inch(0.099999986588954926D));
            this.textBox3.Name = "textBox3";
            this.textBox3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.7020833492279053D), Telerik.Reporting.Drawing.Unit.Inch(0.23618102073669434D));
            this.textBox3.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox3.Style.Font.Name = "Arial";
            this.textBox3.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(15D);
            this.textBox3.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox3.Value = "Informe de facturación";
            // 
            // textBox1
            // 
            this.textBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(8.6000404357910156D), Telerik.Reporting.Drawing.Unit.Inch(0.49254909157752991D));
            this.textBox1.Name = "textBox1";
            this.textBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2001190185546875D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox1.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox1.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(10D);
            this.textBox1.Value = "= GetFromDate()";
            // 
            // textBox4
            // 
            this.textBox4.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(9.90011978149414D), Telerik.Reporting.Drawing.Unit.Inch(0.49254909157752991D));
            this.textBox4.Name = "textBox4";
            this.textBox4.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.0998420715332031D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox4.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox4.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(10D);
            this.textBox4.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox4.Value = "= GetToDate()";
            // 
            // textBox9
            // 
            this.textBox9.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(6.9000792503356934D), Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D));
            this.textBox9.Name = "textBox9";
            this.textBox9.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.9999210834503174D), Telerik.Reporting.Drawing.Unit.Inch(0.19988186657428742D));
            this.textBox9.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(225)))), ((int)(((byte)(255)))));
            this.textBox9.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox9.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox9.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox9.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox9.Style.Font.Bold = true;
            this.textBox9.Value = "Factura";
            // 
            // textBox7
            // 
            this.textBox7.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D), Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D));
            this.textBox7.Name = "textBox7";
            this.textBox7.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.5D), Telerik.Reporting.Drawing.Unit.Inch(0.19988186657428742D));
            this.textBox7.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(225)))), ((int)(((byte)(255)))));
            this.textBox7.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox7.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox7.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox7.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox7.Style.Font.Bold = true;
            this.textBox7.Value = "Fecha";
            // 
            // textBox11
            // 
            this.textBox11.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(9.9000787734985352D), Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D));
            this.textBox11.Name = "textBox11";
            this.textBox11.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.099881649017334D), Telerik.Reporting.Drawing.Unit.Inch(0.19988186657428742D));
            this.textBox11.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(225)))), ((int)(((byte)(255)))));
            this.textBox11.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox11.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox11.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox11.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox11.Style.Font.Bold = true;
            this.textBox11.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox11.Value = "Importe";
            // 
            // textBox2
            // 
            this.textBox2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.5001182556152344D), Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D));
            this.textBox2.Name = "textBox2";
            this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(5.3998818397521973D), Telerik.Reporting.Drawing.Unit.Inch(0.19988186657428742D));
            this.textBox2.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(225)))), ((int)(((byte)(255)))));
            this.textBox2.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox2.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox2.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox2.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox2.Style.Font.Bold = true;
            this.textBox2.Value = "Cliente";
            // 
            // detail
            // 
            this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(0.20003955066204071D);
            this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.textBox10,
            this.textBox12,
            this.textBox18,
            this.textBox8});
            this.detail.Name = "detail";
            // 
            // textBox10
            // 
            this.textBox10.Format = "{0:d}";
            this.textBox10.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0D));
            this.textBox10.Name = "textBox10";
            this.textBox10.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.5D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
            this.textBox10.Value = "=InvoiceDate";
            // 
            // textBox12
            // 
            this.textBox12.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(6.9000391960144043D), Telerik.Reporting.Drawing.Unit.Inch(0D));
            this.textBox12.Name = "textBox12";
            this.textBox12.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.9999608993530273D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
            this.textBox12.Value = "=Serial+\"-\"+Year+\"-\"+InvoiceNumber";
            // 
            // textBox18
            // 
            this.textBox18.Format = "{0:###,##0.00}";
            this.textBox18.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(9.9001188278198242D), Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D));
            this.textBox18.Name = "textBox18";
            this.textBox18.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.0998424291610718D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
            this.textBox18.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox18.Value = "=Total";
            // 
            // textBox8
            // 
            this.textBox8.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.5000787973403931D), Telerik.Reporting.Drawing.Unit.Inch(0D));
            this.textBox8.Name = "textBox8";
            this.textBox8.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(5.3999214172363281D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
            this.textBox8.Value = "=Customer.FullName";
            // 
            // pageFooterSection1
            // 
            this.pageFooterSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(0.50000029802322388D);
            this.pageFooterSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.textBox6});
            this.pageFooterSection1.Name = "pageFooterSection1";
            // 
            // textBox6
            // 
            this.textBox6.Format = "{0}";
            this.textBox6.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.7563672065734863D), Telerik.Reporting.Drawing.Unit.Inch(0.29996109008789062D));
            this.textBox6.Name = "textBox6";
            this.textBox6.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.34355354309082031D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox6.Value = "= PageNumber";
            // 
            // group1
            // 
            this.group1.GroupFooter = this.groupFooterSection1;
            this.group1.GroupHeader = this.groupHeaderSection1;
            this.group1.Groupings.AddRange(new Telerik.Reporting.Grouping[] {
            new Telerik.Reporting.Grouping("InvoiceId")});
            this.group1.Name = "group1";
            // 
            // groupFooterSection1
            // 
            this.groupFooterSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(0.29996046423912048D);
            this.groupFooterSection1.Name = "groupFooterSection1";
            this.groupFooterSection1.Style.Visible = false;
            // 
            // groupHeaderSection1
            // 
            this.groupHeaderSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D);
            this.groupHeaderSection1.Name = "groupHeaderSection1";
            this.groupHeaderSection1.Style.Visible = false;
            // 
            // reportFooterSection1
            // 
            this.reportFooterSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(0.59988230466842651D);
            this.reportFooterSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.subReport2});
            this.reportFooterSection1.Name = "reportFooterSection1";
            // 
            // subReport2
            // 
            this.subReport2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D), Telerik.Reporting.Drawing.Unit.Inch(0.29984283447265625D));
            this.subReport2.Name = "subReport2";
            instanceReportSource1.ReportDocument = this.subInvoiceFooter1;
            this.subReport2.ReportSource = instanceReportSource1;
            this.subReport2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(10.999922752380371D), Telerik.Reporting.Drawing.Unit.Inch(0.30000004172325134D));
            this.subReport2.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            // 
            // subInvoiceFooter1
            // 
            this.subInvoiceFooter1.Name = "subInvoiceFooter1";
            // 
            // RptInvoicesPeriod
            // 
            this.Groups.AddRange(new Telerik.Reporting.Group[] {
            this.group1});
            this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.groupHeaderSection1,
            this.groupFooterSection1,
            this.pageHeaderSection1,
            this.detail,
            this.pageFooterSection1,
            this.reportFooterSection1});
            this.Name = "RptInvoicesPeriod";
            this.PageSettings.Landscape = true;
            this.PageSettings.Margins.Bottom = Telerik.Reporting.Drawing.Unit.Mm(5D);
            this.PageSettings.Margins.Left = Telerik.Reporting.Drawing.Unit.Mm(5D);
            this.PageSettings.Margins.Right = Telerik.Reporting.Drawing.Unit.Mm(5D);
            this.PageSettings.Margins.Top = Telerik.Reporting.Drawing.Unit.Mm(5D);
            this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.A4;
            this.Style.BackgroundColor = System.Drawing.Color.White;
            this.UnitOfMeasure = Telerik.Reporting.Drawing.UnitType.Mm;
            this.Width = Telerik.Reporting.Drawing.Unit.Inch(11.200000762939453D);
            ((System.ComponentModel.ISupportInitialize)(this.subInvoiceFooter1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();

        }
        public void btnSearch_Click()
        {
            DateTime from;
            DateTime to;
            bool isInbox = false;
            bool isOutbox = false;
            if (chkInbox.Checked)
                isInbox = true;
            if (chkOutbox.Checked)
                isOutbox = true;
            if (dfTo.IsEmpty)
            {
                X.Msg.Alert("error", "To Date must be FILLED").Show();
                return;
            }
            if (dfFrom.SelectedDate > dfTo.SelectedDate)
            {
                X.Msg.Alert("error", "From Date can not BIGGER than To Date").Show();
                return;
            }
            if (dfFrom.IsEmpty)
                from = new DateTime(1453, 12, 31);
            else
                from = dfFrom.SelectedDate;
            this.ReportViewer1.Visible = true;
            to = dfTo.SelectedDate;

            if (isInbox & !isOutbox)
            {
                SuratmasukQuery smQ = new SuratmasukQuery("a");
                smQ.Select(smQ.Nomor, smQ.Judul, smQ.Tanggal, smQ.Dari.As("Sender_Receiver"), smQ.Keterangan);
                smQ.Where(smQ.Tanggal.Between(from, to));
                smQ.OrderBy(smQ.Tanggal.Ascending, smQ.Nomor.Ascending);
                SuratmasukCollection smC = new SuratmasukCollection();
                smC.Load(smQ);
                if (smC.Count > 0)
                {
                    rptInboxOutbox rptInOut = new rptInboxOutbox();
                    rptInOut.DataSource = smC;
                    Telerik.Reporting.InstanceReportSource inst = new Telerik.Reporting.InstanceReportSource();
                    inst.ReportDocument = rptInOut;
                    this.ReportViewer1.ReportSource = inst;
                    this.ReportViewer1.RefreshReport();
                    this.ReportViewer1.Update();
                }
            }

            if (!isInbox & isOutbox)
            {
                SuratkeluarQuery skQ = new SuratkeluarQuery("b");
                skQ.Select(skQ.Nomor, skQ.Judul, skQ.Tanggal, skQ.Kepada.As("Sender_Receiver"), skQ.Keterangan);
                skQ.Where(skQ.Tanggal.Between(from, to));
                skQ.OrderBy(skQ.Tanggal.Ascending, skQ.Nomor.Ascending);
                SuratkeluarCollection skC = new SuratkeluarCollection();
                skC.Load(skQ);
                if (skC.Count > 0)
                {
                    rptInboxOutbox rptInOut = new rptInboxOutbox();
                    rptInOut.DataSource = skC;
                    Telerik.Reporting.InstanceReportSource inst = new Telerik.Reporting.InstanceReportSource();
                    inst.ReportDocument = rptInOut;
                    this.ReportViewer1.ReportSource = inst;
                    this.ReportViewer1.RefreshReport();
                    this.ReportViewer1.Update();
                }
            }

            if (isInbox & isOutbox)
            {
                SuratkeluarQuery skQ = new SuratkeluarQuery("a");
                skQ.Select(skQ.Nomor, skQ.Judul, skQ.Tanggal, skQ.Kepada.As("Sender_Receiver"), skQ.Keterangan);
                skQ.Where(skQ.Tanggal.Between(from, to));
                SuratmasukQuery smQ = new SuratmasukQuery("b");
                smQ.Select(smQ.Nomor, smQ.Judul, smQ.Tanggal, smQ.Dari.As("Sender_Receiver"), smQ.Keterangan);
                smQ.Where(smQ.Tanggal.Between(from, to));
                skQ.Union(smQ);
                skQ.OrderBy(skQ.Tanggal.Ascending, skQ.Tanggal.Ascending);
                SuratkeluarCollection skC = new SuratkeluarCollection();
                skC.Load(skQ);
                if (skC.Count > 0)
                {
                    rptInboxOutbox rptInOut = new rptInboxOutbox();
                    rptInOut.DataSource = skC;
                    Telerik.Reporting.InstanceReportSource inst = new Telerik.Reporting.InstanceReportSource();
                    inst.ReportDocument = rptInOut;
                    this.ReportViewer1.ReportSource = inst;
                    this.ReportViewer1.RefreshReport();
                    this.ReportViewer1.Update();
                }
            }
        }
        /// <summary>
        /// Required method for telerik Reporting designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.Reporting.InstanceReportSource instanceReportSource1 = new Telerik.Reporting.InstanceReportSource();
            Telerik.Reporting.InstanceReportSource instanceReportSource2 = new Telerik.Reporting.InstanceReportSource();
            this.subProfessionalInvoiceLine1 = new AriCliReport.SubProfessionalInvoiceLine();
            this.subProfessionalInvoiceFooter1 = new AriCliReport.SubProfessionalInvoiceFooter();
            this.pageHeaderSection1 = new Telerik.Reporting.PageHeaderSection();
            this.textBox5 = new Telerik.Reporting.TextBox();
            this.textBox12 = new Telerik.Reporting.TextBox();
            this.textBox13 = new Telerik.Reporting.TextBox();
            this.textBox14 = new Telerik.Reporting.TextBox();
            this.textBox15 = new Telerik.Reporting.TextBox();
            this.textBox16 = new Telerik.Reporting.TextBox();
            this.detail = new Telerik.Reporting.DetailSection();
            this.pageFooterSection1 = new Telerik.Reporting.PageFooterSection();
            this.textBox6 = new Telerik.Reporting.TextBox();
            this.textBox8 = new Telerik.Reporting.TextBox();
            this.textBox4 = new Telerik.Reporting.TextBox();
            this.textBox9 = new Telerik.Reporting.TextBox();
            this.group1 = new Telerik.Reporting.Group();
            this.groupFooterSection1 = new Telerik.Reporting.GroupFooterSection();
            this.groupHeaderSection1 = new Telerik.Reporting.GroupHeaderSection();
            this.textBox7 = new Telerik.Reporting.TextBox();
            this.textBox2 = new Telerik.Reporting.TextBox();
            this.textBox23 = new Telerik.Reporting.TextBox();
            this.subReport1 = new Telerik.Reporting.SubReport();
            this.textBox3 = new Telerik.Reporting.TextBox();
            this.textBox10 = new Telerik.Reporting.TextBox();
            this.textBox11 = new Telerik.Reporting.TextBox();
            this.textBox17 = new Telerik.Reporting.TextBox();
            this.textBox18 = new Telerik.Reporting.TextBox();
            this.reportFooterSection1 = new Telerik.Reporting.ReportFooterSection();
            this.subReport2 = new Telerik.Reporting.SubReport();
            ((System.ComponentModel.ISupportInitialize)(this.subProfessionalInvoiceLine1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.subProfessionalInvoiceFooter1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // subProfessionalInvoiceLine1
            // 
            this.subProfessionalInvoiceLine1.Name = "subProfessionalInvoiceLine1";
            // 
            // subProfessionalInvoiceFooter1
            // 
            this.subProfessionalInvoiceFooter1.Name = "subProfessionalInvoiceFooter1";
            // 
            // pageHeaderSection1
            // 
            this.pageHeaderSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(1.2000000476837158D);
            this.pageHeaderSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.textBox5,
            this.textBox12,
            this.textBox13,
            this.textBox14,
            this.textBox15,
            this.textBox16});
            this.pageHeaderSection1.Name = "pageHeaderSection1";
            // 
            // textBox5
            // 
            this.textBox5.Format = "{0:dd/MM/yyyy}";
            this.textBox5.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.008411407470703125D), Telerik.Reporting.Drawing.Unit.Inch(0D));
            this.textBox5.Name = "textBox5";
            this.textBox5.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.259305477142334D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox5.Style.BackgroundColor = System.Drawing.Color.White;
            this.textBox5.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox5.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox5.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox5.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox5.Style.BorderWidth.Bottom = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox5.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox5.Style.BorderWidth.Right = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox5.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox5.Style.Font.Bold = true;
            this.textBox5.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(11D);
            this.textBox5.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox5.Value = "=GetProfessionalName()";
            // 
            // textBox12
            // 
            this.textBox12.Format = "{0:dd/MM/yyyy}";
            this.textBox12.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.50007867813110352D), Telerik.Reporting.Drawing.Unit.Inch(0.40000000596046448D));
            this.textBox12.Name = "textBox12";
            this.textBox12.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(5.7592258453369141D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox12.Style.BackgroundColor = System.Drawing.Color.White;
            this.textBox12.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox12.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox12.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox12.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox12.Style.BorderWidth.Bottom = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox12.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox12.Style.BorderWidth.Right = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox12.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox12.Style.Font.Bold = false;
            this.textBox12.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(11D);
            this.textBox12.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox12.Value = "=GetProfessionalNif()";
            // 
            // textBox13
            // 
            this.textBox13.Format = "{0:dd/MM/yyyy}";
            this.textBox13.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.008411407470703125D), Telerik.Reporting.Drawing.Unit.Inch(0.40000000596046448D));
            this.textBox13.Name = "textBox13";
            this.textBox13.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.49158859252929688D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox13.Style.BackgroundColor = System.Drawing.Color.White;
            this.textBox13.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox13.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox13.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox13.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox13.Style.BorderWidth.Bottom = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox13.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox13.Style.BorderWidth.Right = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox13.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox13.Style.Font.Bold = false;
            this.textBox13.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(11D);
            this.textBox13.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox13.Value = "CIF:";
            // 
            // textBox14
            // 
            this.textBox14.Format = "{0:dd/MM/yyyy}";
            this.textBox14.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.19992136955261231D));
            this.textBox14.Name = "textBox14";
            this.textBox14.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.80833339691162109D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox14.Style.BackgroundColor = System.Drawing.Color.White;
            this.textBox14.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox14.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox14.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox14.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox14.Style.BorderWidth.Bottom = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox14.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox14.Style.BorderWidth.Right = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox14.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox14.Style.Font.Bold = false;
            this.textBox14.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(11D);
            this.textBox14.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox14.Value = "Direcci�n:";
            // 
            // textBox15
            // 
            this.textBox15.Format = "{0:dd/MM/yyyy}";
            this.textBox15.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.80841207504272461D), Telerik.Reporting.Drawing.Unit.Inch(0.19992136955261231D));
            this.textBox15.Name = "textBox15";
            this.textBox15.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(5.4508137702941895D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox15.Style.BackgroundColor = System.Drawing.Color.White;
            this.textBox15.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox15.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox15.Style.BorderWidth.Bottom = Telerik.Reporting.Drawing.Unit.Point(1D);
            this.textBox15.Style.BorderWidth.Right = Telerik.Reporting.Drawing.Unit.Point(1D);
            this.textBox15.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox15.Style.Font.Bold = false;
            this.textBox15.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(11D);
            this.textBox15.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox15.Value = "=GetProfessionalAddres1()";
            // 
            // textBox16
            // 
            this.textBox16.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.9000003337860107D), Telerik.Reporting.Drawing.Unit.Inch(0.90000009536743164D));
            this.textBox16.Name = "textBox16";
            this.textBox16.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.3592255115509033D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox16.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(225)))), ((int)(((byte)(255)))));
            this.textBox16.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox16.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox16.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox16.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox16.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox16.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox16.Style.BorderWidth.Bottom = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox16.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox16.Style.BorderWidth.Left = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox16.Style.BorderWidth.Right = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox16.Style.BorderWidth.Top = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox16.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox16.Style.Font.Bold = true;
            this.textBox16.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox16.Value = "Datos del Cliente";
            // 
            // detail
            // 
            this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D);
            this.detail.Name = "detail";
            this.detail.Style.Visible = false;
            // 
            // pageFooterSection1
            // 
            this.pageFooterSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(1.0999207496643066D);
            this.pageFooterSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.textBox6,
            this.textBox8,
            this.textBox4,
            this.textBox9});
            this.pageFooterSection1.Name = "pageFooterSection1";
            // 
            // textBox6
            // 
            this.textBox6.Format = "{0}";
            this.textBox6.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.9240841865539551D), Telerik.Reporting.Drawing.Unit.Inch(0.8999207615852356D));
            this.textBox6.Name = "textBox6";
            this.textBox6.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.34355354309082031D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox6.Value = "= PageNumber";
            // 
            // textBox8
            // 
            this.textBox8.Format = "{0:dd/MM/yyyy}";
            this.textBox8.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.5895833969116211D), Telerik.Reporting.Drawing.Unit.Inch(0.29972299933433533D));
            this.textBox8.Name = "textBox8";
            this.textBox8.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.9677164554595947D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox8.Style.Font.Bold = true;
            this.textBox8.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
            this.textBox8.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox8.Value = "=GetProfessionalName()";
            // 
            // textBox4
            // 
            this.textBox4.Format = "{0:dd/MM/yyyy}";
            this.textBox4.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.49980196356773376D));
            this.textBox4.Name = "textBox4";
            this.textBox4.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.2593045234680176D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox4.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
            this.textBox4.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox4.Value = "=GetProfessionalAddres1()";
            // 
            // textBox9
            // 
            this.textBox9.Format = "{0:dd/MM/yyyy}";
            this.textBox9.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.69984179735183716D));
            this.textBox9.Name = "textBox9";
            this.textBox9.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.2593045234680176D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox9.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
            this.textBox9.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox9.Value = "=GetProfessionalcontact()";
            // 
            // group1
            // 
            this.group1.GroupFooter = this.groupFooterSection1;
            this.group1.GroupHeader = this.groupHeaderSection1;
            this.group1.Name = "group1";
            // 
            // groupFooterSection1
            // 
            this.groupFooterSection1.Height = Telerik.Reporting.Drawing.Unit.Cm(0.76210016012191772D);
            this.groupFooterSection1.Name = "groupFooterSection1";
            this.groupFooterSection1.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            // 
            // groupHeaderSection1
            // 
            this.groupHeaderSection1.Height = Telerik.Reporting.Drawing.Unit.Cm(4.5720000267028809D);
            this.groupHeaderSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.textBox7,
            this.textBox2,
            this.textBox23,
            this.subReport1,
            this.textBox3,
            this.textBox10,
            this.textBox11,
            this.textBox17,
            this.textBox18});
            this.groupHeaderSection1.Name = "groupHeaderSection1";
            // 
            // textBox7
            // 
            this.textBox7.Format = "{0:dd/MM/yyyy}";
            this.textBox7.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.9000003337860107D), Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D));
            this.textBox7.Name = "textBox7";
            this.textBox7.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.359304666519165D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox7.Style.Font.Bold = true;
            this.textBox7.Value = "=GetCompanyName()";
            // 
            // textBox2
            // 
            this.textBox2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.0083334445953369141D), Telerik.Reporting.Drawing.Unit.Inch(0.20007880032062531D));
            this.textBox2.Name = "textBox2";
            this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.800000011920929D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox2.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(225)))), ((int)(((byte)(255)))));
            this.textBox2.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox2.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox2.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox2.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox2.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox2.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox2.Style.BorderWidth.Bottom = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox2.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox2.Style.BorderWidth.Left = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox2.Style.BorderWidth.Right = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox2.Style.BorderWidth.Top = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox2.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox2.Style.Font.Bold = true;
            this.textBox2.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox2.Value = "FECHA:";
            // 
            // textBox23
            // 
            this.textBox23.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.0083333654329180717D), Telerik.Reporting.Drawing.Unit.Inch(0D));
            this.textBox23.Name = "textBox23";
            this.textBox23.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.800000011920929D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox23.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(225)))), ((int)(((byte)(255)))));
            this.textBox23.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox23.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox23.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox23.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox23.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox23.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox23.Style.BorderWidth.Bottom = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox23.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox23.Style.BorderWidth.Left = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox23.Style.BorderWidth.Right = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox23.Style.BorderWidth.Top = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox23.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox23.Style.Font.Bold = true;
            this.textBox23.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox23.Value = "FACTURA:";
            // 
            // subReport1
            // 
            this.subReport1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(1.4999605417251587D));
            this.subReport1.Name = "subReport1";
            instanceReportSource1.ReportDocument = this.subProfessionalInvoiceLine1;
            this.subReport1.ReportSource = instanceReportSource1;
            this.subReport1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.2676377296447754D), Telerik.Reporting.Drawing.Unit.Inch(0.30000004172325134D));
            // 
            // textBox3
            // 
            this.textBox3.Format = "{0:dd/MM/yyyy}";
            this.textBox3.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.9000003337860107D), Telerik.Reporting.Drawing.Unit.Inch(0.60023641586303711D));
            this.textBox3.Name = "textBox3";
            this.textBox3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.359304666519165D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox3.Value = "=GetCompanyNif()";
            // 
            // textBox10
            // 
            this.textBox10.Format = "{0:dd/MM/yyyy}";
            this.textBox10.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.9000003337860107D), Telerik.Reporting.Drawing.Unit.Inch(0.20007880032062531D));
            this.textBox10.Name = "textBox10";
            this.textBox10.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.359304666519165D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox10.Value = "=GetCompanyAddres1()";
            // 
            // textBox11
            // 
            this.textBox11.Format = "{0:dd/MM/yyyy}";
            this.textBox11.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.9000003337860107D), Telerik.Reporting.Drawing.Unit.Inch(0.40015760064125061D));
            this.textBox11.Name = "textBox11";
            this.textBox11.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.3593053817749023D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox11.Value = "=GetCompanyAddres2()";
            // 
            // textBox17
            // 
            this.textBox17.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.80841207504272461D), Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D));
            this.textBox17.Name = "textBox17";
            this.textBox17.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2915879487991333D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox17.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(225)))), ((int)(((byte)(255)))));
            this.textBox17.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox17.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox17.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox17.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox17.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox17.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox17.Style.BorderWidth.Bottom = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox17.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox17.Style.BorderWidth.Left = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox17.Style.BorderWidth.Right = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox17.Style.BorderWidth.Top = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox17.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox17.Style.Font.Bold = true;
            this.textBox17.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox17.Value = "=getCodFactura()";
            // 
            // textBox18
            // 
            this.textBox18.Format = "{0:d}";
            this.textBox18.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.80841207504272461D), Telerik.Reporting.Drawing.Unit.Inch(0.20011822879314423D));
            this.textBox18.Name = "textBox18";
            this.textBox18.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2915879487991333D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox18.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(225)))), ((int)(((byte)(255)))));
            this.textBox18.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox18.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox18.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox18.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox18.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox18.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox18.Style.BorderWidth.Bottom = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox18.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox18.Style.BorderWidth.Left = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox18.Style.BorderWidth.Right = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox18.Style.BorderWidth.Top = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox18.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox18.Style.Font.Bold = true;
            this.textBox18.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox18.Value = "=InvoiceDate";
            // 
            // reportFooterSection1
            // 
            this.reportFooterSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(0.30003944039344788D);
            this.reportFooterSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.subReport2});
            this.reportFooterSection1.Name = "reportFooterSection1";
            // 
            // subReport2
            // 
            this.subReport2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.0083335237577557564D), Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D));
            this.subReport2.Name = "subReport2";
            instanceReportSource2.ReportDocument = this.subProfessionalInvoiceFooter1;
            this.subReport2.ReportSource = instanceReportSource2;
            this.subReport2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.2593040466308594D), Telerik.Reporting.Drawing.Unit.Inch(0.30000004172325134D));
            this.subReport2.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
            // 
            // RptProfessionalInvoice
            // 
            this.Groups.AddRange(new Telerik.Reporting.Group[] {
            this.group1});
            this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.groupHeaderSection1,
            this.groupFooterSection1,
            this.pageHeaderSection1,
            this.detail,
            this.pageFooterSection1,
            this.reportFooterSection1});
            this.Name = "RptProfessionalInvoice";
            this.PageSettings.Landscape = false;
            this.PageSettings.Margins.Bottom = Telerik.Reporting.Drawing.Unit.Inch(1D);
            this.PageSettings.Margins.Left = Telerik.Reporting.Drawing.Unit.Inch(1D);
            this.PageSettings.Margins.Right = Telerik.Reporting.Drawing.Unit.Inch(1D);
            this.PageSettings.Margins.Top = Telerik.Reporting.Drawing.Unit.Inch(1D);
            this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.A4;
            this.Style.BackgroundColor = System.Drawing.Color.White;
            this.Width = Telerik.Reporting.Drawing.Unit.Cm(15.920000076293945D);
            ((System.ComponentModel.ISupportInitialize)(this.subProfessionalInvoiceLine1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.subProfessionalInvoiceFooter1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();

        }
Beispiel #51
0
 /// <summary>
 /// Required method for telerik Reporting designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.Reporting.InstanceReportSource instanceReportSource1 = new Telerik.Reporting.InstanceReportSource();
     Telerik.Reporting.InstanceReportSource instanceReportSource2 = new Telerik.Reporting.InstanceReportSource();
     Telerik.Reporting.ReportParameter      reportParameter1      = new Telerik.Reporting.ReportParameter();
     Telerik.Reporting.ReportParameter      reportParameter2      = new Telerik.Reporting.ReportParameter();
     this.jnpWorkflowNoteSubRpt11 = new HCMS.JNP.Reports.JNPWorkflowNoteSubRpt1();
     this.headerReport2           = new HCMS.JNP.Reports.HeaderReport();
     this.detail = new Telerik.Reporting.DetailSection();
     this.JNPWorkflowNoteSubRpt1 = new Telerik.Reporting.SubReport();
     this.headerReport           = new Telerik.Reporting.SubReport();
     this.pageFooterSection1     = new Telerik.Reporting.PageFooterSection();
     this.currentTimeTextBox     = new Telerik.Reporting.TextBox();
     this.pageInfoTextBox        = new Telerik.Reporting.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.jnpWorkflowNoteSubRpt11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.headerReport2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // jnpWorkflowNoteSubRpt11
     //
     this.jnpWorkflowNoteSubRpt11.Name = "JNPWorkflowNoteSubRpt1";
     //
     // headerReport2
     //
     this.headerReport2.Name = "Report1";
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(0.71666687726974487D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.JNPWorkflowNoteSubRpt1,
         this.headerReport
     });
     this.detail.KeepTogether = false;
     this.detail.Name         = "detail";
     //
     // JNPWorkflowNoteSubRpt1
     //
     this.JNPWorkflowNoteSubRpt1.KeepTogether = false;
     this.JNPWorkflowNoteSubRpt1.Location     = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.34378942847251892D));
     this.JNPWorkflowNoteSubRpt1.Name         = "JNPWorkflowNoteSubRpt1";
     instanceReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("jNPID", "=Parameters.jNPID.Value"));
     instanceReportSource1.ReportDocument     = this.jnpWorkflowNoteSubRpt11;
     this.JNPWorkflowNoteSubRpt1.ReportSource = instanceReportSource1;
     this.JNPWorkflowNoteSubRpt1.Size         = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.4644265174865723D), Telerik.Reporting.Drawing.Unit.Inch(0.320794016122818D));
     //
     // headerReport
     //
     this.headerReport.KeepTogether = false;
     this.headerReport.Location     = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D), Telerik.Reporting.Drawing.Unit.Inch(0.012499809265136719D));
     this.headerReport.Name         = "headerReport";
     instanceReportSource2.Parameters.Add(new Telerik.Reporting.Parameter("jNPID", "=Parameters.jNPID.Value"));
     instanceReportSource2.Parameters.Add(new Telerik.Reporting.Parameter("documentObjectTypeId", "=Parameters.documentObjectTypeId.Value"));
     instanceReportSource2.ReportDocument = this.headerReport2;
     this.headerReport.ReportSource       = instanceReportSource2;
     this.headerReport.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.4644265174865723D), Telerik.Reporting.Drawing.Unit.Inch(0.29996070265769958D));
     //
     // pageFooterSection1
     //
     this.pageFooterSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(0.30420604348182678D);
     this.pageFooterSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.currentTimeTextBox,
         this.pageInfoTextBox
     });
     this.pageFooterSection1.Name = "pageFooterSection1";
     //
     // currentTimeTextBox
     //
     this.currentTimeTextBox.Location  = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0.041706085205078125D));
     this.currentTimeTextBox.Name      = "currentTimeTextBox";
     this.currentTimeTextBox.Size      = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.0791666507720947D), Telerik.Reporting.Drawing.Unit.Inch(0.20000003278255463D));
     this.currentTimeTextBox.StyleName = "PageInfo";
     this.currentTimeTextBox.Value     = "=NOW().ToShortDateString()";
     //
     // pageInfoTextBox
     //
     this.pageInfoTextBox.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.170989990234375D), Telerik.Reporting.Drawing.Unit.Inch(0.041706085205078125D));
     this.pageInfoTextBox.Name            = "pageInfoTextBox";
     this.pageInfoTextBox.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.2540884017944336D), Telerik.Reporting.Drawing.Unit.Inch(0.20000003278255463D));
     this.pageInfoTextBox.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.pageInfoTextBox.StyleName       = "PageInfo";
     this.pageInfoTextBox.TextWrap        = true;
     this.pageInfoTextBox.Value           = "= PageNumber";
     //
     // JNPComments
     //
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.detail,
         this.pageFooterSection1
     });
     this.Name = "JNPComments";
     this.PageSettings.Margins.Bottom = Telerik.Reporting.Drawing.Unit.Inch(0.5D);
     this.PageSettings.Margins.Left   = Telerik.Reporting.Drawing.Unit.Inch(0.5D);
     this.PageSettings.Margins.Right  = Telerik.Reporting.Drawing.Unit.Inch(0.5D);
     this.PageSettings.Margins.Top    = Telerik.Reporting.Drawing.Unit.Inch(0.5D);
     this.PageSettings.PaperKind      = System.Drawing.Printing.PaperKind.Letter;
     reportParameter1.Name            = "jNPID";
     reportParameter1.Value           = "= Parameters.jNPID.Value";
     reportParameter1.Visible         = true;
     reportParameter2.Name            = "documentObjectTypeId";
     reportParameter2.Value           = "= Parameters.documentObjectTypeId.Value";
     reportParameter2.Visible         = true;
     this.ReportParameters.Add(reportParameter1);
     this.ReportParameters.Add(reportParameter2);
     this.Style.BackgroundColor = System.Drawing.Color.White;
     this.Width = Telerik.Reporting.Drawing.Unit.Inch(6.4895453453063965D);
     ((System.ComponentModel.ISupportInitialize)(this.jnpWorkflowNoteSubRpt11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.headerReport2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.Reporting.InstanceReportSource instanceReportSource1 = new Telerik.Reporting.InstanceReportSource();
     this.invoiceReport1 = new Koontabi.Reporting.InvoiceReport();
     this.radButton1     = new Telerik.WinControls.UI.RadButton();
     this.radPanel1      = new Telerik.WinControls.UI.RadPanel();
     this.reportViewer   = new Telerik.ReportViewer.WinForms.ReportViewer();
     ((System.ComponentModel.ISupportInitialize)(this.invoiceReport1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
     this.radPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // invoiceReport1
     //
     this.invoiceReport1.Name = "InvoiceReport";
     //
     // radButton1
     //
     this.radButton1.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.radButton1.Location     = new System.Drawing.Point(515, 3);
     this.radButton1.Name         = "radButton1";
     this.radButton1.Size         = new System.Drawing.Size(57, 24);
     this.radButton1.TabIndex     = 0;
     this.radButton1.Text         = "Cerrar";
     //
     // radPanel1
     //
     this.radPanel1.Controls.Add(this.radButton1);
     this.radPanel1.Controls.Add(this.reportViewer);
     this.radPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.radPanel1.Location = new System.Drawing.Point(0, 0);
     this.radPanel1.Name     = "radPanel1";
     this.radPanel1.Size     = new System.Drawing.Size(816, 728);
     this.radPanel1.TabIndex = 1;
     //
     // reportViewer
     //
     this.reportViewer.BorderStyle        = System.Windows.Forms.BorderStyle.FixedSingle;
     this.reportViewer.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.reportViewer.Location           = new System.Drawing.Point(0, 0);
     this.reportViewer.Name               = "reportViewer";
     instanceReportSource1.ReportDocument = this.invoiceReport1;
     this.reportViewer.ReportSource       = instanceReportSource1;
     this.reportViewer.Size               = new System.Drawing.Size(816, 728);
     this.reportViewer.TabIndex           = 0;
     //
     // InvoiceReportView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton        = this.radButton1;
     this.ClientSize          = new System.Drawing.Size(816, 728);
     this.Controls.Add(this.radPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "InvoiceReportView";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.ShowIcon      = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "InvoiceReportView";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.InvoiceReportView_FormClosing);
     ((System.ComponentModel.ISupportInitialize)(this.invoiceReport1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
     this.radPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #53
0
 /// <summary>
 /// Required method for telerik Reporting designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.Reporting.TableGroup tableGroup1  = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup2  = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup3  = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup4  = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup5  = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup6  = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup7  = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup8  = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup9  = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup10 = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup11 = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup12 = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup13 = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup14 = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup15 = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup16 = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup17 = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup18 = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup19 = new Telerik.Reporting.TableGroup();
     System.ComponentModel.ComponentResourceManager resources             = new System.ComponentModel.ComponentResourceManager(typeof(PDDutyKSA));
     Telerik.Reporting.InstanceReportSource         instanceReportSource1 = new Telerik.Reporting.InstanceReportSource();
     Telerik.Reporting.InstanceReportSource         instanceReportSource2 = new Telerik.Reporting.InstanceReportSource();
     Telerik.Reporting.ReportParameter reportParameter1 = new Telerik.Reporting.ReportParameter();
     this.textBox2               = new Telerik.Reporting.TextBox();
     this.textBox18              = new Telerik.Reporting.TextBox();
     this.textBox32              = new Telerik.Reporting.TextBox();
     this.textBox34              = new Telerik.Reporting.TextBox();
     this.textBox36              = new Telerik.Reporting.TextBox();
     this.detail                 = new Telerik.Reporting.DetailSection();
     this.table1                 = new Telerik.Reporting.Table();
     this.textBox4               = new Telerik.Reporting.TextBox();
     this.textBox5               = new Telerik.Reporting.TextBox();
     this.textBox3               = new Telerik.Reporting.TextBox();
     this.textBox6               = new Telerik.Reporting.TextBox();
     this.textBox9               = new Telerik.Reporting.TextBox();
     this.textBox10              = new Telerik.Reporting.TextBox();
     this.textBox11              = new Telerik.Reporting.TextBox();
     this.textBox12              = new Telerik.Reporting.TextBox();
     this.textBox13              = new Telerik.Reporting.TextBox();
     this.textBox14              = new Telerik.Reporting.TextBox();
     this.textBox1               = new Telerik.Reporting.TextBox();
     this.pictureBox1            = new Telerik.Reporting.PictureBox();
     this.objectDataSource1      = new Telerik.Reporting.ObjectDataSource();
     this.subReport1             = new Telerik.Reporting.SubReport();
     this.subReport2             = new Telerik.Reporting.SubReport();
     this.pageFooterSection1     = new Telerik.Reporting.PageFooterSection();
     this.pageInfoTextBox        = new Telerik.Reporting.TextBox();
     this.currentTimeTextBox     = new Telerik.Reporting.TextBox();
     this.pdDutyKSADetailReport3 = new HCMS.JNP.Reports.PDDutyKSADetailReport();
     this.pdDutyKSAConditionsOfEmploymentReport2 = new HCMS.JNP.Reports.PDDutyKSAConditionsOfEmploymentReport();
     this.pdDutyKSADetailReport2 = new HCMS.JNP.Reports.PDDutyKSADetailReport();
     this.pdDutyKSADetailReport1 = new HCMS.JNP.Reports.PDDutyKSADetailReport();
     this.pdDutyKSAConditionsOfEmploymentReport1 = new HCMS.JNP.Reports.PDDutyKSAConditionsOfEmploymentReport();
     ((System.ComponentModel.ISupportInitialize)(this.pdDutyKSADetailReport3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pdDutyKSAConditionsOfEmploymentReport2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pdDutyKSADetailReport2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pdDutyKSADetailReport1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pdDutyKSAConditionsOfEmploymentReport1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // textBox2
     //
     this.textBox2.Name          = "textBox2";
     this.textBox2.Size          = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(1.1145825386047363D));
     this.textBox2.Style.Visible = false;
     this.textBox2.StyleName     = "";
     //
     // textBox18
     //
     this.textBox18.Name          = "textBox18";
     this.textBox18.Size          = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.79562252759933472D));
     this.textBox18.Style.Visible = false;
     this.textBox18.StyleName     = "";
     //
     // textBox32
     //
     this.textBox32.Name          = "textBox32";
     this.textBox32.Size          = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.21354059875011444D));
     this.textBox32.Style.Visible = false;
     this.textBox32.StyleName     = "";
     //
     // textBox34
     //
     this.textBox34.Name          = "textBox34";
     this.textBox34.Size          = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.40798568725585938D));
     this.textBox34.Style.Visible = false;
     this.textBox34.StyleName     = "";
     //
     // textBox36
     //
     this.textBox36.Name          = "textBox36";
     this.textBox36.Size          = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.20486053824424744D));
     this.textBox36.Style.Visible = false;
     this.textBox36.StyleName     = "";
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(3.4000003337860107D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.table1,
         this.subReport1,
         this.subReport2
     });
     this.detail.KeepTogether = false;
     this.detail.Name         = "detail";
     //
     // table1
     //
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(2.01041841506958D)));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(4.4791669845581055D)));
     this.table1.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(Telerik.Reporting.Drawing.Unit.Inch(1.1145784854888916D)));
     this.table1.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(Telerik.Reporting.Drawing.Unit.Inch(0.39062461256980896D)));
     this.table1.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(Telerik.Reporting.Drawing.Unit.Inch(0.20833225548267365D)));
     this.table1.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(Telerik.Reporting.Drawing.Unit.Inch(0.19666635990142822D)));
     this.table1.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(Telerik.Reporting.Drawing.Unit.Inch(0.2135402262210846D)));
     this.table1.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(Telerik.Reporting.Drawing.Unit.Inch(0.40798595547676086D)));
     this.table1.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(Telerik.Reporting.Drawing.Unit.Inch(0.20486019551753998D)));
     this.table1.Body.SetCellContent(2, 0, this.textBox4);
     this.table1.Body.SetCellContent(2, 1, this.textBox5);
     this.table1.Body.SetCellContent(3, 0, this.textBox3);
     this.table1.Body.SetCellContent(3, 1, this.textBox6);
     this.table1.Body.SetCellContent(4, 0, this.textBox9);
     this.table1.Body.SetCellContent(4, 1, this.textBox10);
     this.table1.Body.SetCellContent(5, 0, this.textBox11);
     this.table1.Body.SetCellContent(5, 1, this.textBox12);
     this.table1.Body.SetCellContent(6, 0, this.textBox13);
     this.table1.Body.SetCellContent(6, 1, this.textBox14);
     this.table1.Body.SetCellContent(1, 0, this.textBox1, 1, 2);
     this.table1.Body.SetCellContent(0, 0, this.pictureBox1, 1, 2);
     this.table1.ColumnGroups.Add(tableGroup1);
     this.table1.ColumnGroups.Add(tableGroup2);
     this.table1.DataSource = this.objectDataSource1;
     this.table1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.textBox4,
         this.textBox5,
         this.textBox3,
         this.textBox6,
         this.textBox9,
         this.textBox10,
         this.textBox11,
         this.textBox12,
         this.textBox13,
         this.textBox14,
         this.textBox1,
         this.pictureBox1,
         this.textBox2,
         this.textBox18,
         this.textBox32,
         this.textBox34,
         this.textBox36
     });
     this.table1.KeepTogether = false;
     this.table1.Location     = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.table1.Name         = "table1";
     tableGroup5.Name         = "Group52";
     tableGroup4.ChildGroups.Add(tableGroup5);
     tableGroup4.Name = "Group50";
     tableGroup3.ChildGroups.Add(tableGroup4);
     tableGroup3.Name       = "Group53";
     tableGroup3.ReportItem = this.textBox2;
     tableGroup8.Name       = "Group49";
     tableGroup9.Name       = "Group1";
     tableGroup10.Name      = "Group2";
     tableGroup7.ChildGroups.Add(tableGroup8);
     tableGroup7.ChildGroups.Add(tableGroup9);
     tableGroup7.ChildGroups.Add(tableGroup10);
     tableGroup7.Groupings.AddRange(new Telerik.Reporting.Grouping[] {
         new Telerik.Reporting.Grouping(null)
     });
     tableGroup7.Name = "DetailGroup";
     tableGroup6.ChildGroups.Add(tableGroup7);
     tableGroup6.Name       = "Group54";
     tableGroup6.ReportItem = this.textBox18;
     tableGroup13.Name      = "Group5";
     tableGroup12.ChildGroups.Add(tableGroup13);
     tableGroup12.Name = "Group4";
     tableGroup11.ChildGroups.Add(tableGroup12);
     tableGroup11.Name       = "Group55";
     tableGroup11.ReportItem = this.textBox32;
     tableGroup16.Name       = "Group7";
     tableGroup15.ChildGroups.Add(tableGroup16);
     tableGroup15.Name = "Group6";
     tableGroup14.ChildGroups.Add(tableGroup15);
     tableGroup14.Name       = "Group56";
     tableGroup14.ReportItem = this.textBox34;
     tableGroup19.Name       = "Group9";
     tableGroup18.ChildGroups.Add(tableGroup19);
     tableGroup18.Name = "Group8";
     tableGroup17.ChildGroups.Add(tableGroup18);
     tableGroup17.Name       = "Group57";
     tableGroup17.ReportItem = this.textBox36;
     this.table1.RowGroups.Add(tableGroup3);
     this.table1.RowGroups.Add(tableGroup6);
     this.table1.RowGroups.Add(tableGroup11);
     this.table1.RowGroups.Add(tableGroup14);
     this.table1.RowGroups.Add(tableGroup17);
     this.table1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.4895853996276855D), Telerik.Reporting.Drawing.Unit.Inch(2.7365882396698D));
     this.table1.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0D);
     //
     // textBox4
     //
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.0104179382324219D), Telerik.Reporting.Drawing.Unit.Inch(0.20833216607570648D));
     this.textBox4.Style.BackgroundColor     = System.Drawing.Color.Empty;
     this.textBox4.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox4.Style.BorderStyle.Top     = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox4.Style.BorderWidth.Left    = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox4.Style.BorderWidth.Right   = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox4.Style.BorderWidth.Top     = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox4.Style.Font.Bold           = true;
     this.textBox4.Value = "Position Descritpion ID:";
     //
     // textBox5
     //
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.4791669845581055D), Telerik.Reporting.Drawing.Unit.Inch(0.20833216607570648D));
     this.textBox5.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox5.Style.BorderStyle.Top     = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox5.Style.BorderWidth.Left    = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox5.Style.BorderWidth.Right   = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox5.Style.BorderWidth.Top     = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox5.Style.Padding.Left        = Telerik.Reporting.Drawing.Unit.Inch(0.25D);
     this.textBox5.Value = "= Fields.PositionDescriptionID";
     //
     // textBox3
     //
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.0104179382324219D), Telerik.Reporting.Drawing.Unit.Inch(0.19666634500026703D));
     this.textBox3.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox3.Style.BorderStyle.Top     = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox3.Style.BorderWidth.Left    = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox3.Style.BorderWidth.Right   = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox3.Style.BorderWidth.Top     = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox3.Style.Font.Bold           = true;
     this.textBox3.StyleName = "";
     this.textBox3.Value     = "Job Series:";
     //
     // textBox6
     //
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.4791669845581055D), Telerik.Reporting.Drawing.Unit.Inch(0.19666634500026703D));
     this.textBox6.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox6.Style.BorderStyle.Top     = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox6.Style.BorderWidth.Left    = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox6.Style.BorderWidth.Right   = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox6.Style.BorderWidth.Top     = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox6.Style.Padding.Left        = Telerik.Reporting.Drawing.Unit.Inch(0.25D);
     this.textBox6.StyleName = "";
     this.textBox6.Value     = "= Fields.JobSeries";
     //
     // textBox9
     //
     this.textBox9.CanGrow   = false;
     this.textBox9.CanShrink = false;
     this.textBox9.Name      = "textBox9";
     this.textBox9.Size      = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.0104179382324219D), Telerik.Reporting.Drawing.Unit.Inch(0.21354009211063385D));
     this.textBox9.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox9.Style.BorderStyle.Top     = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox9.Style.BorderWidth.Left    = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox9.Style.BorderWidth.Right   = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox9.Style.BorderWidth.Top     = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox9.Style.Font.Bold           = true;
     this.textBox9.StyleName = "";
     this.textBox9.Value     = "Proposed Grade:";
     //
     // textBox10
     //
     this.textBox10.Name = "textBox10";
     this.textBox10.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.4791669845581055D), Telerik.Reporting.Drawing.Unit.Inch(0.21354009211063385D));
     this.textBox10.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox10.Style.BorderStyle.Top     = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox10.Style.BorderWidth.Left    = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox10.Style.BorderWidth.Right   = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox10.Style.BorderWidth.Top     = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox10.Style.Padding.Left        = Telerik.Reporting.Drawing.Unit.Inch(0.25D);
     this.textBox10.StyleName = "";
     this.textBox10.Value     = "= Fields.ProposedGrade";
     //
     // textBox11
     //
     this.textBox11.Name = "textBox11";
     this.textBox11.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.0104179382324219D), Telerik.Reporting.Drawing.Unit.Inch(0.40798568725585938D));
     this.textBox11.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox11.Style.BorderStyle.Top     = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox11.Style.BorderWidth.Left    = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox11.Style.BorderWidth.Right   = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox11.Style.BorderWidth.Top     = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox11.Style.Font.Bold           = true;
     this.textBox11.StyleName = "";
     this.textBox11.Value     = "Proposed Full Performance Grade:";
     //
     // textBox12
     //
     this.textBox12.Name = "textBox12";
     this.textBox12.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.4791669845581055D), Telerik.Reporting.Drawing.Unit.Inch(0.40798568725585938D));
     this.textBox12.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox12.Style.BorderStyle.Top     = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox12.Style.BorderWidth.Left    = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox12.Style.BorderWidth.Right   = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox12.Style.BorderWidth.Top     = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox12.Style.Padding.Left        = Telerik.Reporting.Drawing.Unit.Inch(0.25D);
     this.textBox12.StyleName = "";
     this.textBox12.Value     = "= Fields.ProposedFPGrade";
     //
     // textBox13
     //
     this.textBox13.Name = "textBox13";
     this.textBox13.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.0104179382324219D), Telerik.Reporting.Drawing.Unit.Inch(0.20486010611057282D));
     this.textBox13.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox13.Style.BorderStyle.Top     = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox13.Style.BorderWidth.Left    = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox13.Style.BorderWidth.Right   = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox13.Style.BorderWidth.Top     = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox13.Style.Font.Bold           = true;
     this.textBox13.StyleName = "";
     this.textBox13.Value     = "OPM Title:";
     //
     // textBox14
     //
     this.textBox14.Name = "textBox14";
     this.textBox14.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.4791669845581055D), Telerik.Reporting.Drawing.Unit.Inch(0.20486010611057282D));
     this.textBox14.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox14.Style.BorderStyle.Top     = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox14.Style.BorderWidth.Left    = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox14.Style.BorderWidth.Right   = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox14.Style.BorderWidth.Top     = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox14.Style.Padding.Left        = Telerik.Reporting.Drawing.Unit.Inch(0.25D);
     this.textBox14.StyleName = "";
     this.textBox14.Value     = "= Fields.OPMJobTitle";
     //
     // textBox1
     //
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.4895849227905273D), Telerik.Reporting.Drawing.Unit.Inch(0.39062419533729553D));
     this.textBox1.Style.BackgroundColor     = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(227)))), ((int)(((byte)(240)))));
     this.textBox1.Style.BorderStyle.Bottom  = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox1.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox1.Style.BorderStyle.Left    = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox1.Style.BorderStyle.Right   = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox1.Style.BorderStyle.Top     = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox1.Style.BorderWidth.Left    = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox1.Style.BorderWidth.Right   = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox1.Style.BorderWidth.Top     = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.textBox1.Style.Font.Bold           = true;
     this.textBox1.Style.Font.Size           = Telerik.Reporting.Drawing.Unit.Point(14D);
     this.textBox1.StyleName = "";
     this.textBox1.Value     = "PD Duty KSA";
     //
     // pictureBox1
     //
     this.pictureBox1.MimeType = "image/png";
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.4895849227905273D), Telerik.Reporting.Drawing.Unit.Inch(1.1145778894424439D));
     this.pictureBox1.Style.BackgroundColor     = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(227)))), ((int)(((byte)(240)))));
     this.pictureBox1.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.pictureBox1.Style.BorderStyle.Left    = Telerik.Reporting.Drawing.BorderType.Solid;
     this.pictureBox1.Style.BorderStyle.Right   = Telerik.Reporting.Drawing.BorderType.Solid;
     this.pictureBox1.Style.BorderStyle.Top     = Telerik.Reporting.Drawing.BorderType.Solid;
     this.pictureBox1.Style.BorderWidth.Left    = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.pictureBox1.Style.BorderWidth.Right   = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.pictureBox1.Style.BorderWidth.Top     = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     this.pictureBox1.Value = ((object)(resources.GetObject("pictureBox1.Value")));
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataMember = "GetData";
     this.objectDataSource1.DataSource = typeof(HCMS.JNP.Reports.PDDutyDataSetTableAdapters.spr_GetPositionDescriptionByIDTableAdapter);
     this.objectDataSource1.Name       = "objectDataSource1";
     this.objectDataSource1.Parameters.AddRange(new Telerik.Reporting.ObjectDataSourceParameter[] {
         new Telerik.Reporting.ObjectDataSourceParameter("positionDescriptionID", typeof(System.Nullable <long>), "=Parameters.positionDescriptionID.Value")
     });
     //
     // subReport1
     //
     this.subReport1.KeepTogether = false;
     this.subReport1.Location     = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D), Telerik.Reporting.Drawing.Unit.Inch(2.7999212741851807D));
     this.subReport1.Name         = "subReport1";
     instanceReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("positionDescriptionID", "=Parameters.positionDescriptionID.Value"));
     instanceReportSource1.ReportDocument = this.pdDutyKSADetailReport3;
     this.subReport1.ReportSource         = instanceReportSource1;
     this.subReport1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.4895458221435547D), Telerik.Reporting.Drawing.Unit.Inch(0.299999862909317D));
     //
     // subReport2
     //
     this.subReport2.KeepTogether = false;
     this.subReport2.Location     = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.010454177856445313D), Telerik.Reporting.Drawing.Unit.Inch(3.1000001430511475D));
     this.subReport2.Name         = "subReport2";
     instanceReportSource2.Parameters.Add(new Telerik.Reporting.Parameter("positionDescriptionID", "=Parameters.positionDescriptionID.Value"));
     instanceReportSource2.ReportDocument = this.pdDutyKSAConditionsOfEmploymentReport2;
     this.subReport2.ReportSource         = instanceReportSource2;
     this.subReport2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.4895458221435547D), Telerik.Reporting.Drawing.Unit.Inch(0.30000019073486328D));
     //
     // pageFooterSection1
     //
     this.pageFooterSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(0.20000003278255463D);
     this.pageFooterSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.pageInfoTextBox,
         this.currentTimeTextBox
     });
     this.pageFooterSection1.Name = "pageFooterSection1";
     //
     // pageInfoTextBox
     //
     this.pageInfoTextBox.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.2187893390655518D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.pageInfoTextBox.Name            = "pageInfoTextBox";
     this.pageInfoTextBox.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.2540884017944336D), Telerik.Reporting.Drawing.Unit.Inch(0.20000003278255463D));
     this.pageInfoTextBox.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.pageInfoTextBox.StyleName       = "PageInfo";
     this.pageInfoTextBox.TextWrap        = true;
     this.pageInfoTextBox.Value           = "= PageNumber";
     //
     // currentTimeTextBox
     //
     this.currentTimeTextBox.Location  = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.currentTimeTextBox.Name      = "currentTimeTextBox";
     this.currentTimeTextBox.Size      = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.0791666507720947D), Telerik.Reporting.Drawing.Unit.Inch(0.20000003278255463D));
     this.currentTimeTextBox.StyleName = "PageInfo";
     this.currentTimeTextBox.Value     = "=NOW().ToShortDateString()";
     //
     // pdDutyKSADetailReport3
     //
     this.pdDutyKSADetailReport3.Name = "PDFDutyDetailReport";
     //
     // pdDutyKSAConditionsOfEmploymentReport2
     //
     this.pdDutyKSAConditionsOfEmploymentReport2.Name = "PDDutyKSAConditionsOfEmploymentReport";
     //
     // pdDutyKSADetailReport2
     //
     this.pdDutyKSADetailReport2.Name = "PDFDutyDetailReport";
     //
     // pdDutyKSADetailReport1
     //
     this.pdDutyKSADetailReport1.Name = "PDFDutyDetailReport";
     //
     // pdDutyKSAConditionsOfEmploymentReport1
     //
     this.pdDutyKSAConditionsOfEmploymentReport1.Name = "PDDutyKSAConditionsOfEmploymentReport";
     //
     // PDDutyKSA
     //
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.detail,
         this.pageFooterSection1
     });
     this.Name = "PDDutyKSA";
     this.PageSettings.Margins.Bottom = Telerik.Reporting.Drawing.Unit.Inch(0.5D);
     this.PageSettings.Margins.Left   = Telerik.Reporting.Drawing.Unit.Inch(0.5D);
     this.PageSettings.Margins.Right  = Telerik.Reporting.Drawing.Unit.Inch(0.5D);
     this.PageSettings.Margins.Top    = Telerik.Reporting.Drawing.Unit.Inch(0.5D);
     this.PageSettings.PaperKind      = System.Drawing.Printing.PaperKind.Letter;
     reportParameter1.Name            = "positionDescriptionID";
     reportParameter1.Visible         = true;
     this.ReportParameters.Add(reportParameter1);
     this.Style.BackgroundColor = System.Drawing.Color.White;
     this.Width = Telerik.Reporting.Drawing.Unit.Inch(6.4999604225158691D);
     ((System.ComponentModel.ISupportInitialize)(this.pdDutyKSADetailReport3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pdDutyKSAConditionsOfEmploymentReport2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pdDutyKSADetailReport2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pdDutyKSADetailReport1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pdDutyKSAConditionsOfEmploymentReport1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
        private void LoadReport()
        {
            strMagnumID = Request.QueryString["MagnumID"].ToString();
            strQuoteAuditID = Request.QueryString["QuoteAuditID"].ToString();
            string strQuoteOptionAuditTrailIDO1 = "0";
            string strQuoteOptionAuditTrailIDO2 = "0";
            string strQuoteOptionAuditTrailIDO3 = "0";
            string strQuoteOptionAuditTrailIDO4 = "0";
            string strQuoteOptionAuditTrailIDO5 = "0";
            string strMessageMain = string.Empty;
            string strMessage = string.Empty;
            bool blnContinue = true;
            int intcheckCount = 0;

            intUserID = Convert.ToInt32(Session["UserID"]);

            Telerik.Web.UI.RadGrid OptionsGrid = (Telerik.Web.UI.RadGrid)RadPanelBar1.FindItemByValue("PanelItem1").FindControl("RadGridOptions");

            foreach (GridDataItem item in OptionsGrid.Items)
            {
                if ((item.FindControl("CheckBoxSelect") as System.Web.UI.WebControls.CheckBox).Checked == true)
                {
                    intcheckCount += 1;
                    #region "Old"
                    //switch (item.Cells[3].Text.Trim())
                    //{
                    //    case "1":
                    //        if (strQuoteOptionAuditTrailIDO1 == "0")
                    //            strQuoteOptionAuditTrailIDO1 = item.Cells[2].Text;
                    //        else
                    //        {
                    //            blnContinue = false;
                    //        }
                    //        break;
                    //    case "2":
                    //        if (strQuoteOptionAuditTrailIDO2 == "0")
                    //            strQuoteOptionAuditTrailIDO2 = item.Cells[2].Text;
                    //        else
                    //        {
                    //            blnContinue = false;
                    //        }
                    //        break;
                    //    case "3":
                    //        if (strQuoteOptionAuditTrailIDO3 == "0")
                    //            strQuoteOptionAuditTrailIDO3 = item.Cells[2].Text;
                    //        else
                    //        {
                    //            blnContinue = false;
                    //        }
                    //        break;
                    //    case "4":
                    //        if (strQuoteOptionAuditTrailIDO4 == "0")
                    //            strQuoteOptionAuditTrailIDO4 = item.Cells[2].Text;
                    //        else
                    //        {
                    //            blnContinue = false;
                    //        }
                    //        break;
                    //    case "5":
                    //        if (strQuoteOptionAuditTrailIDO5 == "0")
                    //            strQuoteOptionAuditTrailIDO5 = item.Cells[2].Text;
                    //        else
                    //        {
                    //            blnContinue = false;
                    //        }
                    //        break;
                    //}
                    #endregion

                    switch (intcheckCount)
                    {
                        case 1:
                            strQuoteOptionAuditTrailIDO1 = item.Cells[2].Text;
                            break;
                        case 2:
                            strQuoteOptionAuditTrailIDO2 = item.Cells[2].Text;
                            break;
                        case 3:
                            strQuoteOptionAuditTrailIDO3 = item.Cells[2].Text;
                            break;
                        case 4:
                            strQuoteOptionAuditTrailIDO4 = item.Cells[2].Text;
                            break;
                        case 5:
                            strQuoteOptionAuditTrailIDO5 = item.Cells[2].Text;
                            break;
                    }
                }
            }

            if (intcheckCount > 5)
                blnContinue = false;

            if (blnContinue == false)
            {
                //lblInfo.Text = "You can only select one item for each option, please check the options";
                lblInfo.Text = "You can only select a maximum of 5 options";
                ReportViewer1.Visible = false;
                ReportViewer1.ReportSource = null;
            }
            else
            {
                RadBtnSaveLetter.Visible = true;
                //RadBtnEmail.Visible = true;

                DataSet DS = new DataSet();

                #region "Old Code"
                ////Telerik.Reporting.InstanceReportSource instanceReportSource = new Telerik.Reporting.InstanceReportSource();
                ////instanceReportSource.ReportDocument = new Report.QuoteLetter();
                ////this.ReportViewer1.ReportSource = instanceReportSource;

                //DataTable SummaryDT = new DataTable();
                //DataColumn DT1 = new DataColumn("Scenario");
                //DataColumn DT2 = new DataColumn("Premium [Total]");
                //DataColumn DT3 = new DataColumn("CoverAmount [Life]");
                //DataColumn DT4 = new DataColumn("Premium [Life] incl. DC fee");
                //DataColumn DT5 = new DataColumn("CoverAmount [Disability]");
                //DataColumn DT6 = new DataColumn("Premium [Disability] incl. DC fee");

                ////DT1.DataType = System.Type.GetType("System.String");
                //SummaryDT.Columns.Add(DT1);
                //SummaryDT.Columns.Add(DT2);
                //SummaryDT.Columns.Add(DT3);
                //SummaryDT.Columns.Add(DT4);
                //SummaryDT.Columns.Add(DT5);
                //SummaryDT.Columns.Add(DT6);

                //DataRow row = SummaryDT.NewRow();
                //row[DT1] = "Option 1";
                //row[DT2] = "";
                //row[DT3] = "";
                //row[DT4] = "";
                //row[DT5] = "";
                //row[DT6] = "";
                //SummaryDT.Rows.Add(row);
                //DS.Tables.Add(SummaryDT);
                #endregion

                #region "SQL"
                SqlConnection sqlConnectionX;
                SqlCommand sqlCommandX;
                SqlParameter sqlParam;
                SqlDataReader sqlDR;

                sqlConnectionX = new SqlConnection(ConfigurationManager.AppSettings["SQLConnection"]);
                sqlConnectionX.Open();

                sqlCommandX = new SqlCommand();
                sqlCommandX.Connection = sqlConnectionX;
                sqlCommandX.CommandType = CommandType.StoredProcedure;
                sqlCommandX.CommandText = "spx_SELECT_QuoteDetailByAuditTrailID_Detailed";

                sqlParam = new SqlParameter("QuoteAuditTrailID", strQuoteAuditID);
                sqlCommandX.Parameters.Add(sqlParam);
                sqlParam = new SqlParameter("QuoteOption1ID", strQuoteOptionAuditTrailIDO1);
                sqlCommandX.Parameters.Add(sqlParam);
                sqlParam = new SqlParameter("QuoteOption2ID", strQuoteOptionAuditTrailIDO2);
                sqlCommandX.Parameters.Add(sqlParam);
                sqlParam = new SqlParameter("QuoteOption3ID", strQuoteOptionAuditTrailIDO3);
                sqlCommandX.Parameters.Add(sqlParam);
                sqlParam = new SqlParameter("QuoteOption4ID", strQuoteOptionAuditTrailIDO4);
                sqlCommandX.Parameters.Add(sqlParam);
                sqlParam = new SqlParameter("QuoteOption5ID", strQuoteOptionAuditTrailIDO5);
                sqlCommandX.Parameters.Add(sqlParam);

                sqlDR = sqlCommandX.ExecuteReader();
                DataTable dt = new DataTable("Info");
                dt.Load(sqlDR);
                DS.Tables.Add(dt);

                sqlDR.Close();
                sqlCommandX.Cancel();
                sqlCommandX.Dispose();
                sqlConnectionX.Close();
                #endregion

                // Creating and configuring the ObjectDataSource component:
                var objectDataSource = new Telerik.Reporting.ObjectDataSource();
                objectDataSource.DataSource = DS; // GetData returns a DataSet with three tables
                //objectDataSource.DataMember = "Product"; /// Indicating the exact table to bind to. If the DataMember is not specified the first data table will be used.
                //objectDataSource.CalculatedFields.Add(new Telerik.Reporting.CalculatedField("FullName", typeof(string), "=Fields.Name + ' ' + Fields.ProductNumber")); // Adding a sample calculated field.

                // Creating a new report
                Telerik.Reporting.Report report = new Telerik.Reporting.Report();

                //Telerik.Reporting.Report report = new Telerik.Reporting.Report();
                if (((dt.Rows[0][36].ToString() == "ok") && (dt.Rows[0][37].ToString() == "ok")) || ((dt.Rows[0][72].ToString() != "FDB") && (dt.Rows[0][73].ToString() != "FDB")))
                {
                    //Both quoteLife and QuoteDisability were selected
                    if ((dt.Rows[0][42].ToString() == "1") && (dt.Rows[0][43].ToString() == "1"))
                    {
                        report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetter"));
                    }

                    //if only QuoteLife was selected
                    if ((dt.Rows[0][42].ToString() == "1") && (dt.Rows[0][43].ToString() == "0"))
                    {
                        report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetterLifeOnly"));
                    }

                    //if only QuoteDisability was selected
                    if ((dt.Rows[0][42].ToString() == "0") && (dt.Rows[0][43].ToString() == "1"))
                    {
                        //report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetterDisabilityOnly"));
                        report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetterDisOnly"));
                        //report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetter"));
                        //report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetterLifeOnly"));
                    }

                }
                else
                {
                    if (dt.Rows[0][36].ToString() != "ok")
                    {
                        if (dt.Rows[0][72].ToString() == "FDB")
                        {
                            report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetterDisabilityOnly"));
                        }
                        else
                        {
                            report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetter"));
                        }
                    }

                    if (dt.Rows[0][37].ToString() != "ok")
                    {
                        if (dt.Rows[0][73].ToString() == "FDB")
                        {
                            report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetterLifeOnly"));
                        }
                        else
                        {
                            report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetter"));
                        }
                    }
                }

                report.DocumentName = strMagnumID;
                // Assigning the ObjectDataSource component to the DataSource property of the report.
                report.DataSource = objectDataSource;
                // Use the InstanceReportSource to pass the report to the viewer for displaying
                Telerik.Reporting.InstanceReportSource reportSource = new Telerik.Reporting.InstanceReportSource();
                reportSource.ReportDocument = report;
                // Assigning the report to the report viewer.
                ReportViewer1.ReportSource = reportSource;
                ReportViewer1.RefreshReport();
                //ReportViewer1.RefreshData();

                ////Saving
                //string fileName = report.DocumentName + ".PDF";
                //string path = System.IO.Path.GetTempPath();
                //string filePath = System.IO.Path.Combine(path, fileName);

                //ReportProcessor reportProcessor = new ReportProcessor();
                //Telerik.Reporting.InstanceReportSource instanceReportSource = new Telerik.Reporting.InstanceReportSource();
                //instanceReportSource.ReportDocument = report;
                //RenderingResult result = reportProcessor.RenderReport("PDF", instanceReportSource, null);

                //using (FileStream fs = new FileStream(filePath, FileMode.Create))
                //{
                //    fs.Write(result.DocumentBytes, 0, result.DocumentBytes.Length);
                //}

                //Telerik.Reporting.Report report = (Telerik.Reporting.Report)Activator.CreateInstance(System.Reflection.Assembly.Load("Report").GetType("Report.QuoteLetter"));
                ////report.DocumentName = strTemplateName;
                ////report.DataSource = DS;
                //ReportViewer1.ReportSource = report;

                //var typeReportSource = new Telerik.Reporting.TypeReportSource();
                //typeReportSource.TypeName = "Telerik.Reporting.Examples.CSharp.ListBoundReport, CSharp.ReportLibrary";
                //this.ReportViewer1.ReportSource = typeReportSource;
            }
        }
        /// <summary>
        /// Required method for telerik Reporting designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RptProfessionalInvoice2));
            Telerik.Reporting.InstanceReportSource instanceReportSource1 = new Telerik.Reporting.InstanceReportSource();
            Telerik.Reporting.ReportParameter reportParameter1 = new Telerik.Reporting.ReportParameter();
            Telerik.Reporting.Drawing.StyleRule styleRule1 = new Telerik.Reporting.Drawing.StyleRule();
            this.rptProfessionalInvoiceBases1 = new AriCliReport.RptProfessionalInvoiceBases();
            this.sqlProfessionalInvoiceId = new Telerik.Reporting.SqlDataSource();
            this.pageHeaderSection1 = new Telerik.Reporting.PageHeaderSection();
            this.textBox5 = new Telerik.Reporting.TextBox();
            this.textBox1 = new Telerik.Reporting.TextBox();
            this.textBox15 = new Telerik.Reporting.TextBox();
            this.textBox18 = new Telerik.Reporting.TextBox();
            this.textBox17 = new Telerik.Reporting.TextBox();
            this.textBox23 = new Telerik.Reporting.TextBox();
            this.textBox2 = new Telerik.Reporting.TextBox();
            this.textBox16 = new Telerik.Reporting.TextBox();
            this.textBox7 = new Telerik.Reporting.TextBox();
            this.textBox10 = new Telerik.Reporting.TextBox();
            this.textBox3 = new Telerik.Reporting.TextBox();
            this.textBox4 = new Telerik.Reporting.TextBox();
            this.textBox9 = new Telerik.Reporting.TextBox();
            this.textBox11 = new Telerik.Reporting.TextBox();
            this.detail = new Telerik.Reporting.DetailSection();
            this.textBox6 = new Telerik.Reporting.TextBox();
            this.textBox8 = new Telerik.Reporting.TextBox();
            this.textBox12 = new Telerik.Reporting.TextBox();
            this.pageFooterSection1 = new Telerik.Reporting.PageFooterSection();
            this.sqlProfessionalInvoice = new Telerik.Reporting.SqlDataSource();
            this.reportFooterSection1 = new Telerik.Reporting.ReportFooterSection();
            this.subReport1 = new Telerik.Reporting.SubReport();
            ((System.ComponentModel.ISupportInitialize)(this.rptProfessionalInvoiceBases1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // rptProfessionalInvoiceBases1
            // 
            this.rptProfessionalInvoiceBases1.Name = "RptProfessionalInvoiceBases";
            // 
            // sqlProfessionalInvoiceId
            // 
            this.sqlProfessionalInvoiceId.ConnectionString = "AriClinicContext";
            this.sqlProfessionalInvoiceId.Name = "sqlProfessionalInvoiceId";
            this.sqlProfessionalInvoiceId.SelectCommand = "SELECT        invoice_id, serial, year, invoice_number\r\nFROM            professio" +
    "nal_invoice\r\nORDER BY serial, year, invoice_number";
            // 
            // pageHeaderSection1
            // 
            this.pageHeaderSection1.Height = Telerik.Reporting.Drawing.Unit.Cm(5.8000006675720215D);
            this.pageHeaderSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.textBox5,
            this.textBox1,
            this.textBox15,
            this.textBox18,
            this.textBox17,
            this.textBox23,
            this.textBox2,
            this.textBox16,
            this.textBox7,
            this.textBox10,
            this.textBox3,
            this.textBox4,
            this.textBox9,
            this.textBox11});
            this.pageHeaderSection1.Name = "pageHeaderSection1";
            // 
            // textBox5
            // 
            this.textBox5.Format = "{0:dd/MM/yyyy}";
            this.textBox5.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.5118110179901123D));
            this.textBox5.Name = "textBox5";
            this.textBox5.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.74015736579895D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox5.Style.BackgroundColor = System.Drawing.Color.White;
            this.textBox5.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox5.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox5.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox5.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox5.Style.BorderWidth.Bottom = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox5.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox5.Style.BorderWidth.Right = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox5.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox5.Style.Font.Bold = true;
            this.textBox5.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(11D);
            this.textBox5.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox5.Value = "= Fields.prof_name";
            // 
            // textBox1
            // 
            this.textBox1.Format = "{0:dd/MM/yyyy}";
            this.textBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.71188968420028687D));
            this.textBox1.Name = "textBox1";
            this.textBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.74015736579895D), Telerik.Reporting.Drawing.Unit.Inch(0.31169304251670837D));
            this.textBox1.Style.BackgroundColor = System.Drawing.Color.White;
            this.textBox1.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox1.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox1.Style.BorderWidth.Bottom = Telerik.Reporting.Drawing.Unit.Point(1D);
            this.textBox1.Style.BorderWidth.Right = Telerik.Reporting.Drawing.Unit.Point(1D);
            this.textBox1.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox1.Style.Font.Bold = false;
            this.textBox1.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(11D);
            this.textBox1.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox1.Value = "CIF: {Fields.prof_vatin}";
            // 
            // textBox15
            // 
            this.textBox15.Format = "{0:dd/MM/yyyy}";
            this.textBox15.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D), Telerik.Reporting.Drawing.Unit.Inch(1.0236612558364868D));
            this.textBox15.Name = "textBox15";
            this.textBox15.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.7401180267333984D), Telerik.Reporting.Drawing.Unit.Inch(0.82669287919998169D));
            this.textBox15.Style.BackgroundColor = System.Drawing.Color.White;
            this.textBox15.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox15.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox15.Style.BorderWidth.Bottom = Telerik.Reporting.Drawing.Unit.Point(1D);
            this.textBox15.Style.BorderWidth.Right = Telerik.Reporting.Drawing.Unit.Point(1D);
            this.textBox15.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox15.Style.Font.Bold = false;
            this.textBox15.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(11D);
            this.textBox15.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox15.Value = "Direccion: \r\n{Fields.street}\r\n({Fields.post_code}) {Fields.city} \r\n{Fields.provin" +
    "ce} [{Fields.country}]\r\n";
            // 
            // textBox18
            // 
            this.textBox18.Format = "{0:dd/MM/yyyy}";
            this.textBox18.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.80011814832687378D), Telerik.Reporting.Drawing.Unit.Inch(0.20007872581481934D));
            this.textBox18.Name = "textBox18";
            this.textBox18.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.8219292163848877D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox18.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(225)))), ((int)(((byte)(255)))));
            this.textBox18.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox18.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox18.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox18.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox18.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox18.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox18.Style.BorderWidth.Bottom = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox18.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox18.Style.BorderWidth.Left = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox18.Style.BorderWidth.Right = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox18.Style.BorderWidth.Top = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox18.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox18.Style.Font.Bold = true;
            this.textBox18.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox18.Value = "= Fields.invoice_date\r\n";
            // 
            // textBox17
            // 
            this.textBox17.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.80011814832687378D), Telerik.Reporting.Drawing.Unit.Inch(0D));
            this.textBox17.Name = "textBox17";
            this.textBox17.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.8219292163848877D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox17.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(225)))), ((int)(((byte)(255)))));
            this.textBox17.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox17.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox17.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox17.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox17.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox17.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox17.Style.BorderWidth.Bottom = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox17.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox17.Style.BorderWidth.Left = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox17.Style.BorderWidth.Right = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox17.Style.BorderWidth.Top = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox17.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox17.Style.Font.Bold = true;
            this.textBox17.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox17.Value = "{Fields.serial} - {Fields.year} - {Fields.invoice_number}";
            // 
            // textBox23
            // 
            this.textBox23.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D), Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D));
            this.textBox23.Name = "textBox23";
            this.textBox23.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.800000011920929D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox23.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(225)))), ((int)(((byte)(255)))));
            this.textBox23.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox23.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox23.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox23.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox23.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox23.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox23.Style.BorderWidth.Bottom = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox23.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox23.Style.BorderWidth.Left = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox23.Style.BorderWidth.Right = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox23.Style.BorderWidth.Top = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox23.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox23.Style.Font.Bold = true;
            this.textBox23.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox23.Value = "FACTURA:";
            // 
            // textBox2
            // 
            this.textBox2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D), Telerik.Reporting.Drawing.Unit.Inch(0.20011813938617706D));
            this.textBox2.Name = "textBox2";
            this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.800000011920929D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox2.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(225)))), ((int)(((byte)(255)))));
            this.textBox2.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox2.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox2.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox2.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox2.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox2.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.None;
            this.textBox2.Style.BorderWidth.Bottom = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox2.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox2.Style.BorderWidth.Left = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox2.Style.BorderWidth.Right = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox2.Style.BorderWidth.Top = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox2.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox2.Style.Font.Bold = true;
            this.textBox2.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox2.Value = "FECHA:";
            // 
            // textBox16
            // 
            this.textBox16.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.3307089805603027D), Telerik.Reporting.Drawing.Unit.Inch(0D));
            this.textBox16.Name = "textBox16";
            this.textBox16.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.5432281494140625D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox16.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(225)))), ((int)(((byte)(255)))));
            this.textBox16.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox16.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox16.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox16.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox16.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox16.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox16.Style.BorderWidth.Bottom = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox16.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox16.Style.BorderWidth.Left = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox16.Style.BorderWidth.Right = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox16.Style.BorderWidth.Top = Telerik.Reporting.Drawing.Unit.Point(0.800000011920929D);
            this.textBox16.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox16.Style.Font.Bold = true;
            this.textBox16.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Point(0D);
            this.textBox16.Value = "Datos del Cliente";
            // 
            // textBox7
            // 
            this.textBox7.Format = "{0:dd/MM/yyyy}";
            this.textBox7.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.3307089805603027D), Telerik.Reporting.Drawing.Unit.Inch(0.20011813938617706D));
            this.textBox7.Name = "textBox7";
            this.textBox7.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.5432279109954834D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox7.Style.Font.Bold = true;
            this.textBox7.Value = "= Fields.company_name";
            // 
            // textBox10
            // 
            this.textBox10.Format = "{0:dd/MM/yyyy}";
            this.textBox10.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.3306293487548828D), Telerik.Reporting.Drawing.Unit.Inch(0.40019688010215759D));
            this.textBox10.Name = "textBox10";
            this.textBox10.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.5433073043823242D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox10.Value = "CIF: {Fields.company_vatin}";
            // 
            // textBox3
            // 
            this.textBox3.Format = "{0:dd/MM/yyyy}";
            this.textBox3.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.3307089805603027D), Telerik.Reporting.Drawing.Unit.Inch(0.60027557611465454D));
            this.textBox3.Name = "textBox3";
            this.textBox3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.5433073043823242D), Telerik.Reporting.Drawing.Unit.Inch(1.2500786781311035D));
            this.textBox3.Value = "Direccion:\r\n{Fields.company_street}\r\n({Fields.company_postcode}) {Fields.company_" +
    "city}\r\n{Fields.company_province} [{Fields.company_country}]";
            // 
            // textBox4
            // 
            this.textBox4.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.078740119934082031D), Telerik.Reporting.Drawing.Unit.Inch(2.0472440719604492D));
            this.textBox4.Name = "textBox4";
            this.textBox4.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(5.2362208366394043D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox4.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(225)))), ((int)(((byte)(255)))));
            this.textBox4.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox4.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox4.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox4.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox4.Style.Font.Bold = true;
            this.textBox4.Value = "Servicio";
            // 
            // textBox9
            // 
            this.textBox9.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.4330711364746094D), Telerik.Reporting.Drawing.Unit.Inch(2.0472440719604492D));
            this.textBox9.Name = "textBox9";
            this.textBox9.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.800000011920929D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox9.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(225)))), ((int)(((byte)(255)))));
            this.textBox9.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox9.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox9.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox9.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox9.Style.Font.Bold = true;
            this.textBox9.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox9.Value = "IVA";
            // 
            // textBox11
            // 
            this.textBox11.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(6.377953052520752D), Telerik.Reporting.Drawing.Unit.Inch(2.04724383354187D));
            this.textBox11.Name = "textBox11";
            this.textBox11.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.4250788688659668D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
            this.textBox11.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(225)))), ((int)(((byte)(255)))));
            this.textBox11.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox11.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox11.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
            this.textBox11.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
            this.textBox11.Style.Font.Bold = true;
            this.textBox11.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox11.Value = "Importe";
            // 
            // detail
            // 
            this.detail.Height = Telerik.Reporting.Drawing.Unit.Cm(0.59999889135360718D);
            this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.textBox6,
            this.textBox8,
            this.textBox12});
            this.detail.Name = "detail";
            // 
            // textBox6
            // 
            this.textBox6.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.078740119934082031D), Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D));
            this.textBox6.Name = "textBox6";
            this.textBox6.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(5.2362208366394043D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
            this.textBox6.Value = "= Fields.description";
            // 
            // textBox8
            // 
            this.textBox8.Format = "{0:N2}";
            this.textBox8.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.4330711364746094D), Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D));
            this.textBox8.Name = "textBox8";
            this.textBox8.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.7999998927116394D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
            this.textBox8.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
            this.textBox8.Value = "= Fields.tax_percentage";
            // 
            // textBox12
            // 
            this.textBox12.Format = "{0:C2}";
            this.textBox12.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(6.377953052520752D), Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D));
            this.textBox12.Name = "textBox12";
            this.textBox12.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.4250789880752564D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
            this.textBox12.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
            this.textBox12.Value = "= Fields.amount";
            // 
            // pageFooterSection1
            // 
            this.pageFooterSection1.Height = Telerik.Reporting.Drawing.Unit.Cm(1.9999997615814209D);
            this.pageFooterSection1.Name = "pageFooterSection1";
            // 
            // sqlProfessionalInvoice
            // 
            this.sqlProfessionalInvoice.ConnectionString = "AriClinicContext";
            this.sqlProfessionalInvoice.Name = "sqlProfessionalInvoice";
            this.sqlProfessionalInvoice.Parameters.AddRange(new Telerik.Reporting.SqlDataSourceParameter[] {
            new Telerik.Reporting.SqlDataSourceParameter("@InvoiceId", System.Data.DbType.Int32, "=Parameters.InvoiceId.Value")});
            this.sqlProfessionalInvoice.SelectCommand = resources.GetString("sqlProfessionalInvoice.SelectCommand");
            // 
            // reportFooterSection1
            // 
            this.reportFooterSection1.Height = Telerik.Reporting.Drawing.Unit.Cm(3D);
            this.reportFooterSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.subReport1});
            this.reportFooterSection1.Name = "reportFooterSection1";
            // 
            // subReport1
            // 
            this.subReport1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Cm(0.19999989867210388D), Telerik.Reporting.Drawing.Unit.Cm(0.19999989867210388D));
            this.subReport1.Name = "subReport1";
            instanceReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("InvoiceId", "=Fields.invoice_id"));
            instanceReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("TaxWithholding", "=Fields.tax_whith_holding_percentage"));
            instanceReportSource1.ReportDocument = this.rptProfessionalInvoiceBases1;
            this.subReport1.ReportSource = instanceReportSource1;
            this.subReport1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(19.619699478149414D), Telerik.Reporting.Drawing.Unit.Cm(1.0999999046325684D));
            // 
            // RptProfessionalInvoice2
            // 
            this.DataSource = this.sqlProfessionalInvoice;
            this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.pageHeaderSection1,
            this.detail,
            this.pageFooterSection1,
            this.reportFooterSection1});
            this.Name = "RptProfessionalInvoice2";
            this.PageSettings.Landscape = false;
            this.PageSettings.Margins.Bottom = Telerik.Reporting.Drawing.Unit.Mm(5D);
            this.PageSettings.Margins.Left = Telerik.Reporting.Drawing.Unit.Mm(5D);
            this.PageSettings.Margins.Right = Telerik.Reporting.Drawing.Unit.Mm(5D);
            this.PageSettings.Margins.Top = Telerik.Reporting.Drawing.Unit.Mm(5D);
            this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.A4;
            reportParameter1.AvailableValues.DataSource = this.sqlProfessionalInvoiceId;
            reportParameter1.AvailableValues.DisplayMember = "{Fields.serial} - {Fields.year} - {Fields.invoice_number}";
            reportParameter1.AvailableValues.ValueMember = "= Fields.invoice_id";
            reportParameter1.Name = "InvoiceId";
            reportParameter1.Text = "Factura profesional";
            reportParameter1.Type = Telerik.Reporting.ReportParameterType.Integer;
            reportParameter1.Visible = true;
            this.ReportParameters.Add(reportParameter1);
            this.Style.BackgroundColor = System.Drawing.Color.White;
            styleRule1.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
            new Telerik.Reporting.Drawing.TypeSelector(typeof(Telerik.Reporting.TextItemBase)),
            new Telerik.Reporting.Drawing.TypeSelector(typeof(Telerik.Reporting.HtmlTextBox))});
            styleRule1.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Point(2D);
            styleRule1.Style.Padding.Right = Telerik.Reporting.Drawing.Unit.Point(2D);
            this.StyleSheet.AddRange(new Telerik.Reporting.Drawing.StyleRule[] {
            styleRule1});
            this.Width = Telerik.Reporting.Drawing.Unit.Cm(20D);
            ((System.ComponentModel.ISupportInitialize)(this.rptProfessionalInvoiceBases1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();

        }