Beispiel #1
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";
    }
Beispiel #2
0
        protected void btnShowReport_Click(object sender, EventArgs e)
        {
            try
            {
                ReportViewer1.Report = new rptBreakage();
                DateTime dateFrom = Convert.ToDateTime(txtStartDate.Text);
                DateTime?dateTo   = null;
                if (txtEndDate.Text != "")
                {
                    dateTo = Convert.ToDateTime(txtEndDate.Text);
                }

                int item      = Convert.ToInt32(ddlItem.SelectedValue);
                int set       = Convert.ToInt32(ddlSet.SelectedValue);
                int machine   = Convert.ToInt32(ddlMachine.SelectedValue);
                int pOperator = Convert.ToInt32(ddlMachine.SelectedValue);
                int company   = Convert.ToInt16(Session["CompanyID"]);


                (ReportViewer1.Report as rptBreakage).paramDateFrom = dateFrom; //UniqueCode.GetDateFormat_MM_dd_yyy(txtStartDate.Text);
                (ReportViewer1.Report as rptBreakage).paramDateTo   = dateTo;
                (ReportViewer1.Report as rptBreakage).paramItem     = item;
                (ReportViewer1.Report as rptBreakage).paramSet      = set;
                (ReportViewer1.Report as rptBreakage).paramMachine  = machine;
                (ReportViewer1.Report as rptBreakage).paramOperator = pOperator;
                (ReportViewer1.Report as rptBreakage).companyId     = company;

                Telerik.Reporting.Report report = (Telerik.Reporting.Report) this.ReportViewer1.Report;

                Telerik.Reporting.TextBox txt  = report.Items.Find("dtFrom", true)[0] as Telerik.Reporting.TextBox;
                Telerik.Reporting.TextBox txt1 = report.Items.Find("dtTo", true)[0] as Telerik.Reporting.TextBox;

                txt.Value = dateFrom.ToString("dd-MM-yyyy");
                string edate = dateTo != null?dateTo.Value.ToString("dd-MM-yyyy") : "";

                if (txtEndDate.Text != "")
                {
                    txt1.Value = "To   " + edate;
                }
                else
                {
                    txt1.Value = edate;
                }

                ReportViewer1.RefreshReport();
            }
            catch (Exception ex)
            {
                ex.ToString();
            }
        }
    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";
    }
Beispiel #4
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";
    }
        private void frmMain_Load(object sender, EventArgs e)
        {
            buttonClose.Left = this.Width - buttonClose.Width;

            string[] args = Environment.GetCommandLineArgs();
            
            _whichReport = int.Parse(args[1]);            

            switch (_whichReport)
            {
                case 1:

                    WaldenReports.LabatoryRequest
                    report1 = new WaldenReports.LabatoryRequest();
                    _theReport = new WaldenReports.LabatoryRequest();
                    Telerik.Reporting.TextBox _patientTextBox = new Telerik.Reporting.TextBox();

                    _patientTextBox = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtPatientName"];
                    _patientTextBox.Value = args[2];

                    report1.DataSource =
                        OrderOutsideServicesList.ServiceListing; 

                    reportViewer1.Report = report1;
                    reportViewer1.RefreshReport();  

                    break;
                case 2:

                    break;
                case 3:

                    break;
                default:
                    //Console.WriteLine("Invalid selection. Please select 1, 2, or 3.");
                    break;
            }
        }
 /// <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();
     this.textBox3 = new Telerik.Reporting.TextBox();
     this.textBox1 = new Telerik.Reporting.TextBox();
     this.textBox2 = new Telerik.Reporting.TextBox();
     this.textBox6 = new Telerik.Reporting.TextBox();
     this.detail = new Telerik.Reporting.DetailSection();
     this.table1 = new Telerik.Reporting.Table();
     this.textBox7 = new Telerik.Reporting.TextBox();
     this.textBox8 = new Telerik.Reporting.TextBox();
     this.textBox4 = new Telerik.Reporting.TextBox();
     this.textBox5 = new Telerik.Reporting.TextBox();
     this.CustomerBalanceInfo = new Telerik.Reporting.ObjectDataSource();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // textBox3
     //
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6145660877227783D), Telerik.Reporting.Drawing.Unit.Inch(0.2395833283662796D));
     this.textBox3.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.textBox3.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox3.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox3.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox3.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox3.StyleName = "";
     this.textBox3.Value = "Name";
     //
     // textBox1
     //
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.4895659685134888D), Telerik.Reporting.Drawing.Unit.Inch(0.2395833283662796D));
     this.textBox1.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.textBox1.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox1.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox1.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox1.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox1.StyleName = "";
     this.textBox1.Value = "Receive Amount";
     //
     // textBox2
     //
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6770799160003662D), Telerik.Reporting.Drawing.Unit.Inch(0.2395833283662796D));
     this.textBox2.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.textBox2.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox2.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox2.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox2.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox2.StyleName = "";
     this.textBox2.Value = "Payment Amount";
     //
     // textBox6
     //
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.7187494039535523D), Telerik.Reporting.Drawing.Unit.Inch(0.2395833283662796D));
     this.textBox6.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.textBox6.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox6.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox6.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox6.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox6.StyleName = "";
     this.textBox6.Value = "Balance";
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(0.45837274193763733D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.table1});
     this.detail.Name = "detail";
     //
     // table1
     //
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(1.6145663261413574D)));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(1.4895660877227783D)));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(1.6770807504653931D)));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(1.7187497615814209D)));
     this.table1.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(Telerik.Reporting.Drawing.Unit.Inch(0.21875014901161194D)));
     this.table1.Body.SetCellContent(0, 0, this.textBox7);
     this.table1.Body.SetCellContent(0, 3, this.textBox8);
     this.table1.Body.SetCellContent(0, 2, this.textBox4);
     this.table1.Body.SetCellContent(0, 1, this.textBox5);
     tableGroup1.ReportItem = this.textBox3;
     tableGroup2.ReportItem = this.textBox1;
     tableGroup3.Name = "Group1";
     tableGroup3.ReportItem = this.textBox2;
     tableGroup4.Name = "Group2";
     tableGroup4.ReportItem = this.textBox6;
     this.table1.ColumnGroups.Add(tableGroup1);
     this.table1.ColumnGroups.Add(tableGroup2);
     this.table1.ColumnGroups.Add(tableGroup3);
     this.table1.ColumnGroups.Add(tableGroup4);
     this.table1.DataSource = this.CustomerBalanceInfo;
     this.table1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.textBox7,
     this.textBox8,
     this.textBox4,
     this.textBox5,
     this.textBox3,
     this.textBox1,
     this.textBox2,
     this.textBox6});
     this.table1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(3.9339065551757812E-05D));
     this.table1.Name = "table1";
     tableGroup5.Groupings.Add(new Telerik.Reporting.Grouping(null));
     tableGroup5.Name = "DetailGroup";
     this.table1.RowGroups.Add(tableGroup5);
     this.table1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.49996280670166D), Telerik.Reporting.Drawing.Unit.Inch(0.45833349227905273D));
     //
     // textBox7
     //
     this.textBox7.Name = "textBox7";
     this.textBox7.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6145660877227783D), Telerik.Reporting.Drawing.Unit.Inch(0.21875014901161194D));
     this.textBox7.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox7.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox7.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox7.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox7.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox7.StyleName = "";
     this.textBox7.Value = "=Fields.Name";
     //
     // textBox8
     //
     this.textBox8.Name = "textBox8";
     this.textBox8.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.7187494039535523D), Telerik.Reporting.Drawing.Unit.Inch(0.21875014901161194D));
     this.textBox8.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox8.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox8.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox8.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox8.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox8.StyleName = "";
     this.textBox8.Value = "= Fields.CustomerAccount.Debit - Fields.CustomerAccount.Credit";
     //
     // textBox4
     //
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6770806312561035D), Telerik.Reporting.Drawing.Unit.Inch(0.21875014901161194D));
     this.textBox4.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox4.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox4.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox4.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox4.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox4.StyleName = "";
     this.textBox4.Value = "=Fields.CustomerAccount.Credit";
     //
     // textBox5
     //
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.4895659685134888D), Telerik.Reporting.Drawing.Unit.Inch(0.21875014901161194D));
     this.textBox5.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox5.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox5.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox5.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox5.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox5.StyleName = "";
     this.textBox5.Value = "=Fields.CustomerAccount.Debit";
     //
     // CustomerBalanceInfo
     //
     this.CustomerBalanceInfo.DataSource = typeof(Customers);
     this.CustomerBalanceInfo.Name = "CustomerBalanceInfo";
     //
     // RptCustomerBalance
     //
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.detail});
     this.Name = "RptCustomerBalance";
     this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D));
     this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.Letter;
     this.Style.BackgroundColor = System.Drawing.Color.White;
     this.Width = Telerik.Reporting.Drawing.Unit.Inch(6.5D);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Beispiel #7
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(MedicineDetails_Sub));
     Telerik.Reporting.Group group1 = new Telerik.Reporting.Group();
     Telerik.Reporting.ReportParameter reportParameter1 = 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.labelsGroupFooterSection = new Telerik.Reporting.GroupFooterSection();
     this.labelsGroupHeaderSection = new Telerik.Reporting.GroupHeaderSection();
     this.srNoCaptionTextBox = new Telerik.Reporting.TextBox();
     this.medicineNameCaptionTextBox = new Telerik.Reporting.TextBox();
     this.medQtyCaptionTextBox = new Telerik.Reporting.TextBox();
     this.frequencyCaptionTextBox = new Telerik.Reporting.TextBox();
     this.treatmentCaptionTextBox = new Telerik.Reporting.TextBox();
     this.sqlDataSource1 = new Telerik.Reporting.SqlDataSource();
     this.detail = new Telerik.Reporting.DetailSection();
     this.srNoDataTextBox = new Telerik.Reporting.TextBox();
     this.medicineNameDataTextBox = new Telerik.Reporting.TextBox();
     this.medQtyDataTextBox = new Telerik.Reporting.TextBox();
     this.frequencyDataTextBox = new Telerik.Reporting.TextBox();
     this.treatmentDataTextBox = new Telerik.Reporting.TextBox();
     this.shape1 = new Telerik.Reporting.Shape();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // 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.19999997317790985D);
     this.labelsGroupHeaderSection.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.srNoCaptionTextBox,
     this.medicineNameCaptionTextBox,
     this.medQtyCaptionTextBox,
     this.frequencyCaptionTextBox,
     this.treatmentCaptionTextBox});
     this.labelsGroupHeaderSection.Name = "labelsGroupHeaderSection";
     this.labelsGroupHeaderSection.PrintOnEveryPage = true;
     this.labelsGroupHeaderSection.Style.Font.Bold = true;
     //
     // srNoCaptionTextBox
     //
     this.srNoCaptionTextBox.CanGrow = true;
     this.srNoCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.srNoCaptionTextBox.Name = "srNoCaptionTextBox";
     this.srNoCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.27916669845581055D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.srNoCaptionTextBox.Style.Font.Name = "Arial";
     this.srNoCaptionTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.srNoCaptionTextBox.StyleName = "Caption";
     this.srNoCaptionTextBox.Value = "Sr No";
     //
     // medicineNameCaptionTextBox
     //
     this.medicineNameCaptionTextBox.CanGrow = true;
     this.medicineNameCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.30000004172325134D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.medicineNameCaptionTextBox.Name = "medicineNameCaptionTextBox";
     this.medicineNameCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.5D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.medicineNameCaptionTextBox.Style.Font.Name = "Arial";
     this.medicineNameCaptionTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.medicineNameCaptionTextBox.StyleName = "Caption";
     this.medicineNameCaptionTextBox.Value = "Medicine Name";
     //
     // medQtyCaptionTextBox
     //
     this.medQtyCaptionTextBox.CanGrow = true;
     this.medQtyCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.7999999523162842D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.medQtyCaptionTextBox.Name = "medQtyCaptionTextBox";
     this.medQtyCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.30000019073486328D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.medQtyCaptionTextBox.Style.Font.Name = "Arial";
     this.medQtyCaptionTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.medQtyCaptionTextBox.StyleName = "Caption";
     this.medQtyCaptionTextBox.Value = "Qty";
     //
     // frequencyCaptionTextBox
     //
     this.frequencyCaptionTextBox.CanGrow = true;
     this.frequencyCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.0999999046325684D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.frequencyCaptionTextBox.Name = "frequencyCaptionTextBox";
     this.frequencyCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.50000029802322388D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.frequencyCaptionTextBox.Style.Font.Name = "Arial";
     this.frequencyCaptionTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.frequencyCaptionTextBox.StyleName = "Caption";
     this.frequencyCaptionTextBox.Value = "Frequency";
     //
     // treatmentCaptionTextBox
     //
     this.treatmentCaptionTextBox.CanGrow = true;
     this.treatmentCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.6000001430511475D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.treatmentCaptionTextBox.Name = "treatmentCaptionTextBox";
     this.treatmentCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.80000019073486328D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.treatmentCaptionTextBox.Style.Font.Name = "Arial";
     this.treatmentCaptionTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.treatmentCaptionTextBox.StyleName = "Caption";
     this.treatmentCaptionTextBox.Value = "Treatment";
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionString = "OnLinePrescriptionConnectionString";
     this.sqlDataSource1.Name = "sqlDataSource1";
     this.sqlDataSource1.SelectCommand = resources.GetString("sqlDataSource1.SelectCommand");
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(0.20216204226016998D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.srNoDataTextBox,
     this.medicineNameDataTextBox,
     this.medQtyDataTextBox,
     this.frequencyDataTextBox,
     this.treatmentDataTextBox,
     this.shape1});
     this.detail.Name = "detail";
     //
     // srNoDataTextBox
     //
     this.srNoDataTextBox.CanGrow = true;
     this.srNoDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.srNoDataTextBox.Name = "srNoDataTextBox";
     this.srNoDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.27916669845581055D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.srNoDataTextBox.Style.Font.Name = "Arial";
     this.srNoDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.srNoDataTextBox.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.srNoDataTextBox.StyleName = "Data";
     this.srNoDataTextBox.Value = "=Fields.SrNo";
     //
     // medicineNameDataTextBox
     //
     this.medicineNameDataTextBox.CanGrow = true;
     this.medicineNameDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.30000004172325134D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.medicineNameDataTextBox.Name = "medicineNameDataTextBox";
     this.medicineNameDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.5D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.medicineNameDataTextBox.Style.Font.Name = "Arial";
     this.medicineNameDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.medicineNameDataTextBox.StyleName = "Data";
     this.medicineNameDataTextBox.Value = "=Fields.MedicineName";
     //
     // medQtyDataTextBox
     //
     this.medQtyDataTextBox.CanGrow = true;
     this.medQtyDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.7999999523162842D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.medQtyDataTextBox.Name = "medQtyDataTextBox";
     this.medQtyDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.30000019073486328D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.medQtyDataTextBox.Style.Font.Name = "Arial";
     this.medQtyDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.medQtyDataTextBox.StyleName = "Data";
     this.medQtyDataTextBox.Value = "=Fields.MedQty";
     //
     // frequencyDataTextBox
     //
     this.frequencyDataTextBox.CanGrow = true;
     this.frequencyDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.0999999046325684D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.frequencyDataTextBox.Name = "frequencyDataTextBox";
     this.frequencyDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.50000029802322388D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.frequencyDataTextBox.Style.Font.Name = "Arial";
     this.frequencyDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.frequencyDataTextBox.StyleName = "Data";
     this.frequencyDataTextBox.Value = "=Fields.Frequency";
     //
     // treatmentDataTextBox
     //
     this.treatmentDataTextBox.CanGrow = true;
     this.treatmentDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.6000001430511475D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.treatmentDataTextBox.Name = "treatmentDataTextBox";
     this.treatmentDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.80000019073486328D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.treatmentDataTextBox.Style.Font.Name = "Arial";
     this.treatmentDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.treatmentDataTextBox.StyleName = "Data";
     this.treatmentDataTextBox.Value = "=Fields.Treatment";
     //
     // shape1
     //
     this.shape1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.15007869899272919D));
     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(3.4000003337860107D), Telerik.Reporting.Drawing.Unit.Inch(0.0520833320915699D));
     //
     // MedicineDetails_Sub
     //
     this.DataSource = this.sqlDataSource1;
     this.Filters.Add(new Telerik.Reporting.Filter("=Fields.VisitID", Telerik.Reporting.FilterOperator.Equal, "=Parameters.LinkPrmVisitID.Value"));
     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.detail});
     this.Name = "MedicineDetails_Sub";
     this.PageSettings.Landscape = false;
     this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(1D));
     this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.A4;
     reportParameter1.AllowNull = true;
     reportParameter1.Name = "LinkPrmVisitID";
     reportParameter1.Text = "Parameter1";
     this.ReportParameters.Add(reportParameter1);
     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.FromArgb(((int)(((byte)(214)))), ((int)(((byte)(97)))), ((int)(((byte)(74)))));
     styleRule1.Style.Font.Name = "Georgia";
     styleRule1.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(18D);
     styleRule2.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
     new Telerik.Reporting.Drawing.StyleSelector("Caption")});
     styleRule2.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(174)))), ((int)(((byte)(173)))));
     styleRule2.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(115)))), ((int)(((byte)(168)))), ((int)(((byte)(212)))));
     styleRule2.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Dotted;
     styleRule2.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     styleRule2.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(238)))), ((int)(((byte)(243)))));
     styleRule2.Style.Font.Name = "Georgia";
     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 = "Georgia";
     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 = "Georgia";
     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(3.4000003337860107D);
     ((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()
 {
     this.detail = new Telerik.Reporting.DetailSection();
     this.textBox1 = new Telerik.Reporting.TextBox();
     this.SupplierName = 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.paidAmount = new Telerik.Reporting.TextBox();
     this.SUpplierPaymentInfo = new Telerik.Reporting.ObjectDataSource();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(2.4000003337860107D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.textBox1,
     this.SupplierName,
     this.textBox2,
     this.textBox3,
     this.textBox4,
     this.textBox5,
     this.textBox6,
     this.textBox7,
     this.textBox8,
     this.textBox9,
     this.textBox10,
     this.paidAmount});
     this.detail.Name = "detail";
     //
     // textBox1
     //
     this.textBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.98000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(0.099999986588954926D));
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.51999998092651367D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox1.Value = "Name :";
     //
     // SupplierName
     //
     this.SupplierName.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.5000787973403931D), Telerik.Reporting.Drawing.Unit.Inch(0.099999986588954926D));
     this.SupplierName.Name = "SupplierName";
     this.SupplierName.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.3999216556549072D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.SupplierName.Value = "Name :";
     //
     // textBox2
     //
     this.textBox2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.39000001549720764D), Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D));
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1100000143051148D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox2.Value = "Invoice Number :";
     //
     // textBox3
     //
     this.textBox3.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.5000787973403931D), Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D));
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.3999214172363281D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox3.Value = "=Fields.InvoiceNumber";
     //
     // textBox4
     //
     this.textBox4.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.1599998474121094D), Telerik.Reporting.Drawing.Unit.Inch(1.3999999761581421D));
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.34000000357627869D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox4.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox4.Value = "Bill :";
     //
     // textBox5
     //
     this.textBox5.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.5001577138900757D), Telerik.Reporting.Drawing.Unit.Inch(1.3999999761581421D));
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.3998429775238037D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox5.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox5.Value = "=Fields.TotalAmount";
     //
     // textBox6
     //
     this.textBox6.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.73999983072280884D), Telerik.Reporting.Drawing.Unit.Inch(1.6999999284744263D));
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.75999999046325684D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox6.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox6.Value = "Total Paid :";
     //
     // textBox7
     //
     this.textBox7.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.5001577138900757D), Telerik.Reporting.Drawing.Unit.Inch(1.6999999284744263D));
     this.textBox7.Name = "textBox7";
     this.textBox7.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.3998425006866455D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox7.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox7.Value = "=Fields.PaidAmount";
     //
     // textBox8
     //
     this.textBox8.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.5001577138900757D), Telerik.Reporting.Drawing.Unit.Inch(2D));
     this.textBox8.Name = "textBox8";
     this.textBox8.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.3998429775238037D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox8.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox8.Value = "=Fields.DueAmount";
     //
     // textBox9
     //
     this.textBox9.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.79999971389770508D), Telerik.Reporting.Drawing.Unit.Inch(2D));
     this.textBox9.Name = "textBox9";
     this.textBox9.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.70000028610229492D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox9.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox9.Value = "Total Due:";
     //
     // textBox10
     //
     this.textBox10.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.56000000238418579D), Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D));
     this.textBox10.Name = "textBox10";
     this.textBox10.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.93999999761581421D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox10.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox10.Value = "Paid Amount :";
     //
     // paidAmount
     //
     this.paidAmount.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.5000787973403931D), Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D));
     this.paidAmount.Name = "paidAmount";
     this.paidAmount.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.3999214172363281D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.paidAmount.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.paidAmount.Value = "";
     //
     // SUpplierPaymentInfo
     //
     this.SUpplierPaymentInfo.DataSource = typeof(Transaction);
     this.SUpplierPaymentInfo.Name = "SUpplierPaymentInfo";
     //
     // RptSupplierPayment
     //
     this.DataSource = this.SUpplierPaymentInfo;
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.detail});
     this.Name = "RptSupplierPayment";
     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;
     this.Width = Telerik.Reporting.Drawing.Unit.Inch(6D);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Beispiel #9
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(Investigations_Sub));
     Telerik.Reporting.Group group1 = new Telerik.Reporting.Group();
     Telerik.Reporting.ReportParameter reportParameter1 = 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.labelsGroupFooterSection = new Telerik.Reporting.GroupFooterSection();
     this.labelsGroupHeaderSection = new Telerik.Reporting.GroupHeaderSection();
     this.srNoCaptionTextBox = new Telerik.Reporting.TextBox();
     this.investigationCaptionTextBox = new Telerik.Reporting.TextBox();
     this.sqlDataSource1 = new Telerik.Reporting.SqlDataSource();
     this.reportHeader = new Telerik.Reporting.ReportHeaderSection();
     this.titleTextBox = new Telerik.Reporting.TextBox();
     this.detail = new Telerik.Reporting.DetailSection();
     this.srNoDataTextBox = new Telerik.Reporting.TextBox();
     this.investigationDataTextBox = new Telerik.Reporting.TextBox();
     this.shape1 = new Telerik.Reporting.Shape();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // 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.19999997317790985D);
     this.labelsGroupHeaderSection.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.srNoCaptionTextBox,
     this.investigationCaptionTextBox});
     this.labelsGroupHeaderSection.Name = "labelsGroupHeaderSection";
     this.labelsGroupHeaderSection.PrintOnEveryPage = true;
     //
     // srNoCaptionTextBox
     //
     this.srNoCaptionTextBox.CanGrow = true;
     this.srNoCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.srNoCaptionTextBox.Name = "srNoCaptionTextBox";
     this.srNoCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.27916669845581055D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.srNoCaptionTextBox.Style.Font.Bold = true;
     this.srNoCaptionTextBox.Style.Font.Name = "Arial";
     this.srNoCaptionTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.srNoCaptionTextBox.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.srNoCaptionTextBox.StyleName = "Caption";
     this.srNoCaptionTextBox.Value = "Sr No";
     //
     // investigationCaptionTextBox
     //
     this.investigationCaptionTextBox.CanGrow = true;
     this.investigationCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.30000004172325134D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.investigationCaptionTextBox.Name = "investigationCaptionTextBox";
     this.investigationCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.1000001430511475D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.investigationCaptionTextBox.Style.Font.Bold = true;
     this.investigationCaptionTextBox.Style.Font.Name = "Arial";
     this.investigationCaptionTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.investigationCaptionTextBox.StyleName = "Caption";
     this.investigationCaptionTextBox.Value = "Investigation";
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionString = "OnLinePrescriptionConnectionString";
     this.sqlDataSource1.Name = "sqlDataSource1";
     this.sqlDataSource1.SelectCommand = resources.GetString("sqlDataSource1.SelectCommand");
     //
     // reportHeader
     //
     this.reportHeader.Height = Telerik.Reporting.Drawing.Unit.Inch(0.20000001788139343D);
     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(2.1000001430511475D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.titleTextBox.Style.Color = System.Drawing.Color.Black;
     this.titleTextBox.Style.Font.Name = "Arial";
     this.titleTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(10D);
     this.titleTextBox.StyleName = "Title";
     this.titleTextBox.Value = "Investigations";
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(0.20216202735900879D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.srNoDataTextBox,
     this.investigationDataTextBox,
     this.shape1});
     this.detail.Name = "detail";
     //
     // srNoDataTextBox
     //
     this.srNoDataTextBox.CanGrow = true;
     this.srNoDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.srNoDataTextBox.Name = "srNoDataTextBox";
     this.srNoDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.27916669845581055D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.srNoDataTextBox.Style.Font.Name = "Arial";
     this.srNoDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.srNoDataTextBox.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.srNoDataTextBox.StyleName = "Data";
     this.srNoDataTextBox.Value = "=Fields.SrNo";
     //
     // investigationDataTextBox
     //
     this.investigationDataTextBox.CanGrow = true;
     this.investigationDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.30000004172325134D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.investigationDataTextBox.Name = "investigationDataTextBox";
     this.investigationDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.1000001430511475D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.investigationDataTextBox.Style.Font.Name = "Arial";
     this.investigationDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.investigationDataTextBox.StyleName = "Data";
     this.investigationDataTextBox.Value = "=Fields.Investigation";
     //
     // shape1
     //
     this.shape1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.15007869899272919D));
     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(2.4000003337860107D), Telerik.Reporting.Drawing.Unit.Inch(0.0520833320915699D));
     //
     // Investigations_Sub
     //
     this.DataSource = this.sqlDataSource1;
     this.Filters.Add(new Telerik.Reporting.Filter("=Fields.VisitID", Telerik.Reporting.FilterOperator.Equal, "=Parameters.LinkPrmVisitID.Value"));
     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.reportHeader,
     this.detail});
     this.Name = "Investigations_Sub";
     this.PageSettings.Landscape = false;
     this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(1D));
     this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.B4;
     reportParameter1.AllowNull = true;
     reportParameter1.Name = "LinkPrmVisitID";
     reportParameter1.Text = "Parameter1";
     this.ReportParameters.Add(reportParameter1);
     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.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(34)))), ((int)(((byte)(77)))));
     styleRule1.Style.Font.Name = "Calibri";
     styleRule1.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(18D);
     styleRule2.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
     new Telerik.Reporting.Drawing.StyleSelector("Caption")});
     styleRule2.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(121)))), ((int)(((byte)(167)))), ((int)(((byte)(227)))));
     styleRule2.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(34)))), ((int)(((byte)(77)))));
     styleRule2.Style.Font.Name = "Calibri";
     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.Color = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(34)))), ((int)(((byte)(77)))));
     styleRule3.Style.Font.Name = "Calibri";
     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.Color = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(34)))), ((int)(((byte)(77)))));
     styleRule4.Style.Font.Name = "Calibri";
     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(2.4000003337860107D);
     ((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.TableGroup tableGroup3 = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup4 = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup5 = new Telerik.Reporting.TableGroup();
     this.textBox9 = new Telerik.Reporting.TextBox();
     this.textBox1 = new Telerik.Reporting.TextBox();
     this.textBox2 = new Telerik.Reporting.TextBox();
     this.textBox3 = new Telerik.Reporting.TextBox();
     this.detail = new Telerik.Reporting.DetailSection();
     this.table1 = new Telerik.Reporting.Table();
     this.textBox7 = new Telerik.Reporting.TextBox();
     this.textBox5 = new Telerik.Reporting.TextBox();
     this.textBox4 = new Telerik.Reporting.TextBox();
     this.textBox6 = new Telerik.Reporting.TextBox();
     this.CustomerLedgerInformation = new Telerik.Reporting.ObjectDataSource();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // textBox9
     //
     this.textBox9.Name = "textBox9";
     this.textBox9.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1458139419555664D), Telerik.Reporting.Drawing.Unit.Inch(0.19791662693023682D));
     this.textBox9.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.textBox9.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox9.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox9.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox9.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox9.StyleName = "";
     this.textBox9.Value = "Date";
     //
     // textBox1
     //
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.0728974342346191D), Telerik.Reporting.Drawing.Unit.Inch(0.19791662693023682D));
     this.textBox1.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.textBox1.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox1.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox1.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox1.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox1.StyleName = "";
     this.textBox1.Value = "Particulars";
     //
     // textBox2
     //
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6249804496765137D), Telerik.Reporting.Drawing.Unit.Inch(0.19791662693023682D));
     this.textBox2.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.textBox2.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox2.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox2.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox2.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox2.StyleName = "";
     this.textBox2.Value = "Payment Amount";
     //
     // textBox3
     //
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6249804496765137D), Telerik.Reporting.Drawing.Unit.Inch(0.19791662693023682D));
     this.textBox3.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.textBox3.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox3.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox3.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox3.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox3.StyleName = "";
     this.textBox3.Value = "Receive Amount";
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(0.3999999463558197D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.table1});
     this.detail.Name = "detail";
     //
     // table1
     //
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(1.1458139419555664D)));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(2.0728974342346191D)));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(1.6249803304672241D)));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(1.6249803304672241D)));
     this.table1.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(Telerik.Reporting.Drawing.Unit.Inch(0.19791682064533234D)));
     this.table1.Body.SetCellContent(0, 0, this.textBox7);
     this.table1.Body.SetCellContent(0, 1, this.textBox5);
     this.table1.Body.SetCellContent(0, 2, this.textBox4);
     this.table1.Body.SetCellContent(0, 3, this.textBox6);
     tableGroup1.ReportItem = this.textBox9;
     tableGroup2.ReportItem = this.textBox1;
     tableGroup3.ReportItem = this.textBox2;
     tableGroup4.Name = "Group1";
     tableGroup4.ReportItem = this.textBox3;
     this.table1.ColumnGroups.Add(tableGroup1);
     this.table1.ColumnGroups.Add(tableGroup2);
     this.table1.ColumnGroups.Add(tableGroup3);
     this.table1.ColumnGroups.Add(tableGroup4);
     this.table1.DataSource = this.CustomerLedgerInformation;
     this.table1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.textBox7,
     this.textBox5,
     this.textBox4,
     this.textBox6,
     this.textBox9,
     this.textBox1,
     this.textBox2,
     this.textBox3});
     this.table1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D), Telerik.Reporting.Drawing.Unit.Inch(3.9339065551757812E-05D));
     this.table1.Name = "table1";
     tableGroup5.Groupings.Add(new Telerik.Reporting.Grouping(null));
     tableGroup5.Name = "DetailGroup";
     this.table1.RowGroups.Add(tableGroup5);
     this.table1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.4686717987060547D), Telerik.Reporting.Drawing.Unit.Inch(0.39583346247673035D));
     //
     // textBox7
     //
     this.textBox7.Format = "{0:d}";
     this.textBox7.Name = "textBox7";
     this.textBox7.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1458139419555664D), Telerik.Reporting.Drawing.Unit.Inch(0.19791682064533234D));
     this.textBox7.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox7.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox7.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox7.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox7.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox7.StyleName = "";
     this.textBox7.Value = "=Fields.EntityDate";
     //
     // textBox5
     //
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.0728974342346191D), Telerik.Reporting.Drawing.Unit.Inch(0.19791682064533234D));
     this.textBox5.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox5.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox5.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox5.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox5.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox5.StyleName = "";
     this.textBox5.Value = "=Fields.Particulars";
     //
     // textBox4
     //
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6249804496765137D), Telerik.Reporting.Drawing.Unit.Inch(0.19791682064533234D));
     this.textBox4.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox4.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox4.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox4.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox4.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox4.StyleName = "";
     this.textBox4.Value = "=Fields.Debit";
     //
     // textBox6
     //
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6249804496765137D), Telerik.Reporting.Drawing.Unit.Inch(0.19791682064533234D));
     this.textBox6.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox6.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox6.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox6.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox6.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox6.StyleName = "";
     this.textBox6.Value = "=Fields.Credit";
     //
     // CustomerLedgerInformation
     //
     this.CustomerLedgerInformation.DataSource = typeof(CustomerLedger);
     this.CustomerLedgerInformation.Name = "CustomerLedgerInformation";
     //
     // RptCutomerLedger
     //
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.detail});
     this.Name = "RptCutomerLedger";
     this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D));
     this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.Letter;
     this.Style.BackgroundColor = System.Drawing.Color.White;
     this.Width = Telerik.Reporting.Drawing.Unit.Inch(6.5D);
     ((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.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.ReportParameter reportParameter10 = new Telerik.Reporting.ReportParameter();
     this.pageHeader = new Telerik.Reporting.PageHeaderSection();
     this.textBox37 = new Telerik.Reporting.TextBox();
     this.textBox36 = new Telerik.Reporting.TextBox();
     this.textBox35 = new Telerik.Reporting.TextBox();
     this.textBox31 = new Telerik.Reporting.TextBox();
     this.textBox30 = new Telerik.Reporting.TextBox();
     this.textBox29 = new Telerik.Reporting.TextBox();
     this.textBox28 = new Telerik.Reporting.TextBox();
     this.textBox27 = new Telerik.Reporting.TextBox();
     this.textBox34 = new Telerik.Reporting.TextBox();
     this.textBox33 = new Telerik.Reporting.TextBox();
     this.textBox32 = new Telerik.Reporting.TextBox();
     this.textBox55 = new Telerik.Reporting.TextBox();
     this.textBox54 = new Telerik.Reporting.TextBox();
     this.textBox51 = new Telerik.Reporting.TextBox();
     this.textBox43 = new Telerik.Reporting.TextBox();
     this.detail = new Telerik.Reporting.DetailSection();
     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.sqlDataAdapter1 = new System.Data.SqlClient.SqlDataAdapter();
     this.sqlSelectCommand1 = new System.Data.SqlClient.SqlCommand();
     this.sqlConnection2 = new System.Data.SqlClient.SqlConnection();
     this.sqlConnection1 = new System.Data.SqlClient.SqlConnection();
     this.reportFooterSection1 = new Telerik.Reporting.ReportFooterSection();
     this.textBox9 = new Telerik.Reporting.TextBox();
     this.textBox10 = new Telerik.Reporting.TextBox();
     this.textBox11 = new Telerik.Reporting.TextBox();
     this.textBox12 = new Telerik.Reporting.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // pageHeader
     //
     this.pageHeader.Height = new Telerik.Reporting.Drawing.Unit(3.4999997615814209D, Telerik.Reporting.Drawing.UnitType.Cm);
     this.pageHeader.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.textBox37,
     this.textBox36,
     this.textBox35,
     this.textBox31,
     this.textBox30,
     this.textBox29,
     this.textBox28,
     this.textBox27,
     this.textBox34,
     this.textBox33,
     this.textBox32,
     this.textBox55,
     this.textBox54,
     this.textBox51,
     this.textBox43});
     this.pageHeader.Name = "pageHeader";
     //
     // textBox37
     //
     this.textBox37.Format = "{0:d}";
     this.textBox37.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(2.4000000953674316D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(1.7579324245452881D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox37.Name = "textBox37";
     this.textBox37.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(4.5262045860290527D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.57896620035171509D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox37.Style.Font.Name = "Verdana";
     this.textBox37.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(10D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox37.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
     this.textBox37.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox37.Value = "= Parameters.Fecha";
     //
     // textBox36
     //
     this.textBox36.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(2.4000000953674316D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(1.1789662837982178D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox36.Name = "textBox36";
     this.textBox36.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(4.5347456932067871D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.57896620035171509D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox36.Style.Font.Name = "Verdana";
     this.textBox36.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(10D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox36.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
     this.textBox36.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox36.Value = "= Parameters.Tipo";
     //
     // textBox35
     //
     this.textBox35.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(2.4000000953674316D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.60000008344650269D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox35.Name = "textBox35";
     this.textBox35.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(4.7006397247314453D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.57896620035171509D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox35.Style.Font.Name = "Verdana";
     this.textBox35.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(10D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox35.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
     this.textBox35.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox35.Value = "= IsNull(Parameters.[Id_Prd], \"(Todos)\")";
     //
     // textBox31
     //
     this.textBox31.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(0.19229142367839813D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(1.7579324245452881D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox31.Name = "textBox31";
     this.textBox31.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(2.203125D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.57896620035171509D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox31.Style.Font.Bold = true;
     this.textBox31.Style.Font.Name = "Verdana";
     this.textBox31.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(10D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox31.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox31.Value = "Fecha:";
     //
     // textBox30
     //
     this.textBox30.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(0.19229142367839813D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.60000008344650269D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox30.Name = "textBox30";
     this.textBox30.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(2.203125D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.57896620035171509D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox30.Style.Font.Bold = true;
     this.textBox30.Style.Font.Name = "Verdana";
     this.textBox30.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(10D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox30.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox30.Value = "Producto:";
     //
     // textBox29
     //
     this.textBox29.Format = "{0:g}";
     this.textBox29.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(15.200000762939453D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(1.747083306312561D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox29.Name = "textBox29";
     this.textBox29.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(5.1899995803833008D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.60000008344650269D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox29.Style.Font.Name = "Verdana";
     this.textBox29.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(10D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox29.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox29.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox29.Value = "= Parameters.FechaActual";
     //
     // textBox28
     //
     this.textBox28.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(15.200000762939453D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(1.1470834016799927D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox28.Name = "textBox28";
     this.textBox28.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(5.1899995803833008D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.59999990463256836D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox28.Style.Font.Name = "Verdana";
     this.textBox28.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(10D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox28.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox28.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox28.Value = "= \"Usuario: \" + Parameters.Usuario";
     //
     // textBox27
     //
     this.textBox27.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(0.19229142367839813D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(1.1789662837982178D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox27.Name = "textBox27";
     this.textBox27.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(2.203125D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.57896620035171509D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox27.Style.Font.Bold = true;
     this.textBox27.Style.Font.Name = "Verdana";
     this.textBox27.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(10D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox27.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox27.Value = "Tipo:";
     //
     // textBox34
     //
     this.textBox34.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(7.5370287895202637D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.54708343744277954D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox34.Name = "textBox34";
     this.textBox34.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(5.5159416198730469D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.60000002384185791D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox34.Style.Font.Bold = true;
     this.textBox34.Style.Font.Name = "Verdana";
     this.textBox34.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(12D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox34.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox34.Value = "= Parameters.NombreEmpresa";
     //
     // textBox33
     //
     this.textBox33.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(7.5370283126831055D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(1.1556251049041748D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox33.Name = "textBox33";
     this.textBox33.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(5.5159420967102051D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.60000008344650269D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox33.Style.Font.Bold = true;
     this.textBox33.Style.Font.Name = "Verdana";
     this.textBox33.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(12D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox33.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox33.Value = "= Parameters.NombreSucursal";
     //
     // textBox32
     //
     this.textBox32.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(6.9264044761657715D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(1.7641667127609253D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox32.Name = "textBox32";
     this.textBox32.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(6.7371902465820312D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.59999990463256836D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox32.Style.Font.Bold = true;
     this.textBox32.Style.Font.Name = "Verdana";
     this.textBox32.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(12D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox32.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox32.Value = "Rotación de inventarios";
     //
     // textBox55
     //
     this.textBox55.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(11.60333251953125D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(3D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox55.Name = "textBox55";
     this.textBox55.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(3.8999991416931152D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.49989971518516541D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox55.Style.Font.Name = "Verdana";
     this.textBox55.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox55.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox55.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox55.Value = "Rotación días";
     //
     // textBox54
     //
     this.textBox54.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(7.7033329010009766D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(3D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox54.Name = "textBox54";
     this.textBox54.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(3.8999991416931152D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.49989971518516541D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox54.Style.Font.Name = "Verdana";
     this.textBox54.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox54.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox54.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox54.Value = "Venta diaria";
     //
     // textBox51
     //
     this.textBox51.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(3.8033335208892822D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(3D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox51.Name = "textBox51";
     this.textBox51.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(3.8999991416931152D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.49989971518516541D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox51.Style.Font.Name = "Verdana";
     this.textBox51.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox51.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox51.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox51.Value = "Inventario";
     //
     // textBox43
     //
     this.textBox43.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(16.690097808837891D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.54688358306884766D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox43.Name = "textBox43";
     this.textBox43.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(3.6999015808105469D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.60000008344650269D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox43.Style.Font.Name = "Verdana";
     this.textBox43.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(7D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox43.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox43.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox43.Value = "= \"Página \" + PageNumber + \" de \" + PageCount";
     //
     // detail
     //
     this.detail.Height = new Telerik.Reporting.Drawing.Unit(1.2002004384994507D, Telerik.Reporting.Drawing.UnitType.Cm);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.textBox1,
     this.textBox2,
     this.textBox3,
     this.textBox4,
     this.textBox5,
     this.textBox6,
     this.textBox7,
     this.textBox8});
     this.detail.Name = "detail";
     //
     // textBox1
     //
     this.textBox1.Format = "{0:N2}";
     this.textBox1.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(3.7993674278259277D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(3.8999991416931152D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.60000002384185791D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox1.Style.Font.Name = "Verdana";
     this.textBox1.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox1.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox1.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox1.Value = "= Fields.Producto_Inventario";
     //
     // textBox2
     //
     this.textBox2.Format = "{0:N2}";
     this.textBox2.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(7.699366569519043D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(3.8999991416931152D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.60000002384185791D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox2.Style.Font.Name = "Verdana";
     this.textBox2.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox2.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox2.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox2.Value = "= Fields.Producto_Venta";
     //
     // textBox3
     //
     this.textBox3.Format = "{0:N2}";
     this.textBox3.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(11.599366188049316D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(3.8999991416931152D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.60000002384185791D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox3.Style.Font.Name = "Verdana";
     this.textBox3.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox3.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox3.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox3.Value = "= Fields.Producto_Rotacion";
     //
     // textBox4
     //
     this.textBox4.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(0.19229142367839813D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(3.50770902633667D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.60000008344650269D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox4.Style.Font.Bold = true;
     this.textBox4.Style.Font.Name = "Verdana";
     this.textBox4.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox4.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox4.Value = "Producto:";
     //
     // textBox5
     //
     this.textBox5.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(0.19229142367839813D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.600200355052948D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(3.50770902633667D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.60000008344650269D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox5.Style.Font.Bold = true;
     this.textBox5.Style.Font.Name = "Verdana";
     this.textBox5.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox5.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox5.Value = "Sistema propietario:";
     //
     // textBox6
     //
     this.textBox6.Format = "{0:N2}";
     this.textBox6.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(7.6930937767028809D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.600200355052948D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(3.8999991416931152D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.60000002384185791D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox6.Style.Font.Name = "Verdana";
     this.textBox6.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox6.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox6.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox6.Value = "= Fields.SisP_Venta";
     //
     // textBox7
     //
     this.textBox7.Format = "{0:N2}";
     this.textBox7.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(3.7930943965911865D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.600200355052948D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox7.Name = "textBox7";
     this.textBox7.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(3.8999991416931152D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.60000002384185791D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox7.Style.Font.Name = "Verdana";
     this.textBox7.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox7.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox7.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox7.Value = "= Fields.SisP_Inventario";
     //
     // textBox8
     //
     this.textBox8.Format = "{0:N2}";
     this.textBox8.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(11.593092918395996D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.600200355052948D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox8.Name = "textBox8";
     this.textBox8.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(3.8999991416931152D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.60000002384185791D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox8.Style.Font.Name = "Verdana";
     this.textBox8.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox8.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox8.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox8.Value = "= Fields.SisP_Rotacion";
     //
     // sqlDataAdapter1
     //
     this.sqlDataAdapter1.SelectCommand = this.sqlSelectCommand1;
     this.sqlDataAdapter1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
     new System.Data.Common.DataTableMapping("Table", "spRepRotacionInv_formato1", new System.Data.Common.DataColumnMapping[] {
                 new System.Data.Common.DataColumnMapping("Producto_Inventario", "Producto_Inventario"),
                 new System.Data.Common.DataColumnMapping("Producto_Venta", "Producto_Venta"),
                 new System.Data.Common.DataColumnMapping("Producto_Rotacion", "Producto_Rotacion"),
                 new System.Data.Common.DataColumnMapping("SisP_Inventario", "SisP_Inventario"),
                 new System.Data.Common.DataColumnMapping("SisP_Venta", "SisP_Venta"),
                 new System.Data.Common.DataColumnMapping("SisP_Rotacion", "SisP_Rotacion")})});
     //
     // sqlSelectCommand1
     //
     this.sqlSelectCommand1.CommandText = "dbo.spRepRotacionInv_formato1";
     this.sqlSelectCommand1.CommandTimeout = 600;
     this.sqlSelectCommand1.CommandType = System.Data.CommandType.StoredProcedure;
     this.sqlSelectCommand1.Connection = this.sqlConnection2;
     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("@Id_Emp", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "", System.Data.DataRowVersion.Current, ""),
     new System.Data.SqlClient.SqlParameter("@Id_Cd", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "", System.Data.DataRowVersion.Current, ""),
     new System.Data.SqlClient.SqlParameter("@Fecha", System.Data.SqlDbType.DateTime, 8, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "", System.Data.DataRowVersion.Current, ""),
     new System.Data.SqlClient.SqlParameter("@Id_PrdStr", System.Data.SqlDbType.NVarChar, 2147483647, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "", System.Data.DataRowVersion.Current, "")});
     //
     // sqlConnection2
     //
     this.sqlConnection2.FireInfoMessageEventOnUserErrors = false;
     //
     // sqlConnection1
     //
     this.sqlConnection1.ConnectionString = "Data Source=EGBKSVR;Initial Catalog=SIANWEBPruebas;Persist Security Info=True;Use" +
         "r ID=sa;Password=sistemas";
     this.sqlConnection1.FireInfoMessageEventOnUserErrors = false;
     //
     // reportFooterSection1
     //
     this.reportFooterSection1.Height = new Telerik.Reporting.Drawing.Unit(0.9999995231628418D, Telerik.Reporting.Drawing.UnitType.Cm);
     this.reportFooterSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.textBox9,
     this.textBox10,
     this.textBox11,
     this.textBox12});
     this.reportFooterSection1.Name = "reportFooterSection1";
     //
     // textBox9
     //
     this.textBox9.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(0.19229142367839813D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.19999989867210388D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox9.Name = "textBox9";
     this.textBox9.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(3.50770902633667D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.60000008344650269D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox9.Style.Font.Bold = true;
     this.textBox9.Style.Font.Name = "Verdana";
     this.textBox9.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox9.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox9.Value = "Inventario final:";
     //
     // textBox10
     //
     this.textBox10.Format = "{0:N2}";
     this.textBox10.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(3.8033335208892822D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.19999989867210388D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox10.Name = "textBox10";
     this.textBox10.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(3.8897600173950195D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.60000002384185791D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox10.Style.Font.Name = "Verdana";
     this.textBox10.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox10.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox10.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox10.Value = "=Producto_Inventario+SisP_Inventario";
     //
     // textBox11
     //
     this.textBox11.Format = "{0:N2}";
     this.textBox11.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(7.6930937767028809D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.19999989867210388D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox11.Name = "textBox11";
     this.textBox11.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(3.8897600173950195D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.60000002384185791D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox11.Style.Font.Name = "Verdana";
     this.textBox11.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox11.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox11.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox11.Value = "=Producto_Venta+ SisP_Venta";
     //
     // textBox12
     //
     this.textBox12.Format = "{0:N2}";
     this.textBox12.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(11.582853317260742D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.19999989867210388D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox12.Name = "textBox12";
     this.textBox12.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(3.8897600173950195D, Telerik.Reporting.Drawing.UnitType.Cm), new Telerik.Reporting.Drawing.Unit(0.60000002384185791D, Telerik.Reporting.Drawing.UnitType.Cm));
     this.textBox12.Style.Font.Name = "Verdana";
     this.textBox12.Style.Font.Size = new Telerik.Reporting.Drawing.Unit(8D, Telerik.Reporting.Drawing.UnitType.Point);
     this.textBox12.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox12.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox12.Value = "=IIf((Fields.Producto_Venta + Fields.SisP_Venta) <> 0, (Fields.Producto_Inventari" +
         "o + Fields.SisP_Inventario) / (Fields.Producto_Venta + Fields.SisP_Venta), 0)";
     //
     // Rep_InvRotacion
     //
     this.DataSource = this.sqlDataAdapter1;
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.pageHeader,
     this.detail,
     this.reportFooterSection1});
     this.PageSettings.Landscape = false;
     this.PageSettings.Margins.Bottom = new Telerik.Reporting.Drawing.Unit(0.5D, Telerik.Reporting.Drawing.UnitType.Cm);
     this.PageSettings.Margins.Left = new Telerik.Reporting.Drawing.Unit(0.5D, Telerik.Reporting.Drawing.UnitType.Cm);
     this.PageSettings.Margins.Right = new Telerik.Reporting.Drawing.Unit(0.5D, Telerik.Reporting.Drawing.UnitType.Cm);
     this.PageSettings.Margins.Top = new Telerik.Reporting.Drawing.Unit(0.5D, Telerik.Reporting.Drawing.UnitType.Cm);
     this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.Letter;
     reportParameter1.Name = "Conexion";
     reportParameter2.Name = "Id_Emp";
     reportParameter3.Name = "Id_Cd";
     reportParameter4.Name = "Id_Prd";
     reportParameter5.Name = "Tipo";
     reportParameter6.Name = "Fecha";
     reportParameter7.Name = "Usuario";
     reportParameter8.Name = "NombreEmpresa";
     reportParameter9.Name = "NombreSucursal";
     reportParameter10.Name = "FechaActual";
     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.ReportParameters.Add(reportParameter10);
     this.Style.BackgroundColor = System.Drawing.Color.White;
     this.Width = new Telerik.Reporting.Drawing.Unit(20.589998245239258D, Telerik.Reporting.Drawing.UnitType.Cm);
     this.NeedDataSource += new System.EventHandler(this.Rep_InvRotacion_NeedDataSource);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Beispiel #12
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()
 {
     this.pageHeaderSection1 = new Telerik.Reporting.PageHeaderSection();
     this.detail = new Telerik.Reporting.DetailSection();
     this.ReportHoster = new Telerik.Reporting.SubReport();
     this.pageFooterSection1 = new Telerik.Reporting.PageFooterSection();
     this.ReportHeaderInformation = new Telerik.Reporting.ObjectDataSource();
     this.reportHeaderSection1 = new Telerik.Reporting.ReportHeaderSection();
     this.textBox6 = new Telerik.Reporting.TextBox();
     this.TextReportTitle = new Telerik.Reporting.TextBox();
     this.textBox4 = new Telerik.Reporting.TextBox();
     this.textBox3 = new Telerik.Reporting.TextBox();
     this.pictureBox1 = new Telerik.Reporting.PictureBox();
     this.textBox2 = new Telerik.Reporting.TextBox();
     this.textBox1 = new Telerik.Reporting.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // pageHeaderSection1
     //
     this.pageHeaderSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(0.0520833320915699D);
     this.pageHeaderSection1.Name = "pageHeaderSection1";
     this.pageHeaderSection1.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.pageHeaderSection1.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(2D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.ReportHoster});
     this.detail.Name = "detail";
     //
     // ReportHoster
     //
     this.ReportHoster.Docking = Telerik.Reporting.DockingStyle.Fill;
     this.ReportHoster.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D));
     this.ReportHoster.Name = "ReportHoster";
     this.ReportHoster.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(5.9999604225158691D), Telerik.Reporting.Drawing.Unit.Inch(1.9999212026596069D));
     //
     // pageFooterSection1
     //
     this.pageFooterSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(0.0520833320915699D);
     this.pageFooterSection1.Name = "pageFooterSection1";
     //
     // ReportHeaderInformation
     //
     this.ReportHeaderInformation.DataSource = typeof(CompanyInformation);
     this.ReportHeaderInformation.Name = "ReportHeaderInformation";
     //
     // reportHeaderSection1
     //
     this.reportHeaderSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(2D);
     this.reportHeaderSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.textBox6,
     this.TextReportTitle,
     this.textBox4,
     this.textBox3,
     this.pictureBox1,
     this.textBox2,
     this.textBox1});
     this.reportHeaderSection1.Name = "reportHeaderSection1";
     this.reportHeaderSection1.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
     //
     // textBox6
     //
     this.textBox6.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.2000002861022949D), Telerik.Reporting.Drawing.Unit.Inch(1.8000000715255737D));
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.799960732460022D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox6.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox6.Value = "= Now()";
     //
     // TextReportTitle
     //
     this.TextReportTitle.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(1.5D));
     this.TextReportTitle.Name = "TextReportTitle";
     this.TextReportTitle.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.5D), Telerik.Reporting.Drawing.Unit.Inch(0.30000004172325134D));
     this.TextReportTitle.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.TextReportTitle.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(15D);
     this.TextReportTitle.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.TextReportTitle.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.TextReportTitle.Value = "";
     //
     // textBox4
     //
     this.textBox4.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(1D));
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.5000002384185791D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox4.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox4.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox4.Value = "=Fields.Email";
     //
     // textBox3
     //
     this.textBox3.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.70000004768371582D));
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.5000002384185791D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox3.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox3.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox3.Value = "=Fields.ContractDetails";
     //
     // pictureBox1
     //
     this.pictureBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D), Telerik.Reporting.Drawing.Unit.Inch(0.40007877349853516D));
     this.pictureBox1.MimeType = "";
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D));
     this.pictureBox1.Sizing = Telerik.Reporting.Drawing.ImageSizeMode.Stretch;
     this.pictureBox1.Value = "=Fields.Logo";
     //
     // textBox2
     //
     this.textBox2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.40007877349853516D));
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.5D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox2.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox2.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox2.Value = "=Fields.Address";
     //
     // textBox1
     //
     this.textBox1.Docking = Telerik.Reporting.DockingStyle.Top;
     this.textBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.textBox1.Multiline = false;
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6D), Telerik.Reporting.Drawing.Unit.Inch(0.40000000596046448D));
     this.textBox1.Style.Color = System.Drawing.Color.MidnightBlue;
     this.textBox1.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(20D);
     this.textBox1.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox1.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     this.textBox1.Value = "=Fields.CompaneyName";
     //
     // MainReport
     //
     this.DataSource = this.ReportHeaderInformation;
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.pageHeaderSection1,
     this.detail,
     this.pageFooterSection1,
     this.reportHeaderSection1});
     this.Name = "MainReport";
     this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D));
     this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.Letter;
     this.Style.BackgroundColor = System.Drawing.Color.White;
     this.Width = Telerik.Reporting.Drawing.Unit.Inch(6D);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Beispiel #14
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();
 }
        private void frmReports_Load(object sender, EventArgs e)
        {

            buttonClose.Left = this.Width - buttonClose.Width;
            
            switch (_reports.WhichReport)
            {
                case 1:

                    try
                    {
                        string[] sdelimStr = null;
                        string delimStr = " ";
                        char[] delimiter = delimStr.ToCharArray();
                        WaldenReports.FaxConfirmation
                            report1 = new WaldenReports.FaxConfirmation();
                        Telerik.Reporting.TextBox _date = new Telerik.Reporting.TextBox();
                        Telerik.Reporting.TextBox _tDate = new Telerik.Reporting.TextBox();
                        Telerik.Reporting.TextBox _time = new Telerik.Reporting.TextBox();
                        Telerik.Reporting.TextBox _identification = new Telerik.Reporting.TextBox();
                        Telerik.Reporting.TextBox _pages = new Telerik.Reporting.TextBox();
                        Telerik.Reporting.TextBox _result = new Telerik.Reporting.TextBox();
                        Telerik.Reporting.TextBox _from = new Telerik.Reporting.TextBox();
                        Telerik.Reporting.TextBox _to = new Telerik.Reporting.TextBox();
                        Telerik.Reporting.TextBox _faxNumber = new Telerik.Reporting.TextBox();
                        Telerik.Reporting.TextBox _notes = new Telerik.Reporting.TextBox();

                        sdelimStr = _reports.FaxConfirmation[1].Split(delimiter, 8);

                        _date = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtDate"];
                        _date.Value = _reports.FaxConfirmation[6].ToString();

                        _from = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFrom"];
                        _from.Value = _reports.FaxConfirmation[4].ToString();

                        _to = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtTo"];
                        _to.Value = _reports.FaxConfirmation[5].ToString();

                        _faxNumber = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFaxNumber"];
                        _faxNumber.Value = DatabaseCalls.ReturnSingleStringValue ("select FaxNumber from FaxesSendServer where SendID = " +  _reports.FaxConfirmation[8].ToString());

                        _pages = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtPages"];
                        _pages.Value = _reports.FaxConfirmation[10].ToString();

                        _notes = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtNotes"];
                        _notes.Value = DatabaseCalls.ReturnSingleStringValue("select Notes from FaxesSendServer where SendID = " + _reports.FaxConfirmation[8].ToString());

                        _result = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtResult"];
                        _result.Value = _reports.FaxConfirmation[3].ToString(); 

                        reportViewer1.Report = report1;
                        reportViewer1.RefreshReport();

                        break;
                    }
                    catch (Exception er)
                    {
                        Common.Log(er.Message);
                        break;
                    }
                case 2:
                    try
                    {

                        WaldenReports.EasyMessage                            report1 = new WaldenReports.EasyMessage();
                        Telerik.Reporting.TextBox _message = new Telerik.Reporting.TextBox();

                        _message = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtMessage"];
                        _message.Value = _reports.ImMessage;

                        reportViewer1.Report = report1;
                        reportViewer1.RefreshReport();

                        break;
                    }
                    catch (Exception er)
                    {
                        Common.Log(er.Message);
                        break;
                    }

                case 3:

                    break;
                default:
                    //Console.WriteLine("Invalid selection. Please select 1, 2, or 3.");
                    break;
            }

        }
 /// <summary>
 /// Required method for telerik Reporting designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.detail = new Telerik.Reporting.DetailSection();
     this.pictureBox1 = new Telerik.Reporting.PictureBox();
     this.textBox1 = new Telerik.Reporting.TextBox();
     this.textBox2 = new Telerik.Reporting.TextBox();
     this.textBox3 = new Telerik.Reporting.TextBox();
     this.textBox5 = new Telerik.Reporting.TextBox();
     this.textBox6 = new Telerik.Reporting.TextBox();
     this.textBox8 = new Telerik.Reporting.TextBox();
     this.textBox13 = new Telerik.Reporting.TextBox();
     this.textBox14 = new Telerik.Reporting.TextBox();
     this.textBox21 = new Telerik.Reporting.TextBox();
     this.textBox22 = new Telerik.Reporting.TextBox();
     this.textBox25 = new Telerik.Reporting.TextBox();
     this.textBox26 = new Telerik.Reporting.TextBox();
     this.ProductInforamtion = new Telerik.Reporting.ObjectDataSource();
     this.textBox4 = new Telerik.Reporting.TextBox();
     this.textBox7 = new Telerik.Reporting.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(3.5000002384185791D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.pictureBox1,
     this.textBox1,
     this.textBox2,
     this.textBox3,
     this.textBox5,
     this.textBox6,
     this.textBox8,
     this.textBox13,
     this.textBox14,
     this.textBox21,
     this.textBox22,
     this.textBox25,
     this.textBox26,
     this.textBox4,
     this.textBox7});
     this.detail.Name = "detail";
     //
     // pictureBox1
     //
     this.pictureBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.099999986588954926D), Telerik.Reporting.Drawing.Unit.Inch(0.099999986588954926D));
     this.pictureBox1.MimeType = "";
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.5D), Telerik.Reporting.Drawing.Unit.Inch(1.5D));
     this.pictureBox1.Sizing = Telerik.Reporting.Drawing.ImageSizeMode.Stretch;
     this.pictureBox1.Value = "=Fields.Photo";
     //
     // textBox1
     //
     this.textBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.9000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.9000003337860107D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox1.Value = "=Fields.ProductName";
     //
     // textBox2
     //
     this.textBox2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.9000004529953003D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.0000005960464478D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox2.Value = "Product Name :";
     //
     // textBox3
     //
     this.textBox3.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.9000790119171143D), Telerik.Reporting.Drawing.Unit.Inch(0.5D));
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.8999214172363281D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox3.Value = "=Fields.Code";
     //
     // textBox5
     //
     this.textBox5.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.9000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.800000011920929D));
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.90000057220459D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox5.Value = "=Fields.Model";
     //
     // textBox6
     //
     this.textBox6.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.9000005722045898D), Telerik.Reporting.Drawing.Unit.Inch(0.5D));
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.99999964237213135D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox6.Value = "Product Code :";
     //
     // textBox8
     //
     this.textBox8.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.4000003337860107D), Telerik.Reporting.Drawing.Unit.Inch(0.800000011920929D));
     this.textBox8.Name = "textBox8";
     this.textBox8.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.49999967217445374D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox8.Value = "Model :";
     //
     // textBox13
     //
     this.textBox13.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.4499213695526123D), Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D));
     this.textBox13.Name = "textBox13";
     this.textBox13.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.44999998807907104D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox13.Value = "Color :";
     //
     // textBox14
     //
     this.textBox14.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.9000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D));
     this.textBox14.Name = "textBox14";
     this.textBox14.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.9000003337860107D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox14.Value = "=Fields.Color";
     //
     // textBox21
     //
     this.textBox21.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.9000792503356934D), Telerik.Reporting.Drawing.Unit.Inch(1.7000001668930054D));
     this.textBox21.Name = "textBox21";
     this.textBox21.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.8999214172363281D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox21.Value = "=Fields.WarrantityDuration";
     //
     // textBox22
     //
     this.textBox22.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.5599216222763062D), Telerik.Reporting.Drawing.Unit.Inch(1.7000001668930054D));
     this.textBox22.Name = "textBox22";
     this.textBox22.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.3400000333786011D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox22.Value = "Warrantity Duration :";
     //
     // textBox25
     //
     this.textBox25.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.9000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(2D));
     this.textBox25.Name = "textBox25";
     this.textBox25.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.9000003337860107D), Telerik.Reporting.Drawing.Unit.Inch(1.5000003576278687D));
     this.textBox25.Value = "=Fields.Description";
     //
     // textBox26
     //
     this.textBox26.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.0499217510223389D), Telerik.Reporting.Drawing.Unit.Inch(2D));
     this.textBox26.Name = "textBox26";
     this.textBox26.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.85000002384185791D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox26.Value = "Description :";
     //
     // ProductInforamtion
     //
     this.ProductInforamtion.DataSource = typeof(whostpos.Entitys.Entites.Products);
     this.ProductInforamtion.Name = "ProductInforamtion";
     //
     // textBox4
     //
     this.textBox4.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.0499217510223389D), Telerik.Reporting.Drawing.Unit.Inch(1.4000000953674316D));
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.8500792384147644D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox4.Value = "Added Date :";
     //
     // textBox7
     //
     this.textBox7.Format = "{0:d}";
     this.textBox7.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.9000797271728516D), Telerik.Reporting.Drawing.Unit.Inch(1.4000000953674316D));
     this.textBox7.Name = "textBox7";
     this.textBox7.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.8999207019805908D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox7.Value = "=Fields.EntityDate";
     //
     // RptProductInformation
     //
     this.DataSource = this.ProductInforamtion;
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.detail});
     this.Name = "RptProductInformation";
     this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D));
     this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.Letter;
     this.Style.BackgroundColor = System.Drawing.Color.White;
     this.Width = Telerik.Reporting.Drawing.Unit.Inch(6D);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Beispiel #17
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(LabTestName_Sub));
     Telerik.Reporting.Group group1 = new Telerik.Reporting.Group();
     Telerik.Reporting.ReportParameter reportParameter1 = 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.labelsGroupFooterSection = new Telerik.Reporting.GroupFooterSection();
     this.labelsGroupHeaderSection = new Telerik.Reporting.GroupHeaderSection();
     this.labTestIDCaptionTextBox = new Telerik.Reporting.TextBox();
     this.sqlDataSource1 = new Telerik.Reporting.SqlDataSource();
     this.detail = new Telerik.Reporting.DetailSection();
     this.labTestIDDataTextBox = new Telerik.Reporting.TextBox();
     this.testNameDataTextBox = new Telerik.Reporting.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // 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.19999995827674866D);
     this.labelsGroupHeaderSection.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.labTestIDCaptionTextBox});
     this.labelsGroupHeaderSection.Name = "labelsGroupHeaderSection";
     this.labelsGroupHeaderSection.PrintOnEveryPage = true;
     //
     // 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.02083333395421505D));
     this.labTestIDCaptionTextBox.Name = "labTestIDCaptionTextBox";
     this.labTestIDCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.0791667699813843D), Telerik.Reporting.Drawing.Unit.Inch(0.17916662991046906D));
     this.labTestIDCaptionTextBox.Style.Font.Bold = true;
     this.labTestIDCaptionTextBox.Style.Font.Italic = true;
     this.labTestIDCaptionTextBox.Style.Font.Name = "Arial";
     this.labTestIDCaptionTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.labTestIDCaptionTextBox.StyleName = "Caption";
     this.labTestIDCaptionTextBox.Value = "Test Name ---";
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionString = "OnLinePrescriptionConnectionString";
     this.sqlDataSource1.Name = "sqlDataSource1";
     this.sqlDataSource1.SelectCommand = resources.GetString("sqlDataSource1.SelectCommand");
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(0.20000004768371582D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.labTestIDDataTextBox,
     this.testNameDataTextBox});
     this.detail.Name = "detail";
     //
     // labTestIDDataTextBox
     //
     this.labTestIDDataTextBox.CanGrow = true;
     this.labTestIDDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.labTestIDDataTextBox.Name = "labTestIDDataTextBox";
     this.labTestIDDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.0791667699813843D), Telerik.Reporting.Drawing.Unit.Inch(0.17916671931743622D));
     this.labTestIDDataTextBox.Style.Font.Name = "Arial";
     this.labTestIDDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.labTestIDDataTextBox.StyleName = "Data";
     this.labTestIDDataTextBox.Value = "=Fields.LabTestID";
     //
     // testNameDataTextBox
     //
     this.testNameDataTextBox.CanGrow = true;
     this.testNameDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.testNameDataTextBox.Name = "testNameDataTextBox";
     this.testNameDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.2791669368743896D), Telerik.Reporting.Drawing.Unit.Inch(0.17916671931743622D));
     this.testNameDataTextBox.Style.Font.Name = "Arial";
     this.testNameDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.testNameDataTextBox.StyleName = "Data";
     this.testNameDataTextBox.Value = "=Fields.TestName";
     //
     // LabTestName_Sub
     //
     this.DataSource = this.sqlDataSource1;
     this.Filters.Add(new Telerik.Reporting.Filter("=Fields.LabTestID", Telerik.Reporting.FilterOperator.Equal, "=Parameters.LinkPrmLabTestID.Value"));
     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.detail});
     this.Name = "LabTestName_Sub";
     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(1D));
     this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.A4;
     reportParameter1.AllowNull = true;
     reportParameter1.Name = "LinkPrmLabTestID";
     reportParameter1.Text = "Parameter1";
     this.ReportParameters.Add(reportParameter1);
     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(3.379166841506958D);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Beispiel #18
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.TextBox textBox14;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ReportHopDong));
     Telerik.Reporting.ReportParameter reportParameter1       = new Telerik.Reporting.ReportParameter();
     this.detail            = new Telerik.Reporting.DetailSection();
     this.textBox9          = new Telerik.Reporting.TextBox();
     this.textBox10         = new Telerik.Reporting.TextBox();
     this.textBox11         = new Telerik.Reporting.TextBox();
     this.textBox16         = 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.textBox5          = new Telerik.Reporting.TextBox();
     this.textBox6          = new Telerik.Reporting.TextBox();
     this.textBox7          = new Telerik.Reporting.TextBox();
     this.textBox8          = new Telerik.Reporting.TextBox();
     this.textBox12         = new Telerik.Reporting.TextBox();
     this.textBox13         = new Telerik.Reporting.TextBox();
     this.textBox15         = new Telerik.Reporting.TextBox();
     this.textBox18         = new Telerik.Reporting.TextBox();
     this.textBox20         = 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.textBox28         = new Telerik.Reporting.TextBox();
     this.textBox29         = 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.textBox27         = new Telerik.Reporting.TextBox();
     this.textBox57         = new Telerik.Reporting.TextBox();
     this.textBox17         = new Telerik.Reporting.TextBox();
     this.textBox60         = new Telerik.Reporting.TextBox();
     this.textBox39         = new Telerik.Reporting.TextBox();
     this.textBox41         = new Telerik.Reporting.TextBox();
     this.entityDataSource1 = new Telerik.Reporting.EntityDataSource();
     this.subReport1        = new Telerik.Reporting.SubReport();
     this.reportCV1         = new Aits_Hrm.Report.SubRp_NgSDLD();
     this.subReport2        = new Telerik.Reporting.SubReport();
     this.subRp_NgLD1       = new Aits_Hrm.Report.SubRp_NgLD();
     textBox14 = new Telerik.Reporting.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.reportCV1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.subRp_NgLD1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // textBox14
     //
     textBox14.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(2.6930556297302246D));
     textBox14.Name            = "textBox14";
     textBox14.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.9000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     textBox14.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
     textBox14.TextWrap        = false;
     resources.ApplyResources(textBox14, "textBox14");
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(14.243743896484375D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.textBox9,
         this.textBox10,
         this.textBox11,
         this.textBox16,
         this.subReport1,
         this.subReport2,
         this.textBox1,
         this.textBox2,
         this.textBox3,
         this.textBox4,
         this.textBox5,
         this.textBox6,
         this.textBox7,
         this.textBox8,
         this.textBox12,
         this.textBox13,
         textBox14,
         this.textBox15,
         this.textBox18,
         this.textBox20,
         this.textBox22,
         this.textBox23,
         this.textBox24,
         this.textBox25,
         this.textBox26,
         this.textBox28,
         this.textBox29,
         this.textBox32,
         this.textBox33,
         this.textBox34,
         this.textBox35,
         this.textBox36,
         this.textBox37,
         this.textBox38,
         this.textBox27,
         this.textBox57,
         this.textBox17,
         this.textBox60,
         this.textBox39,
         this.textBox41
     });
     this.detail.Name                = "detail";
     this.detail.PageBreak           = Telerik.Reporting.PageBreak.After;
     this.detail.Style.Font.Name     = "Times New Roman";
     this.detail.Style.Font.Size     = Telerik.Reporting.Drawing.Unit.Point(12D);
     this.detail.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     //
     // textBox9
     //
     this.textBox9.Location            = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.0875002145767212D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.textBox9.Name                = "textBox9";
     this.textBox9.Size                = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.8125D), Telerik.Reporting.Drawing.Unit.Inch(0.47916677594184875D));
     this.textBox9.Style.Font.Bold     = true;
     this.textBox9.Style.TextAlign     = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox9.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     resources.ApplyResources(this.textBox9, "textBox9");
     //
     // textBox10
     //
     this.textBox10.Location            = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.5479167103767395D));
     this.textBox10.Name                = "textBox10";
     this.textBox10.Size                = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox10.Style.Font.Bold     = true;
     this.textBox10.Style.Font.Size     = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox10.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     resources.ApplyResources(this.textBox10, "textBox10");
     //
     // textBox11
     //
     this.textBox11.Location            = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.4874998331069946D), Telerik.Reporting.Drawing.Unit.Inch(1D));
     this.textBox11.Name                = "textBox11";
     this.textBox11.Size                = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.0000007152557373D), Telerik.Reporting.Drawing.Unit.Inch(0.49999994039535522D));
     this.textBox11.Style.Font.Bold     = true;
     this.textBox11.Style.Font.Size     = Telerik.Reporting.Drawing.Unit.Point(16D);
     this.textBox11.Style.TextAlign     = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox11.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     resources.ApplyResources(this.textBox11, "textBox11");
     //
     // textBox16
     //
     this.textBox16.Location            = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.74791669845581055D));
     this.textBox16.Name                = "textBox16";
     this.textBox16.Size                = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.30000004172325134D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox16.Style.Font.Bold     = true;
     this.textBox16.Style.Font.Size     = Telerik.Reporting.Drawing.Unit.Point(11D);
     this.textBox16.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Top;
     resources.ApplyResources(this.textBox16, "textBox16");
     //
     // textBox1
     //
     this.textBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(2.293055534362793D));
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     resources.ApplyResources(this.textBox1, "textBox1");
     //
     // textBox2
     //
     this.textBox2.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(2.4930553436279297D));
     this.textBox2.Name            = "textBox2";
     this.textBox2.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox2.Style.Font.Bold = true;
     resources.ApplyResources(this.textBox2, "textBox2");
     //
     // textBox3
     //
     this.textBox3.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(3.9000000953674316D));
     this.textBox3.Name            = "textBox3";
     this.textBox3.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.1000008583068848D), Telerik.Reporting.Drawing.Unit.Inch(0.16041639447212219D));
     this.textBox3.Style.Font.Bold = true;
     resources.ApplyResources(this.textBox3, "textBox3");
     //
     // textBox4
     //
     this.textBox4.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(4.7000002861022949D));
     this.textBox4.Name            = "textBox4";
     this.textBox4.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.1000008583068848D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox4.Style.Font.Bold = true;
     resources.ApplyResources(this.textBox4, "textBox4");
     //
     // textBox5
     //
     this.textBox5.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(8.2562589645385742D));
     this.textBox5.Name            = "textBox5";
     this.textBox5.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.1000008583068848D), Telerik.Reporting.Drawing.Unit.Inch(0.1999993771314621D));
     this.textBox5.Style.Font.Bold = true;
     resources.ApplyResources(this.textBox5, "textBox5");
     //
     // textBox6
     //
     this.textBox6.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(9.313201904296875D));
     this.textBox6.Name            = "textBox6";
     this.textBox6.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.1000008583068848D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox6.Style.Font.Bold = true;
     resources.ApplyResources(this.textBox6, "textBox6");
     //
     // textBox7
     //
     this.textBox7.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(4.0604166984558105D));
     this.textBox7.Name     = "textBox7";
     this.textBox7.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D));
     resources.ApplyResources(this.textBox7, "textBox7");
     //
     // textBox8
     //
     this.textBox8.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(4.900001049041748D));
     this.textBox8.Name     = "textBox8";
     this.textBox8.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.39999961853027344D));
     resources.ApplyResources(this.textBox8, "textBox8");
     //
     // textBox12
     //
     this.textBox12.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(8.5090246200561523D));
     this.textBox12.Name     = "textBox12";
     this.textBox12.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.80417752265930176D));
     resources.ApplyResources(this.textBox12, "textBox12");
     //
     // textBox13
     //
     this.textBox13.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(9.5132017135620117D));
     this.textBox13.Name     = "textBox13";
     this.textBox13.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(1.086798906326294D));
     resources.ApplyResources(this.textBox13, "textBox13");
     //
     // textBox15
     //
     this.textBox15.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.8263888359069824D), Telerik.Reporting.Drawing.Unit.Inch(2.6930556297302246D));
     this.textBox15.Name     = "textBox15";
     this.textBox15.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.5D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     //
     // textBox18
     //
     this.textBox18.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.1597222238779068D), Telerik.Reporting.Drawing.Unit.Inch(2.8930556774139404D));
     this.textBox18.Multiline       = false;
     this.textBox18.Name            = "textBox18";
     this.textBox18.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.8402783870697021D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox18.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
     resources.ApplyResources(this.textBox18, "textBox18");
     //
     // textBox20
     //
     this.textBox20.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.0999999046325684D), Telerik.Reporting.Drawing.Unit.Inch(2.9000000953674316D));
     this.textBox20.Multiline       = false;
     this.textBox20.Name            = "textBox20";
     this.textBox20.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.200000524520874D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox20.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
     resources.ApplyResources(this.textBox20, "textBox20");
     //
     // textBox22
     //
     this.textBox22.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(3.0930557250976562D));
     this.textBox22.Name     = "textBox22";
     this.textBox22.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.5D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     resources.ApplyResources(this.textBox22, "textBox22");
     //
     // textBox23
     //
     this.textBox23.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.426389217376709D), Telerik.Reporting.Drawing.Unit.Inch(3.0930557250976562D));
     this.textBox23.Name     = "textBox23";
     this.textBox23.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.5D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     resources.ApplyResources(this.textBox23, "textBox23");
     //
     // textBox24
     //
     this.textBox24.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(3.293055534362793D));
     this.textBox24.Name     = "textBox24";
     this.textBox24.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.8000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     resources.ApplyResources(this.textBox24, "textBox24");
     //
     // textBox25
     //
     this.textBox25.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.7597224712371826D), Telerik.Reporting.Drawing.Unit.Inch(3.293055534362793D));
     this.textBox25.Name     = "textBox25";
     this.textBox25.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.64027738571167D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     resources.ApplyResources(this.textBox25, "textBox25");
     //
     // textBox26
     //
     this.textBox26.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(3.4930558204650879D));
     this.textBox26.Name     = "textBox26";
     this.textBox26.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.0000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     resources.ApplyResources(this.textBox26, "textBox26");
     //
     // textBox28
     //
     this.textBox28.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(2.0930554866790771D));
     this.textBox28.Name     = "textBox28";
     this.textBox28.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6000000238418579D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     resources.ApplyResources(this.textBox28, "textBox28");
     //
     // textBox29
     //
     this.textBox29.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.5597221851348877D), Telerik.Reporting.Drawing.Unit.Inch(2.0930554866790771D));
     this.textBox29.Name     = "textBox29";
     this.textBox29.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.5999999046325684D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     resources.ApplyResources(this.textBox29, "textBox29");
     //
     // textBox32
     //
     this.textBox32.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.0000002384185791D), Telerik.Reporting.Drawing.Unit.Inch(10.713200569152832D));
     this.textBox32.Name     = "textBox32";
     this.textBox32.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.5999996662139893D), Telerik.Reporting.Drawing.Unit.Inch(0.19999949634075165D));
     resources.ApplyResources(this.textBox32, "textBox32");
     //
     // textBox33
     //
     this.textBox33.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2D), Telerik.Reporting.Drawing.Unit.Inch(11.013198852539063D));
     this.textBox33.Name            = "textBox33";
     this.textBox33.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.5D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox33.Style.Font.Bold = true;
     this.textBox33.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(11D);
     this.textBox33.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     resources.ApplyResources(this.textBox33, "textBox33");
     //
     // textBox34
     //
     this.textBox34.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.6000001430511475D), Telerik.Reporting.Drawing.Unit.Inch(11.2131986618042D));
     this.textBox34.Name            = "textBox34";
     this.textBox34.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.3000004291534424D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox34.Style.Font.Bold = true;
     this.textBox34.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(11D);
     this.textBox34.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     resources.ApplyResources(this.textBox34, "textBox34");
     //
     // textBox35
     //
     this.textBox35.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(11.2131986618042D));
     this.textBox35.Name            = "textBox35";
     this.textBox35.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.200000524520874D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox35.Style.Font.Bold = true;
     this.textBox35.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(11D);
     this.textBox35.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     resources.ApplyResources(this.textBox35, "textBox35");
     //
     // textBox36
     //
     this.textBox36.Location          = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.30000004172325134D), Telerik.Reporting.Drawing.Unit.Inch(11.41319751739502D));
     this.textBox36.Name              = "textBox36";
     this.textBox36.Size              = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6000003814697266D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox36.Style.Font.Bold   = false;
     this.textBox36.Style.Font.Italic = true;
     this.textBox36.Style.Font.Size   = Telerik.Reporting.Drawing.Unit.Point(10D);
     this.textBox36.Style.TextAlign   = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     resources.ApplyResources(this.textBox36, "textBox36");
     //
     // textBox37
     //
     this.textBox37.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.28749975562095642D), Telerik.Reporting.Drawing.Unit.Inch(12.80000114440918D));
     this.textBox37.Name            = "textBox37";
     this.textBox37.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.8000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox37.Style.Font.Bold = true;
     this.textBox37.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     resources.ApplyResources(this.textBox37, "textBox37");
     //
     // textBox38
     //
     this.textBox38.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.6000003814697266D), Telerik.Reporting.Drawing.Unit.Inch(12.80000114440918D));
     this.textBox38.Name            = "textBox38";
     this.textBox38.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.8000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox38.Style.Font.Bold = true;
     this.textBox38.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     resources.ApplyResources(this.textBox38, "textBox38");
     //
     // textBox27
     //
     this.textBox27.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(5.5326399803161621D));
     this.textBox27.Name     = "textBox27";
     this.textBox27.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(1.4069445133209229D));
     resources.ApplyResources(this.textBox27, "textBox27");
     //
     // textBox57
     //
     this.textBox57.Location  = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(5.2999997138977051D));
     this.textBox57.Multiline = false;
     this.textBox57.Name      = "textBox57";
     this.textBox57.Size      = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(5.90000057220459D), Telerik.Reporting.Drawing.Unit.Inch(0.19999949634075165D));
     resources.ApplyResources(this.textBox57, "textBox57");
     //
     // textBox17
     //
     this.textBox17.Location            = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.30000004172325134D), Telerik.Reporting.Drawing.Unit.Inch(0.74791669845581055D));
     this.textBox17.Name                = "textBox17";
     this.textBox17.Size                = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.1000003814697266D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox17.Style.Font.Bold     = false;
     this.textBox17.Style.Font.Size     = Telerik.Reporting.Drawing.Unit.Point(11D);
     this.textBox17.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Top;
     resources.ApplyResources(this.textBox17, "textBox17");
     //
     // textBox60
     //
     this.textBox60.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.3597222566604614D), Telerik.Reporting.Drawing.Unit.Inch(3.6930558681488037D));
     this.textBox60.Name            = "textBox60";
     this.textBox60.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(5.1402783393859863D), Telerik.Reporting.Drawing.Unit.Inch(0.20694425702095032D));
     this.textBox60.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     resources.ApplyResources(this.textBox60, "textBox60");
     //
     // textBox39
     //
     this.textBox39.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(8.2784229471499771E-10D), Telerik.Reporting.Drawing.Unit.Inch(7.6395840644836426D));
     this.textBox39.Name     = "textBox39";
     this.textBox39.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.5937609076499939D));
     resources.ApplyResources(this.textBox39, "textBox39");
     //
     // textBox41
     //
     this.textBox41.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(6.9395842552185059D));
     this.textBox41.Name     = "textBox41";
     this.textBox41.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.640966534614563D));
     resources.ApplyResources(this.textBox41, "textBox41");
     //
     // entityDataSource1
     //
     this.entityDataSource1.ConnectionString    = "QuanLyNhanSuEntities";
     this.entityDataSource1.Name                = "entityDataSource1";
     this.entityDataSource1.ObjectContext       = typeof(Aits_Hrm.Model.QuanLyNhanSuEntities);
     this.entityDataSource1.ObjectContextMember = "GetHopDongByID";
     this.entityDataSource1.Parameters.AddRange(new Telerik.Reporting.ObjectDataSourceParameter[] {
         new Telerik.Reporting.ObjectDataSourceParameter("iDHopDongLD", typeof(System.Nullable <int>), "=Parameters.iDHopDongLD.Value")
     });
     //
     // subReport1
     //
     this.subReport1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(1.5930554866790772D));
     this.subReport1.Name     = "subReport1";
     this.subReport1.Parameters.Add(new Telerik.Reporting.Parameter("iDNhanVien", "=IDNguoiDaiDien"));
     this.subReport1.ReportSource = this.reportCV1;
     this.subReport1.Size         = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.30000004172325134D));
     //
     // reportCV1
     //
     this.reportCV1.Name = "reportCV1";
     //
     // subReport2
     //
     this.subReport2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(1.8930555582046509D));
     this.subReport2.Name     = "subReport2";
     this.subReport2.Parameters.Add(new Telerik.Reporting.Parameter("iDNhanVien", "=IDNhanVien"));
     this.subReport2.ReportSource = this.subRp_NgLD1;
     this.subReport2.Size         = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     //
     // subRp_NgLD1
     //
     this.subRp_NgLD1.Name = "subRp_NgLD1";
     //
     // ReportHopDong
     //
     this.DataSource = null;
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.detail
     });
     this.Name = "Report2";
     this.PageSettings.Landscape      = false;
     this.PageSettings.Margins.Bottom = Telerik.Reporting.Drawing.Unit.Mm(20D);
     this.PageSettings.Margins.Left   = Telerik.Reporting.Drawing.Unit.Mm(30D);
     this.PageSettings.Margins.Right  = Telerik.Reporting.Drawing.Unit.Mm(15D);
     this.PageSettings.Margins.Top    = Telerik.Reporting.Drawing.Unit.Mm(20D);
     this.PageSettings.PaperKind      = System.Drawing.Printing.PaperKind.A4;
     reportParameter1.Name            = "iDHopDongLD";
     resources.ApplyResources(reportParameter1, "reportParameter1");
     this.ReportParameters.Add(reportParameter1);
     this.Style.BackgroundColor = System.Drawing.Color.White;
     this.Style.Visible         = true;
     this.Width = Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D);
     ((System.ComponentModel.ISupportInitialize)(this.reportCV1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.subRp_NgLD1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Beispiel #19
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.TextBox textBox1;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(StudentSemesterResult));
     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.Drawing.StyleRule styleRule1           = new Telerik.Reporting.Drawing.StyleRule();
     this.textBox19          = new Telerik.Reporting.TextBox();
     this.textBox21          = new Telerik.Reporting.TextBox();
     this.textBox23          = new Telerik.Reporting.TextBox();
     this.pageHeaderSection1 = new Telerik.Reporting.PageHeaderSection();
     this.pBoxLautech        = new Telerik.Reporting.PictureBox();
     this.textBox2           = new Telerik.Reporting.TextBox();
     this.detail             = new Telerik.Reporting.DetailSection();
     this.panel1             = new Telerik.Reporting.Panel();
     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.panel2             = new Telerik.Reporting.Panel();
     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.textBox18          = new Telerik.Reporting.TextBox();
     this.textBox17          = new Telerik.Reporting.TextBox();
     this.textBox16          = new Telerik.Reporting.TextBox();
     this.textBox15          = new Telerik.Reporting.TextBox();
     this.textBox14          = new Telerik.Reporting.TextBox();
     this.textBox13          = new Telerik.Reporting.TextBox();
     this.tblCourseResult    = new Telerik.Reporting.Table();
     this.textBox20          = new Telerik.Reporting.TextBox();
     this.textBox22          = new Telerik.Reporting.TextBox();
     this.textBox24          = new Telerik.Reporting.TextBox();
     this.panel3             = new Telerik.Reporting.Panel();
     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.panel4             = new Telerik.Reporting.Panel();
     this.textBox37          = new Telerik.Reporting.TextBox();
     this.textBox43          = new Telerik.Reporting.TextBox();
     this.pageFooterSection1 = new Telerik.Reporting.PageFooterSection();
     textBox1 = new Telerik.Reporting.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // textBox1
     //
     textBox1.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     textBox1.Name            = "textBox1";
     textBox1.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(5.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D));
     textBox1.Style.Font.Bold = true;
     textBox1.Style.Font.Name = "Microsoft Sans Serif";
     textBox1.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
     textBox1.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Point(5D);
     textBox1.Value           = "DEPARTMENT OF COMPUTER SCIENCE & ENGINEERING\r\nFACULTY OF ENGINEERING & TECHNOLOGY" +
                                " \r\nLADOKE AKINTOLA UNIVERSITY OF TECHNOLOGY, OGBOMOSO.";
     //
     // textBox19
     //
     this.textBox19.Name            = "textBox19";
     this.textBox19.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.5333335399627686D), Telerik.Reporting.Drawing.Unit.Inch(0.2395833283662796D));
     this.textBox19.Style.Font.Name = "Microsoft Sans Serif";
     //
     // textBox21
     //
     this.textBox21.Name            = "textBox21";
     this.textBox21.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.5333335399627686D), Telerik.Reporting.Drawing.Unit.Inch(0.2395833283662796D));
     this.textBox21.Style.Font.Name = "Microsoft Sans Serif";
     //
     // textBox23
     //
     this.textBox23.Name            = "textBox23";
     this.textBox23.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.5333335399627686D), Telerik.Reporting.Drawing.Unit.Inch(0.2395833283662796D));
     this.textBox23.Style.Font.Name = "Microsoft Sans Serif";
     //
     // pageHeaderSection1
     //
     this.pageHeaderSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(1.3000000715255737D);
     this.pageHeaderSection1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.pBoxLautech,
         this.textBox2,
         textBox1
     });
     this.pageHeaderSection1.Name = "pageHeaderSection1";
     //
     // pBoxLautech
     //
     this.pBoxLautech.Anchoring = ((Telerik.Reporting.AnchoringStyles)((Telerik.Reporting.AnchoringStyles.Top | Telerik.Reporting.AnchoringStyles.Left)));
     this.pBoxLautech.Location  = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.pBoxLautech.MimeType  = "image/png";
     this.pBoxLautech.Name      = "pBoxLautech";
     this.pBoxLautech.Size      = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.0999212265014648D), Telerik.Reporting.Drawing.Unit.Inch(1.2999999523162842D));
     this.pBoxLautech.Sizing    = Telerik.Reporting.Drawing.ImageSizeMode.ScaleProportional;
     this.pBoxLautech.Value     = ((object)(resources.GetObject("pBoxLautech.Value")));
     //
     // textBox2
     //
     this.textBox2.Location             = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D), Telerik.Reporting.Drawing.Unit.Inch(0.90000009536743164D));
     this.textBox2.Name                 = "textBox2";
     this.textBox2.Size                 = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.4000008106231689D), Telerik.Reporting.Drawing.Unit.Inch(0.19992147386074066D));
     this.textBox2.Style.Font.Bold      = true;
     this.textBox2.Style.Font.Name      = "Microsoft Sans Serif";
     this.textBox2.Style.Font.Size      = Telerik.Reporting.Drawing.Unit.Point(11D);
     this.textBox2.Style.Font.Underline = true;
     this.textBox2.Style.LineWidth      = Telerik.Reporting.Drawing.Unit.Point(1D);
     this.textBox2.Value                = "STUDENT SEMESTER RESULT";
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(5.0000004768371582D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.panel1,
         this.panel2,
         this.tblCourseResult,
         this.panel3,
         this.panel4
     });
     this.detail.Name = "detail";
     //
     // panel1
     //
     this.panel1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.textBox3,
         this.textBox4,
         this.textBox5,
         this.textBox6
     });
     this.panel1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.3000006675720215D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.6999988555908203D), Telerik.Reporting.Drawing.Unit.Inch(0.40000009536743164D));
     //
     // textBox3
     //
     this.textBox3.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(1.5894572413799324E-07D));
     this.textBox3.Name            = "textBox3";
     this.textBox3.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.3999999463558197D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox3.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox3.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox3.Value           = "Date: ";
     //
     // textBox4
     //
     this.textBox4.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.50003939867019653D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox4.Name            = "textBox4";
     this.textBox4.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.39996051788330078D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox4.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox4.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox4.Value           = "Time:";
     //
     // textBox5
     //
     this.textBox5.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.89999991655349731D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.textBox5.Name            = "textBox5";
     this.textBox5.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.7999995946884155D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox5.Style.Font.Bold = true;
     this.textBox5.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox5.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox5.Value           = "=CDate(Today()).toString(\"dddd, dd/MMMM/yyyy\")";
     //
     // textBox6
     //
     this.textBox6.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.89999991655349731D), Telerik.Reporting.Drawing.Unit.Inch(0.19996070861816406D));
     this.textBox6.Name            = "textBox6";
     this.textBox6.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.7999988794326782D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox6.Style.Font.Bold = true;
     this.textBox6.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox6.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox6.Value           = "=CDate(Today()).toString(\"hh:mm tt\")";
     //
     // panel2
     //
     this.panel2.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.textBox7,
         this.textBox8,
         this.textBox9,
         this.textBox10,
         this.textBox11,
         this.textBox12,
         this.textBox18,
         this.textBox17,
         this.textBox16,
         this.textBox15,
         this.textBox14,
         this.textBox13
     });
     this.panel2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D), Telerik.Reporting.Drawing.Unit.Inch(0.800000011920929D));
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(5.6000003814697266D), Telerik.Reporting.Drawing.Unit.Inch(0.95015746355056763D));
     this.panel2.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Point(0.5D);
     //
     // textBox7
     //
     this.textBox7.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(1.5894572413799324E-07D));
     this.textBox7.Name            = "textBox7";
     this.textBox7.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.3000394105911255D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox7.Style.Font.Bold = false;
     this.textBox7.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox7.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox7.Value           = "NAME                         :";
     //
     // textBox8
     //
     this.textBox8.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.9339065551757812E-05D), Telerik.Reporting.Drawing.Unit.Inch(0.15007893741130829D));
     this.textBox8.Name            = "textBox8";
     this.textBox8.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.3000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox8.Style.Font.Bold = false;
     this.textBox8.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox8.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox8.Value           = "MATRIC NUMBER    :";
     //
     // textBox9
     //
     this.textBox9.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.30015769600868225D));
     this.textBox9.Name            = "textBox9";
     this.textBox9.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.3000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox9.Style.Font.Bold = false;
     this.textBox9.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox9.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox9.Value           = "SESSION                    : ";
     //
     // textBox10
     //
     this.textBox10.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.6003153920173645D));
     this.textBox10.Name            = "textBox10";
     this.textBox10.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.3000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox10.Style.Font.Bold = false;
     this.textBox10.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox10.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox10.Value           = "LEVEL                         : ";
     //
     // textBox11
     //
     this.textBox11.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.9868215517249155E-08D), Telerik.Reporting.Drawing.Unit.Inch(0.75039416551589966D));
     this.textBox11.Name            = "textBox11";
     this.textBox11.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.3000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox11.Style.Font.Bold = false;
     this.textBox11.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox11.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox11.Value           = "PROGRAM                 : ";
     //
     // textBox12
     //
     this.textBox12.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.45023664832115173D));
     this.textBox12.Name            = "textBox12";
     this.textBox12.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.3000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox12.Style.Font.Bold = false;
     this.textBox12.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox12.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox12.Value           = "SEMESTER                : ";
     //
     // textBox18
     //
     this.textBox18.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.3001183271408081D), Telerik.Reporting.Drawing.Unit.Inch(7.9472862068996619E-08D));
     this.textBox18.Name            = "textBox18";
     this.textBox18.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.3000394105911255D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox18.Style.Font.Bold = false;
     this.textBox18.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox18.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox18.Value           = "OYENEYE, BOLAJI";
     //
     // textBox17
     //
     this.textBox17.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.3000394105911255D), Telerik.Reporting.Drawing.Unit.Inch(0.15007908642292023D));
     this.textBox17.Name            = "textBox17";
     this.textBox17.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.3000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox17.Style.Font.Bold = false;
     this.textBox17.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox17.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox17.Value           = "MATRIC NUMBER    :";
     //
     // textBox16
     //
     this.textBox16.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.3000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(0.30015754699707031D));
     this.textBox16.Name            = "textBox16";
     this.textBox16.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.3000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox16.Style.Font.Bold = false;
     this.textBox16.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox16.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox16.Value           = "SESSION                    : ";
     //
     // textBox15
     //
     this.textBox15.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.3000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(0.6003153920173645D));
     this.textBox15.Name            = "textBox15";
     this.textBox15.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.3000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox15.Style.Font.Bold = false;
     this.textBox15.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox15.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox15.Value           = "LEVEL                         : ";
     //
     // textBox14
     //
     this.textBox14.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.3000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(0.75023680925369263D));
     this.textBox14.Name            = "textBox14";
     this.textBox14.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.899960994720459D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox14.Style.Font.Bold = false;
     this.textBox14.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox14.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox14.Value           = "BACHELOR OF SCIENCE (COMPUTER SCIENCE)";
     //
     // textBox13
     //
     this.textBox13.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.3000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(0.45023664832115173D));
     this.textBox13.Name            = "textBox13";
     this.textBox13.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.3000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox13.Style.Font.Bold = false;
     this.textBox13.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox13.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox13.Value           = "SEMESTER                : ";
     //
     // tblCourseResult
     //
     this.tblCourseResult.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(2.5333335399627686D)));
     this.tblCourseResult.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(2.5333335399627686D)));
     this.tblCourseResult.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(2.5333335399627686D)));
     this.tblCourseResult.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(Telerik.Reporting.Drawing.Unit.Inch(0.2395833283662796D)));
     this.tblCourseResult.Body.SetCellContent(0, 0, this.textBox20);
     this.tblCourseResult.Body.SetCellContent(0, 1, this.textBox22);
     this.tblCourseResult.Body.SetCellContent(0, 2, this.textBox24);
     tableGroup1.Name       = "tableGroup";
     tableGroup1.ReportItem = this.textBox19;
     tableGroup2.Name       = "tableGroup1";
     tableGroup2.ReportItem = this.textBox21;
     tableGroup3.Name       = "tableGroup2";
     tableGroup3.ReportItem = this.textBox23;
     this.tblCourseResult.ColumnGroups.Add(tableGroup1);
     this.tblCourseResult.ColumnGroups.Add(tableGroup2);
     this.tblCourseResult.ColumnGroups.Add(tableGroup3);
     this.tblCourseResult.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.textBox20,
         this.textBox22,
         this.textBox24,
         this.textBox19,
         this.textBox21,
         this.textBox23
     });
     this.tblCourseResult.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D), Telerik.Reporting.Drawing.Unit.Inch(2.2000000476837158D));
     this.tblCourseResult.Name     = "tblCourseResult";
     tableGroup4.Groupings.Add(new Telerik.Reporting.Grouping(null));
     tableGroup4.Name = "detailTableGroup";
     this.tblCourseResult.RowGroups.Add(tableGroup4);
     this.tblCourseResult.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(7.6000003814697266D), Telerik.Reporting.Drawing.Unit.Inch(0.4791666567325592D));
     this.tblCourseResult.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Dashed;
     this.tblCourseResult.Style.BorderStyle.Left    = Telerik.Reporting.Drawing.BorderType.None;
     this.tblCourseResult.Style.BorderStyle.Right   = Telerik.Reporting.Drawing.BorderType.None;
     this.tblCourseResult.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Point(0.5D);
     this.tblCourseResult.Style.Color     = System.Drawing.Color.DarkGray;
     this.tblCourseResult.Style.Font.Name = "Roboto Medium";
     //
     // textBox20
     //
     this.textBox20.Name            = "textBox20";
     this.textBox20.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.5333335399627686D), Telerik.Reporting.Drawing.Unit.Inch(0.2395833283662796D));
     this.textBox20.Style.Font.Name = "Microsoft Sans Serif";
     //
     // textBox22
     //
     this.textBox22.Name            = "textBox22";
     this.textBox22.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.5333335399627686D), Telerik.Reporting.Drawing.Unit.Inch(0.2395833283662796D));
     this.textBox22.Style.Font.Name = "Microsoft Sans Serif";
     //
     // textBox24
     //
     this.textBox24.Name            = "textBox24";
     this.textBox24.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.5333335399627686D), Telerik.Reporting.Drawing.Unit.Inch(0.2395833283662796D));
     this.textBox24.Style.Font.Name = "Microsoft Sans Serif";
     //
     // panel3
     //
     this.panel3.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         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.panel3.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D), Telerik.Reporting.Drawing.Unit.Inch(3.2000000476837158D));
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(5.6000003814697266D), Telerik.Reporting.Drawing.Unit.Inch(0.95015746355056763D));
     this.panel3.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Point(0.5D);
     //
     // textBox25
     //
     this.textBox25.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(1.5894572413799324E-07D));
     this.textBox25.Name            = "textBox25";
     this.textBox25.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.9000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox25.Style.Font.Bold = false;
     this.textBox25.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox25.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox25.Value           = "Semester Total Units                =";
     //
     // textBox26
     //
     this.textBox26.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.9339065551757812E-05D), Telerik.Reporting.Drawing.Unit.Inch(0.15007893741130829D));
     this.textBox26.Name            = "textBox26";
     this.textBox26.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.9000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox26.Style.Font.Bold = false;
     this.textBox26.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox26.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox26.Value           = "Semester Total Points             =";
     //
     // textBox27
     //
     this.textBox27.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.30015769600868225D));
     this.textBox27.Name            = "textBox27";
     this.textBox27.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.9000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox27.Style.Font.Bold = false;
     this.textBox27.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox27.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox27.Value           = "Semester G.P.A                         =";
     //
     // textBox28
     //
     this.textBox28.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.6003153920173645D));
     this.textBox28.Name            = "textBox28";
     this.textBox28.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.9000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox28.Style.Font.Bold = false;
     this.textBox28.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox28.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox28.Value           = "Cummulative Total Point          =";
     //
     // textBox29
     //
     this.textBox29.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.9868215517249155E-08D), Telerik.Reporting.Drawing.Unit.Inch(0.75039416551589966D));
     this.textBox29.Name            = "textBox29";
     this.textBox29.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.9000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox29.Style.Font.Bold = false;
     this.textBox29.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox29.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox29.Value           = "Cummulative G.P.A                   =";
     //
     // textBox30
     //
     this.textBox30.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.45023664832115173D));
     this.textBox30.Name            = "textBox30";
     this.textBox30.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.9000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox30.Style.Font.Bold = false;
     this.textBox30.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox30.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox30.Value           = "Cummulative Total Units          =";
     //
     // textBox31
     //
     this.textBox31.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(7.9472862068996619E-08D));
     this.textBox31.Name            = "textBox31";
     this.textBox31.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000020265579224D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox31.Style.Font.Bold = false;
     this.textBox31.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox31.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox31.Value           = "23";
     //
     // textBox32
     //
     this.textBox32.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.4000394344329834D), Telerik.Reporting.Drawing.Unit.Inch(0.15007908642292023D));
     this.textBox32.Name            = "textBox32";
     this.textBox32.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000020265579224D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox32.Style.Font.Bold = false;
     this.textBox32.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox32.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox32.Value           = "88";
     //
     // textBox33
     //
     this.textBox33.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.30015754699707031D));
     this.textBox33.Name            = "textBox33";
     this.textBox33.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000020265579224D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox33.Style.Font.Bold = false;
     this.textBox33.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox33.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox33.Value           = "3.83";
     //
     // textBox34
     //
     this.textBox34.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.6003153920173645D));
     this.textBox34.Name            = "textBox34";
     this.textBox34.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000020265579224D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox34.Style.Font.Bold = false;
     this.textBox34.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox34.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox34.Value           = "88";
     //
     // textBox35
     //
     this.textBox35.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.75023680925369263D));
     this.textBox35.Name            = "textBox35";
     this.textBox35.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000020265579224D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox35.Style.Font.Bold = false;
     this.textBox35.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox35.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox35.Value           = "3.83";
     //
     // textBox36
     //
     this.textBox36.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.45023664832115173D));
     this.textBox36.Name            = "textBox36";
     this.textBox36.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000020265579224D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox36.Style.Font.Bold = false;
     this.textBox36.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox36.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox36.Value           = "23";
     //
     // panel4
     //
     this.panel4.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.textBox37,
         this.textBox43
     });
     this.panel4.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.8000006675720215D), Telerik.Reporting.Drawing.Unit.Inch(4.5D));
     this.panel4.Name     = "panel4";
     this.panel4.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.0999996662139893D), Telerik.Reporting.Drawing.Unit.Inch(0.450000524520874D));
     this.panel4.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Point(0.5D);
     //
     // textBox37
     //
     this.textBox37.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.39999976754188538D), Telerik.Reporting.Drawing.Unit.Inch(1.5894572413799324E-07D));
     this.textBox37.Name            = "textBox37";
     this.textBox37.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.7000000476837158D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox37.Style.Font.Bold = false;
     this.textBox37.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox37.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox37.Value           = "_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _";
     //
     // textBox43
     //
     this.textBox43.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.99999982118606567D), Telerik.Reporting.Drawing.Unit.Inch(0.30000051856040955D));
     this.textBox43.Name            = "textBox43";
     this.textBox43.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.0999995470046997D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.textBox43.Style.Font.Bold = false;
     this.textBox43.Style.Font.Name = "Microsoft Sans Serif";
     this.textBox43.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox43.Value           = "H O D\' S Signature ";
     //
     // pageFooterSection1
     //
     this.pageFooterSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(0.20000045001506805D);
     this.pageFooterSection1.Name   = "pageFooterSection1";
     //
     // StudentSemesterResult
     //
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.pageHeaderSection1,
         this.detail,
         this.pageFooterSection1
     });
     this.Name = "StudentSemesterResult";
     this.PageSettings.ContinuousPaper = false;
     this.PageSettings.Landscape       = false;
     this.PageSettings.Margins         = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(0.20000000298023224D), Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(0.5D));
     this.PageSettings.PaperKind       = System.Drawing.Printing.PaperKind.A4;
     this.Style.Font.Name = "Roboto Light";
     this.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(11D);
     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(8.0677165985107422D);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
        public MemoryStream CreateCoverSheetV2(string _faxTo, string _faxNumber, int _pageCount,
            string notes, string from, int whichCoverSheet)
        {
            MemoryStream _stream = null;
            int _totalFaxPages = _pageCount + 1;
            //whichCoverSheet = 2;
            try
            {
                switch (whichCoverSheet)
                {
                    case 1:
                        report1 = new WaldenReports.CtOrthoFaxCover1();

                        try
                        {
                            _to = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtTo"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            EmployeeDesktop.API.Exceptions.ExceptionHandling.InsertErrorMessage(er.ToString());
                            EmployeeDesktop.API.Exceptions.ExceptionHandling.SendErrorEmail(er.ToString(), ConfigurationValues.EmailFromFriendly, ConfigurationValues.EmailSendToFriendly, ConfigurationValues.EmailSubject);
                        }
                        try
                        {
                            _from = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFrom"];
                        }
                        catch (System.StackOverflowException er)
                        {
                           EmployeeDesktop.API.Exceptions.ExceptionHandling.InsertErrorMessage(er.ToString());
                           EmployeeDesktop.API.Exceptions.ExceptionHandling.SendErrorEmail(er.ToString(), ConfigurationValues.EmailFromFriendly, ConfigurationValues.EmailSendToFriendly, ConfigurationValues.EmailSubject);
                        }
                        try
                        {
                            _pages = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtPages"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            string s1 = er.Message;
                        }
                        try
                        {
                            _faxPhone = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFaxPhone"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            string s1 = er.Message;
                        }
                        try
                        {
                            _notes = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtNote"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            string s1 = er.Message;
                        }
                        try
                        {
                            _to.Value = " " + _faxTo;
                        }
                        catch { }

                        try
                        {
                            _from.Value = " " + from;
                        }
                        catch { }

                        try
                        {
                            _pages.Value = " " + _totalFaxPages.ToString()
                                + " (including cover sheet)";
                        }
                        catch { }

                        try
                        {
                            _faxPhone.Value = " " + _faxNumber;
                        }
                        catch { }

                        try
                        {
                            _notes.Value = " " + notes;
                        }
                        catch { }
                        break;

                    case 2:
                        report1 = new WaldenReports.CtOrthoFaxCover2();
                        try
                        {
                            _to = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtTo"];
                        }
                        catch (System.StackOverflowException er)
                        {
                           EmployeeDesktop.API.Exceptions.ExceptionHandling.InsertErrorMessage(er.ToString());
                           EmployeeDesktop.API.Exceptions.ExceptionHandling.SendErrorEmail(er.ToString(), ConfigurationValues.EmailFromFriendly, ConfigurationValues.EmailSendToFriendly, ConfigurationValues.EmailSubject);
                        }
                        try
                        {
                            _from = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFrom"];
                        }
                        catch (System.StackOverflowException er)
                        {
                          EmployeeDesktop.API.Exceptions.ExceptionHandling.InsertErrorMessage(er.ToString());
                          EmployeeDesktop.API.Exceptions.ExceptionHandling.SendErrorEmail(er.ToString(), ConfigurationValues.EmailFromFriendly, ConfigurationValues.EmailSendToFriendly, ConfigurationValues.EmailSubject);
                        }
                        try
                        {
                            _pages = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtPages"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            string s1 = er.Message;
                        }
                        try
                        {
                            _faxPhone = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFaxPhone"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            string s1 = er.Message;
                        }
                        try
                        {
                            _notes = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtNote"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            string s1 = er.Message;
                        }
                        try
                        {
                            _to.Value = " " + _faxTo;
                        }
                        catch { }

                        try
                        {
                            _from.Value = " " + from;
                        }
                        catch { }

                        try
                        {
                            _pages.Value = " " + _totalFaxPages.ToString()
                                + " (including cover sheet)";
                        }
                        catch { }

                        try
                        {
                            _faxPhone.Value = " " + _faxNumber;
                        }
                        catch { }

                        try
                        {
                            _notes.Value = " " + notes;
                        }
                        catch { }
                        break;

                    case 3:
                        report1 = new WaldenReports.CtOrthoFaxCover3();
                        try
                        {
                            _to = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtTo"];
                        }
                        catch (System.StackOverflowException er)
                        {
                           EmployeeDesktop.API.Exceptions.ExceptionHandling.InsertErrorMessage(er.ToString());
                           EmployeeDesktop.API.Exceptions.ExceptionHandling.SendErrorEmail(er.ToString(), ConfigurationValues.EmailFromFriendly, ConfigurationValues.EmailSendToFriendly, ConfigurationValues.EmailSubject);
                        }
                        try
                        {
                            _from = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFrom"];
                        }
                        catch (System.StackOverflowException er)
                        {
                           EmployeeDesktop.API.Exceptions.ExceptionHandling.InsertErrorMessage(er.ToString());
                           EmployeeDesktop.API.Exceptions.ExceptionHandling.SendErrorEmail(er.ToString(), ConfigurationValues.EmailFromFriendly, ConfigurationValues.EmailSendToFriendly, ConfigurationValues.EmailSubject);
                        }
                        try
                        {
                            _pages = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtPages"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            string s1 = er.Message;
                        }
                        try
                        {
                            _faxPhone = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFaxPhone"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            string s1 = er.Message;
                        }
                        try
                        {
                            _notes = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtNote"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            string s1 = er.Message;
                        }
                        try
                        {
                            _to.Value = " " + _faxTo;
                        }
                        catch { }

                        try
                        {
                            _from.Value = " " + from;
                        }
                        catch { }

                        try
                        {
                            _pages.Value = " " + _totalFaxPages.ToString()
                                + " (including cover sheet)";
                        }
                        catch { }

                        try
                        {
                            _faxPhone.Value = " " + _faxNumber;
                        }
                        catch { }

                        try
                        {
                            _notes.Value = " " + notes;
                        }
                        catch { }
                        break;

                    case 4:
                        report1 = new WaldenReports.FaxCoverCtOrtho2();

                        _to = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtTo"];
                        _from = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFrom"];
                        _pages = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtPages"];
                        _faxPhone = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFaxPhone"];
                        _notes = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtNote"];

                        try
                        {
                            _to.Value = " " + _faxTo;
                        }
                        catch { }

                        try
                        {
                            _from.Value = " " + from;
                        }
                        catch { }

                        try
                        {
                            _pages.Value = " " + _totalFaxPages.ToString()
                                + " (including cover sheet)";
                        }
                        catch { }

                        try
                        {
                            _faxPhone.Value = " " + _faxNumber;
                        }
                        catch { }

                        try
                        {
                            _notes.Value = " " + notes;
                        }
                        catch { }
                        break;

                    case 7:
                        report1 = new WaldenReports.GenericCoverLetter();

                        _to = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtTo"];
                        _from = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtFrom"];
                        _pages = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtPages"];
                        _faxPhone = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtFaxPhone"];
                        _notes = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtNote"];

                        _practiceName = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtPracticeName"];
                        _practiceName.Value = string.Empty;

                        try
                        {
                            _to.Value = " " + _faxTo;

                        }
                        catch { }

                        try
                        {
                            _from.Value = " " + from;
                        }
                        catch { }

                        try
                        {
                            _pages.Value = " " + _totalFaxPages.ToString()
                                + " (including cover sheet)";
                        }
                        catch { }

                        try
                        {
                            _faxPhone.Value = " " + _faxNumber;
                        }
                        catch { }

                        try
                        {
                            _notes.Value = " " + notes;
                        }
                        catch { }

                        break;

                    default:
                        break;
                }//end switch statement

                //Process();
                _stream = ExportToPDF(report1);
                return _stream;
            }
            catch (Exception er)
            {
                EmployeeDesktop.API.Exceptions.ExceptionHandling.InsertErrorMessage(er.ToString());
                EmployeeDesktop.API.Exceptions.ExceptionHandling.SendErrorEmail(er.ToString(), ConfigurationValues.EmailFromFriendly, ConfigurationValues.EmailSendToFriendly, ConfigurationValues.EmailSubject);
                return _stream;
            }
        }
        public MemoryStream CreateCoverSheetV2(string faxToName, string faxNumber, int pageCount,
            string notes, string from, int whichCoverSheet)
        {
            MemoryStream stream = null;
            int totalFaxPages = pageCount + 1;
            try
            {
                switch (whichCoverSheet)
                {
                    case 1:
                        report1 = new WaldenReports.CtOrthoFaxCover1();

                        try
                        {
                            faxTo = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtTo"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            Logging.LogErrors(ConfigurationValues.ErrorLogPath, er.ToString());
                        }
                        try
                        {
                            faxFrom = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFrom"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            Logging.LogErrors(ConfigurationValues.ErrorLogPath, er.ToString());
                        }
                        try
                        {
                            faxPages = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtPages"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            Logging.LogErrors(ConfigurationValues.ErrorLogPath, er.ToString());
                        }
                        try
                        {
                            faxPhone = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFaxPhone"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            Logging.LogErrors(ConfigurationValues.ErrorLogPath, er.ToString());
                        }
                        try
                        {
                            faxNotes = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtNote"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            Logging.LogErrors(ConfigurationValues.ErrorLogPath, er.ToString());
                        }
                        try
                        {
                            faxTo.Value = " " + faxToName;
                        }
                        catch (System.StackOverflowException er)
                        {
                            Logging.LogErrors(ConfigurationValues.ErrorLogPath, er.ToString());
                        }

                        try
                        {
                            faxFrom.Value = " " + from;
                        }
                        catch (System.StackOverflowException er)
                        {
                            Logging.LogErrors(ConfigurationValues.ErrorLogPath, er.ToString());
                        }

                        try
                        {
                            faxPages.Value = " " + totalFaxPages.ToString()
                                + " (including cover sheet)";
                        }
                        catch (System.StackOverflowException er)
                        {
                            Logging.LogErrors(ConfigurationValues.ErrorLogPath, er.ToString());
                        }

                        try
                        {
                            faxPhone.Value = " " + faxNumber;
                        }
                        catch (System.StackOverflowException er)
                        {
                            Logging.LogErrors(ConfigurationValues.ErrorLogPath, er.ToString());
                        }

                        try
                        {
                            faxNotes.Value = " " + notes;
                        }
                        catch (System.StackOverflowException er)
                        {
                            Logging.LogErrors(ConfigurationValues.ErrorLogPath, er.ToString());
                        }

                        break;

                    case 2:
                        report1 = new WaldenReports.CtOrthoFaxCover2();
                        try
                        {
                            faxTo = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtTo"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            Logging.LogErrors(ConfigurationValues.ErrorLogPath, er.ToString());
                        }
                        try
                        {
                            faxFrom = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFrom"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            Logging.LogErrors(ConfigurationValues.ErrorLogPath, er.ToString());
                        }
                        try
                        {
                            faxPages = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtPages"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            Logging.LogErrors(ConfigurationValues.ErrorLogPath, er.ToString());
                        }
                        try
                        {
                            faxPhone = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFaxPhone"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            Logging.LogErrors(ConfigurationValues.ErrorLogPath, er.ToString());
                        }
                        try
                        {
                            faxNotes = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtNote"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            Logging.LogErrors(ConfigurationValues.ErrorLogPath, er.ToString());
                        }
                        try
                        {
                            faxTo.Value = " " + faxToName;
                        }
                        catch { }

                        try
                        {
                            faxFrom.Value = " " + from;
                        }
                        catch { }

                        try
                        {
                            faxPages.Value = " " + totalFaxPages.ToString()
                                + " (including cover sheet)";
                        }
                        catch { }

                        try
                        {
                            faxPhone.Value = " " + faxNumber;
                        }
                        catch { }

                        try
                        {
                            faxNotes.Value = " " + notes;
                        }
                        catch { }
                        break;

                    case 3:
                        report1 = new WaldenReports.CtOrthoFaxCover3();
                        try
                        {
                            faxTo = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtTo"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            Logging.LogErrors(ConfigurationValues.ErrorLogPath, er.ToString());
                        }
                        try
                        {
                            faxFrom = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFrom"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            Logging.LogErrors(ConfigurationValues.ErrorLogPath, er.ToString());
                        }
                        try
                        {
                            faxPages = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtPages"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            Logging.LogErrors(ConfigurationValues.ErrorLogPath, er.ToString());
                        }
                        try
                        {
                            faxPhone = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFaxPhone"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            Logging.LogErrors(ConfigurationValues.ErrorLogPath, er.ToString());
                        }
                        try
                        {
                            faxNotes = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtNote"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            Logging.LogErrors(ConfigurationValues.ErrorLogPath, er.ToString());
                        }
                        try
                        {
                            faxTo.Value = " " + faxToName;
                        }
                        catch { }

                        try
                        {
                            faxFrom.Value = " " + from;
                        }
                        catch { }

                        try
                        {
                            faxPages.Value = " " + totalFaxPages.ToString()
                                + " (including cover sheet)";
                        }
                        catch { }

                        try
                        {
                            faxPhone.Value = " " + faxNumber;
                        }
                        catch { }

                        try
                        {
                            faxNotes.Value = " " + notes;
                        }
                        catch { }
                        break;

                    case 4:
                        report1 = new WaldenReports.FaxCoverCtOrtho2();

                        faxTo = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtTo"];
                        faxFrom = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFrom"];
                        faxPages = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtPages"];
                        faxPhone = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFaxPhone"];
                        faxNotes = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtNote"];

                        try
                        {
                            faxTo.Value = " " + faxToName;
                        }
                        catch { }

                        try
                        {
                            faxFrom.Value = " " + from;
                        }
                        catch { }

                        try
                        {
                            faxPages.Value = " " + totalFaxPages.ToString()
                                + " (including cover sheet)";
                        }
                        catch { }

                        try
                        {
                            faxPhone.Value = " " + faxNumber;
                        }
                        catch { }

                        try
                        {
                            faxNotes.Value = " " + notes;
                        }
                        catch { }
                        break;

                    case 7:
                        report1 = new WaldenReports.GenericCoverLetter();

                        faxTo = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtTo"];
                        faxFrom = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtFrom"];
                        faxPages = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtPages"];
                        faxPhone = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtFaxPhone"];
                        faxNotes = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtNote"];

                        practiceName = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtPracticeName"];
                        practiceName.Value = string.Empty;

                        try
                        {
                            faxTo.Value = " " + faxToName;

                        }
                        catch { }

                        try
                        {
                            faxFrom.Value = " " + from;
                        }
                        catch { }

                        try
                        {
                            faxPages.Value = " " + totalFaxPages.ToString()
                                + " (including cover sheet)";
                        }
                        catch { }

                        try
                        {
                            faxPhone.Value = " " + faxNumber;
                        }
                        catch { }

                        try
                        {
                            faxNotes.Value = " " + notes;
                        }
                        catch { }

                        break;

                    default:
                        break;
                }//end switch statement

                //Process();
                stream = ExportToPdf(report1);
                return stream;
            }
            catch (Exception er)
            {
                Logging.LogErrors(ConfigurationValues.ErrorLogPath, er.ToString());
                return stream;
            }
        }
        private MemoryStream CreateCoverSheet(string _faxTo, string _faxNumber, int _pageCount)
        {
            MemoryStream _stream = null;
            int _totalFaxPages = _pageCount + 1;
            int _whichCoverPage = 4;
            try
            {
                switch (_whichCoverPage)
                {
                    case 1:
                        report1 = new WaldenReports.NvobgynCover1();

                        _to = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtTo"];
                        _from = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtFrom"];
                        _pages = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtPages"];
                        _faxPhone = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtFaxPhone"];
                        _notes = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtNote"];


                        try
                        {
                            _to.Value = " " + _faxTo;
                        }
                        catch { }

                        try
                        {
                            _from.Value = " " + "From";
                        }
                        catch { }

                        try
                        {
                            _pages.Value = " " + _totalFaxPages.ToString()
                                + " (including cover sheet)";
                        }
                        catch { }

                        try
                        {
                            _faxPhone.Value = " " + _faxNumber;
                        }


                        catch { }

                        try
                        {
                            _notes.Value = " " + "Notes";
                        }
                        catch { }

                        break;
                    case 2:
                        report1 = new WaldenReports.FaxCoverCtOrtho();

                        try
                        {
                            _to = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtTo"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            string s1 = er.Message;
                        }
                        try
                        {
                            _from = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFrom"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            string s1 = er.Message;
                        }
                        try
                        {
                            _pages = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtPages"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            string s1 = er.Message;
                        }
                        try
                        {
                            _faxPhone = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFaxPhone"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            string s1 = er.Message;
                        }
                        try
                        {
                            _notes = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtNote"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            string s1 = er.Message;
                        }
                        try
                        {
                            _to.Value = " " + _faxTo;
                        }
                        catch { }

                        try
                        {
                            _from.Value = " " + "From";
                        }
                        catch { }

                        try
                        {
                            _pages.Value = " " + _totalFaxPages.ToString()
                                + " (including cover sheet)";
                        }
                        catch { }

                        try
                        {
                            _faxPhone.Value = " " + _faxNumber;
                        }
                        catch { }

                        try
                        {
                            _notes.Value = " " + "Notes";
                        }
                        catch { }
                        break;

                    case 3:
                        report1 = new WaldenReports.GenericCoverLetter();

                        _to = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtTo"];
                        _from = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtFrom"];
                        _pages = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtPages"];
                        _faxPhone = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtFaxPhone"];
                        _notes = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtNote"];

                        _practiceName = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtPracticeName"];
                        //_practiceName.Value = Common.PracticeName;

                        try
                        {
                            _to.Value = " " + _faxTo;

                        }
                        catch { }

                        try
                        {
                            _from.Value = " " + "From";
                        }
                        catch { }

                        try
                        {
                            _pages.Value = " " + _totalFaxPages.ToString()
                                + " (including cover sheet)";
                        }
                        catch { }

                        try
                        {
                            _faxPhone.Value = " " + _faxNumber;
                        }
                        catch { }

                        try
                        {
                            _notes.Value = " " + "Notes";
                        }
                        catch { }

                        break;

                    case 4:
                        report1 = new WaldenReports.FaxCoverCtOrtho2();

                        _to = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtTo"];
                        _from = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFrom"];
                        _pages = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtPages"];
                        _faxPhone = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFaxPhone"];
                        _notes = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtNote"];

                        try
                        {
                            _to.Value = " " + _faxTo;
                        }
                        catch { }

                        try
                        {
                            _from.Value = " " + "From";
                        }
                        catch { }

                        try
                        {
                            _pages.Value = " " + _totalFaxPages.ToString()
                                + " (including cover sheet)";
                        }
                        catch { }

                        try
                        {
                            _faxPhone.Value = " " + _faxNumber;
                        }
                        catch { }

                        try
                        {
                            _notes.Value = " " + "Notes";
                        }
                        catch { }
                        break;

                    default:
                        break;
                }//end switch statement

                Process();
                _stream = ExportToPDF(report1);
                return _stream;
            }
            catch (Exception er)
            {
                Walden.CompleteFax.Library.Database.Log(er.Message);
                //Common.Log("CreateCoverSheet: " + er.Message);
                return _stream;
            }
        }
 /// <summary>
 /// Required method for telerik Reporting designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.detail = new Telerik.Reporting.DetailSection();
     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.SupplierInformation = new Telerik.Reporting.ObjectDataSource();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(2.3999998569488525D);
     this.detail.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.textBox12,
     this.textBox13,
     this.textBox14});
     this.detail.Name = "detail";
     //
     // textBox1
     //
     this.textBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.8000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(0.099999904632568359D));
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.1999213695526123D), Telerik.Reporting.Drawing.Unit.Inch(0.20000004768371582D));
     this.textBox1.Value = "=Fields.Name";
     //
     // textBox2
     //
     this.textBox2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.1999211311340332D), Telerik.Reporting.Drawing.Unit.Inch(0.099999986588954926D));
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox2.Value = "Name :";
     //
     // textBox3
     //
     this.textBox3.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.1999211311340332D), Telerik.Reporting.Drawing.Unit.Inch(0.40000000596046448D));
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox3.Value = "Mobile :";
     //
     // textBox4
     //
     this.textBox4.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.8000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(0.3999999463558197D));
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.1999213695526123D), Telerik.Reporting.Drawing.Unit.Inch(0.20000004768371582D));
     this.textBox4.Value = "=Fields.Mobile";
     //
     // textBox5
     //
     this.textBox5.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.1999211311340332D), Telerik.Reporting.Drawing.Unit.Inch(0.70000004768371582D));
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox5.Value = "Email :";
     //
     // textBox6
     //
     this.textBox6.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.8000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(0.7000001072883606D));
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.1999213695526123D), Telerik.Reporting.Drawing.Unit.Inch(0.20000004768371582D));
     this.textBox6.Value = "=Fields.Mobile";
     //
     // textBox7
     //
     this.textBox7.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.99992108345031738D), Telerik.Reporting.Drawing.Unit.Inch(1D));
     this.textBox7.Name = "textBox7";
     this.textBox7.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.80000013113021851D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox7.Value = "Telephone :";
     //
     // textBox8
     //
     this.textBox8.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.8000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(1D));
     this.textBox8.Name = "textBox8";
     this.textBox8.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.1999213695526123D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox8.Value = "=Fields.Telephone";
     //
     // textBox9
     //
     this.textBox9.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.8000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(1.3000000715255737D));
     this.textBox9.Name = "textBox9";
     this.textBox9.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.1999213695526123D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox9.Value = "=Fields.WebSite";
     //
     // textBox10
     //
     this.textBox10.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.99992108345031738D), Telerik.Reporting.Drawing.Unit.Inch(1.3000000715255737D));
     this.textBox10.Name = "textBox10";
     this.textBox10.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.80000013113021851D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox10.Value = "Web Site :";
     //
     // textBox11
     //
     this.textBox11.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.2999211549758911D), Telerik.Reporting.Drawing.Unit.Inch(1.6000000238418579D));
     this.textBox11.Name = "textBox11";
     this.textBox11.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.50000005960464478D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox11.Value = "Date :";
     //
     // textBox12
     //
     this.textBox12.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.8000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(1.6000000238418579D));
     this.textBox12.Name = "textBox12";
     this.textBox12.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.1999213695526123D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox12.Value = "=Fields.EntityDate";
     //
     // textBox13
     //
     this.textBox13.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.59996050596237183D), Telerik.Reporting.Drawing.Unit.Inch(1.9000000953674316D));
     this.textBox13.Name = "textBox13";
     this.textBox13.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1999608278274536D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox13.Value = "Contract Person :";
     //
     // textBox14
     //
     this.textBox14.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.8000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(1.9000000953674316D));
     this.textBox14.Name = "textBox14";
     this.textBox14.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.1999213695526123D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox14.Value = "=Fields.ContractPerson";
     //
     // SupplierInformation
     //
     this.SupplierInformation.DataSource = typeof(Suppliers);
     this.SupplierInformation.Name = "SupplierInformation";
     //
     // RptSupplierInformation
     //
     this.DataSource = this.SupplierInformation;
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.detail});
     this.Name = "RptSupplierInformation";
     this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D));
     this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.Letter;
     this.Style.BackgroundColor = System.Drawing.Color.White;
     this.Width = Telerik.Reporting.Drawing.Unit.Inch(6D);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Beispiel #24
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.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.labelsGroupFooterSection = new Telerik.Reporting.GroupFooterSection();
     this.labelsGroupHeaderSection = new Telerik.Reporting.GroupHeaderSection();
     this.sqlDataSource2 = new Telerik.Reporting.SqlDataSource();
     this.sqlDataSource3 = new Telerik.Reporting.SqlDataSource();
     this.sqlDataSource1 = new Telerik.Reporting.SqlDataSource();
     this.visitIDCaptionTextBox = new Telerik.Reporting.TextBox();
     this.patientIDCaptionTextBox = new Telerik.Reporting.TextBox();
     this.patientNameCaptionTextBox = 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.reportHeader = new Telerik.Reporting.ReportHeaderSection();
     this.titleTextBox = new Telerik.Reporting.TextBox();
     this.barcode1 = new Telerik.Reporting.Barcode();
     this.shape2 = new Telerik.Reporting.Shape();
     this.reportFooter = new Telerik.Reporting.ReportFooterSection();
     this.detail = new Telerik.Reporting.DetailSection();
     this.visitIDDataTextBox = new Telerik.Reporting.TextBox();
     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.textBox6 = new Telerik.Reporting.TextBox();
     this.textBox7 = new Telerik.Reporting.TextBox();
     this.textBox8 = new Telerik.Reporting.TextBox();
     this.textBox5 = new Telerik.Reporting.TextBox();
     this.textBox9 = new Telerik.Reporting.TextBox();
     this.textBox10 = new Telerik.Reporting.TextBox();
     this.txtTotalTaka = new Telerik.Reporting.TextBox();
     this.TotalTaka = new Telerik.Reporting.TextBox();
     this.txtTakaWord = new Telerik.Reporting.TextBox();
     this.textBox13 = new Telerik.Reporting.TextBox();
     this.textBox14 = new Telerik.Reporting.TextBox();
     this.shape1 = new Telerik.Reporting.Shape();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // 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.052083343267440796D);
     this.labelsGroupHeaderSection.Name = "labelsGroupHeaderSection";
     this.labelsGroupHeaderSection.PrintOnEveryPage = true;
     //
     // sqlDataSource2
     //
     this.sqlDataSource2.ConnectionString = "OnLinePrescriptionConnectionString";
     this.sqlDataSource2.Name = "sqlDataSource2";
     this.sqlDataSource2.SelectCommand = "select dbo.DoctorVisitInfo.VisitID\r\n,dbo.DoctorVisitInfo.PatientID\r\nfrom dbo.Doct" +
     "orVisitInfo";
     //
     // sqlDataSource3
     //
     this.sqlDataSource3.ConnectionString = "OnLinePrescriptionConnectionString";
     this.sqlDataSource3.Name = "sqlDataSource3";
     this.sqlDataSource3.SelectCommand = "select dbo.DoctorVisitInfo.VisitID\r\n,dbo.DoctorVisitInfo.PatientID\r\nfrom dbo.Doct" +
     "orVisitInfo";
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionString = "OnLinePrescriptionConnectionString";
     this.sqlDataSource1.Name = "sqlDataSource1";
     this.sqlDataSource1.Parameters.AddRange(new Telerik.Reporting.SqlDataSourceParameter[] {
     new Telerik.Reporting.SqlDataSourceParameter("@PatientID", System.Data.DbType.AnsiString, "=Parameters.PatientID.Value"),
     new Telerik.Reporting.SqlDataSourceParameter("@VisitID", System.Data.DbType.AnsiString, "=Parameters.VisitID.Value")});
     this.sqlDataSource1.SelectCommand = "dbo.sp_rpt_DoctorVisitMoneyReceipt";
     this.sqlDataSource1.SelectCommandType = Telerik.Reporting.SqlDataSourceCommandType.StoredProcedure;
     //
     // visitIDCaptionTextBox
     //
     this.visitIDCaptionTextBox.CanGrow = true;
     this.visitIDCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.34791660308837891D));
     this.visitIDCaptionTextBox.Name = "visitIDCaptionTextBox";
     this.visitIDCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.5791667103767395D), Telerik.Reporting.Drawing.Unit.Inch(0.20843172073364258D));
     this.visitIDCaptionTextBox.StyleName = "Caption";
     this.visitIDCaptionTextBox.Value = "Visit ID:";
     //
     // patientIDCaptionTextBox
     //
     this.patientIDCaptionTextBox.CanGrow = true;
     this.patientIDCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.8791667222976685D), Telerik.Reporting.Drawing.Unit.Inch(0.34791660308837891D));
     this.patientIDCaptionTextBox.Name = "patientIDCaptionTextBox";
     this.patientIDCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.699999988079071D), Telerik.Reporting.Drawing.Unit.Inch(0.20843172073364258D));
     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.64791661500930786D));
     this.patientNameCaptionTextBox.Name = "patientNameCaptionTextBox";
     this.patientNameCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.87916678190231323D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.patientNameCaptionTextBox.StyleName = "Caption";
     this.patientNameCaptionTextBox.Value = "Patient Name:";
     //
     // pageHeader
     //
     this.pageHeader.Height = Telerik.Reporting.Drawing.Unit.Inch(0.59999996423721313D);
     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(3.879166841506958D), Telerik.Reporting.Drawing.Unit.Inch(0.57916665077209473D));
     this.reportNameTextBox.StyleName = "PageInfo";
     this.reportNameTextBox.Value = "DoctorVisitMoneyReceipt";
     //
     // pageFooter
     //
     this.pageFooter.Height = Telerik.Reporting.Drawing.Unit.Inch(0.23749925196170807D);
     this.pageFooter.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.currentTimeTextBox});
     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(1.2791666984558106D), Telerik.Reporting.Drawing.Unit.Inch(0.21666590869426727D));
     this.currentTimeTextBox.StyleName = "PageInfo";
     this.currentTimeTextBox.Value = "=NOW()";
     //
     // reportHeader
     //
     this.reportHeader.Height = Telerik.Reporting.Drawing.Unit.Inch(0.89999997615814209D);
     this.reportHeader.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.titleTextBox,
     this.barcode1,
     this.shape2});
     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(3.2000000476837158D), Telerik.Reporting.Drawing.Unit.Inch(0.35833346843719482D));
     this.titleTextBox.StyleName = "Title";
     this.titleTextBox.Value = "DoctorVisitMoneyReceipt";
     //
     // barcode1
     //
     this.barcode1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.35841217637062073D));
     this.barcode1.Name = "barcode1";
     this.barcode1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.8999999761581421D), Telerik.Reporting.Drawing.Unit.Inch(0.34158787131309509D));
     this.barcode1.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.barcode1.Value = "= Fields.VisitID";
     //
     // shape2
     //
     this.shape2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.70000004768371582D));
     this.shape2.Name = "shape2";
     this.shape2.ShapeType = new Telerik.Reporting.Drawing.Shapes.LineShape(Telerik.Reporting.Drawing.Shapes.LineDirection.EW);
     this.shape2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.9000003337860107D), Telerik.Reporting.Drawing.Unit.Inch(0.099999904632568359D));
     //
     // reportFooter
     //
     this.reportFooter.Height = Telerik.Reporting.Drawing.Unit.Inch(0.28125D);
     this.reportFooter.Name = "reportFooter";
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(3.0479171276092529D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.visitIDDataTextBox,
     this.patientIDDataTextBox,
     this.patientNameDataTextBox,
     this.visitIDCaptionTextBox,
     this.patientIDCaptionTextBox,
     this.patientNameCaptionTextBox,
     this.textBox1,
     this.textBox2,
     this.textBox3,
     this.textBox4,
     this.textBox6,
     this.textBox7,
     this.textBox8,
     this.textBox5,
     this.textBox9,
     this.textBox10,
     this.txtTotalTaka,
     this.TotalTaka,
     this.txtTakaWord,
     this.textBox13,
     this.textBox14,
     this.shape1});
     this.detail.Name = "detail";
     //
     // visitIDDataTextBox
     //
     this.visitIDDataTextBox.CanGrow = true;
     this.visitIDDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.5791667103767395D), Telerik.Reporting.Drawing.Unit.Inch(0.34791660308837891D));
     this.visitIDDataTextBox.Name = "visitIDDataTextBox";
     this.visitIDDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D), Telerik.Reporting.Drawing.Unit.Inch(0.20843172073364258D));
     this.visitIDDataTextBox.Style.Font.Bold = true;
     this.visitIDDataTextBox.StyleName = "Data";
     this.visitIDDataTextBox.Value = "=Fields.VisitID";
     //
     // patientIDDataTextBox
     //
     this.patientIDDataTextBox.CanGrow = true;
     this.patientIDDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.5791666507720947D), Telerik.Reporting.Drawing.Unit.Inch(0.34791660308837891D));
     this.patientIDDataTextBox.Name = "patientIDDataTextBox";
     this.patientIDDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D), Telerik.Reporting.Drawing.Unit.Inch(0.20843172073364258D));
     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.89097720384597778D), Telerik.Reporting.Drawing.Unit.Inch(0.65203303098678589D));
     this.patientNameDataTextBox.Name = "patientNameDataTextBox";
     this.patientNameDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.8881895542144775D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.patientNameDataTextBox.StyleName = "Data";
     this.patientNameDataTextBox.Value = "=Fields.PatientName";
     //
     // textBox1
     //
     this.textBox1.Format = "{0:#.00}";
     this.textBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D), Telerik.Reporting.Drawing.Unit.Inch(1.2479168176651D));
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.59992122650146484D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox1.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox1.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Point(1D);
     this.textBox1.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox1.Value = "=Fields.RegistrationFee";
     //
     // textBox2
     //
     this.textBox2.Format = "{0:#.00}";
     this.textBox2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.1000001430511475D), Telerik.Reporting.Drawing.Unit.Inch(1.2479168176651D));
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.7000001072883606D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox2.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox2.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Point(1D);
     this.textBox2.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox2.Value = "=Fields.DoctorFee";
     //
     // textBox3
     //
     this.textBox3.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(1.2479168176651D));
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox3.Value = "Registration Fee:";
     //
     // textBox4
     //
     this.textBox4.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.9999213218688965D), Telerik.Reporting.Drawing.Unit.Inch(1.2479168176651D));
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox4.Value = "Doctor Visit Fee:";
     //
     // textBox6
     //
     this.textBox6.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.40007877349853516D), Telerik.Reporting.Drawing.Unit.Inch(0.9563482403755188D));
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.8999212384223938D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox6.Value = "=Fields.Sex";
     //
     // textBox7
     //
     this.textBox7.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.6000001430511475D), Telerik.Reporting.Drawing.Unit.Inch(0.95634859800338745D));
     this.textBox7.Name = "textBox7";
     this.textBox7.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox7.Value = "=Fields.Age";
     //
     // textBox8
     //
     this.textBox8.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.047916729003190994D));
     this.textBox8.Name = "textBox8";
     this.textBox8.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.2142391204833984D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox8.Value = "=Fields.EntryDate";
     //
     // textBox5
     //
     this.textBox5.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.94791680574417114D));
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.40000000596046448D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox5.Value = "Sex:";
     //
     // textBox9
     //
     this.textBox9.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.1999208927154541D), Telerik.Reporting.Drawing.Unit.Inch(0.9563482403755188D));
     this.textBox9.Name = "textBox9";
     this.textBox9.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.40000000596046448D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox9.Value = "Age:";
     //
     // textBox10
     //
     this.textBox10.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.047916729003190994D));
     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.20000012218952179D));
     this.textBox10.Value = "Date:";
     //
     // txtTotalTaka
     //
     this.txtTotalTaka.Format = "{0:#.00}";
     this.txtTotalTaka.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D), Telerik.Reporting.Drawing.Unit.Inch(1.5479167699813843D));
     this.txtTotalTaka.Name = "txtTotalTaka";
     this.txtTotalTaka.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.59992122650146484D), Telerik.Reporting.Drawing.Unit.Inch(0.21666939556598663D));
     this.txtTotalTaka.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.txtTotalTaka.Style.Font.Bold = true;
     this.txtTotalTaka.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Point(1D);
     this.txtTotalTaka.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.txtTotalTaka.Value = "= Sum(Fields.RegistrationFee+ Fields.DoctorFee)";
     //
     // TotalTaka
     //
     this.TotalTaka.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(1.5479167699813843D));
     this.TotalTaka.Name = "TotalTaka";
     this.TotalTaka.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.TotalTaka.Value = "Total Taka:";
     //
     // txtTakaWord
     //
     this.txtTakaWord.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D), Telerik.Reporting.Drawing.Unit.Inch(1.8479166030883789D));
     this.txtTakaWord.Name = "txtTakaWord";
     this.txtTakaWord.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.19591236114501953D));
     this.txtTakaWord.Style.Color = System.Drawing.Color.Red;
     this.txtTakaWord.Style.Font.Bold = true;
     this.txtTakaWord.Value = "";
     //
     // textBox13
     //
     this.textBox13.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(1.8479166030883789D));
     this.textBox13.Name = "textBox13";
     this.textBox13.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox13.Value = "Taka in word:";
     //
     // textBox14
     //
     this.textBox14.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(2.847916841506958D));
     this.textBox14.Name = "textBox14";
     this.textBox14.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox14.Style.Font.Strikeout = false;
     this.textBox14.Style.Font.Underline = false;
     this.textBox14.Value = "Signature";
     //
     // shape1
     //
     this.shape1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(2.7957546710968018D));
     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(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.0520833320915699D));
     //
     // DoctorVisitMoneyReceipt
     //
     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 = "DoctorVisitMoneyReceipt";
     this.PageSettings.Landscape = false;
     this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(1D));
     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(3.9000003337860107D);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Beispiel #25
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(CC_Sub));
     Telerik.Reporting.Group group1 = new Telerik.Reporting.Group();
     Telerik.Reporting.ReportParameter reportParameter1 = 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.labelsGroupFooterSection = new Telerik.Reporting.GroupFooterSection();
     this.labelsGroupHeaderSection = new Telerik.Reporting.GroupHeaderSection();
     this.srNoCaptionTextBox = new Telerik.Reporting.TextBox();
     this.chiefComplainceCaptionTextBox = new Telerik.Reporting.TextBox();
     this.yYCaptionTextBox = new Telerik.Reporting.TextBox();
     this.mMCaptionTextBox = new Telerik.Reporting.TextBox();
     this.dDCaptionTextBox = new Telerik.Reporting.TextBox();
     this.sqlDataSource1 = new Telerik.Reporting.SqlDataSource();
     this.detail = new Telerik.Reporting.DetailSection();
     this.srNoDataTextBox = new Telerik.Reporting.TextBox();
     this.chiefComplainceDataTextBox = new Telerik.Reporting.TextBox();
     this.yYDataTextBox = new Telerik.Reporting.TextBox();
     this.mMDataTextBox = new Telerik.Reporting.TextBox();
     this.dDDataTextBox = new Telerik.Reporting.TextBox();
     this.shape1 = new Telerik.Reporting.Shape();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // 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.20000004768371582D);
     this.labelsGroupHeaderSection.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.srNoCaptionTextBox,
     this.chiefComplainceCaptionTextBox,
     this.yYCaptionTextBox,
     this.mMCaptionTextBox,
     this.dDCaptionTextBox});
     this.labelsGroupHeaderSection.Name = "labelsGroupHeaderSection";
     this.labelsGroupHeaderSection.PrintOnEveryPage = true;
     //
     // srNoCaptionTextBox
     //
     this.srNoCaptionTextBox.CanGrow = true;
     this.srNoCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.srNoCaptionTextBox.Name = "srNoCaptionTextBox";
     this.srNoCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.37916669249534607D), Telerik.Reporting.Drawing.Unit.Inch(0.17916662991046906D));
     this.srNoCaptionTextBox.Style.Color = System.Drawing.Color.Black;
     this.srNoCaptionTextBox.Style.Font.Bold = true;
     this.srNoCaptionTextBox.Style.Font.Name = "Arial";
     this.srNoCaptionTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.srNoCaptionTextBox.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.srNoCaptionTextBox.StyleName = "Caption";
     this.srNoCaptionTextBox.Value = "Sr No";
     //
     // chiefComplainceCaptionTextBox
     //
     this.chiefComplainceCaptionTextBox.CanGrow = true;
     this.chiefComplainceCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.40000000596046448D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.chiefComplainceCaptionTextBox.Name = "chiefComplainceCaptionTextBox";
     this.chiefComplainceCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.8000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(0.17916662991046906D));
     this.chiefComplainceCaptionTextBox.Style.Color = System.Drawing.Color.Black;
     this.chiefComplainceCaptionTextBox.Style.Font.Bold = true;
     this.chiefComplainceCaptionTextBox.Style.Font.Name = "Arial";
     this.chiefComplainceCaptionTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.chiefComplainceCaptionTextBox.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
     this.chiefComplainceCaptionTextBox.StyleName = "Caption";
     this.chiefComplainceCaptionTextBox.Value = "Chief Complaince";
     //
     // yYCaptionTextBox
     //
     this.yYCaptionTextBox.CanGrow = true;
     this.yYCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.1999998092651367D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.yYCaptionTextBox.Name = "yYCaptionTextBox";
     this.yYCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.2265583723783493D), Telerik.Reporting.Drawing.Unit.Inch(0.17916662991046906D));
     this.yYCaptionTextBox.Style.Color = System.Drawing.Color.Black;
     this.yYCaptionTextBox.Style.Font.Bold = true;
     this.yYCaptionTextBox.Style.Font.Name = "Arial";
     this.yYCaptionTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.yYCaptionTextBox.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.yYCaptionTextBox.StyleName = "Caption";
     this.yYCaptionTextBox.Value = "YY";
     //
     // mMCaptionTextBox
     //
     this.mMCaptionTextBox.CanGrow = true;
     this.mMCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.4265584945678711D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.mMCaptionTextBox.Name = "mMCaptionTextBox";
     this.mMCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.30000019073486328D), Telerik.Reporting.Drawing.Unit.Inch(0.17916662991046906D));
     this.mMCaptionTextBox.Style.Color = System.Drawing.Color.Black;
     this.mMCaptionTextBox.Style.Font.Bold = true;
     this.mMCaptionTextBox.Style.Font.Name = "Arial";
     this.mMCaptionTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.mMCaptionTextBox.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.mMCaptionTextBox.StyleName = "Caption";
     this.mMCaptionTextBox.Value = "MM";
     //
     // dDCaptionTextBox
     //
     this.dDCaptionTextBox.CanGrow = true;
     this.dDCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.7265584468841553D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.dDCaptionTextBox.Name = "dDCaptionTextBox";
     this.dDCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.30902257561683655D), Telerik.Reporting.Drawing.Unit.Inch(0.17916662991046906D));
     this.dDCaptionTextBox.Style.Color = System.Drawing.Color.Black;
     this.dDCaptionTextBox.Style.Font.Bold = true;
     this.dDCaptionTextBox.Style.Font.Name = "Arial";
     this.dDCaptionTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.dDCaptionTextBox.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.dDCaptionTextBox.StyleName = "Caption";
     this.dDCaptionTextBox.Value = "DD";
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionString = "OnLinePrescriptionConnectionString";
     this.sqlDataSource1.Name = "sqlDataSource1";
     this.sqlDataSource1.SelectCommand = resources.GetString("sqlDataSource1.SelectCommand");
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(0.19999995827674866D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.srNoDataTextBox,
     this.chiefComplainceDataTextBox,
     this.yYDataTextBox,
     this.mMDataTextBox,
     this.dDDataTextBox,
     this.shape1});
     this.detail.Name = "detail";
     //
     // srNoDataTextBox
     //
     this.srNoDataTextBox.CanGrow = true;
     this.srNoDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.srNoDataTextBox.Name = "srNoDataTextBox";
     this.srNoDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.37916669249534607D), Telerik.Reporting.Drawing.Unit.Inch(0.13750004768371582D));
     this.srNoDataTextBox.Style.Font.Name = "Arial";
     this.srNoDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.srNoDataTextBox.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.srNoDataTextBox.StyleName = "Data";
     this.srNoDataTextBox.Value = "=Fields.SrNo";
     //
     // chiefComplainceDataTextBox
     //
     this.chiefComplainceDataTextBox.CanGrow = true;
     this.chiefComplainceDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.40000000596046448D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.chiefComplainceDataTextBox.Name = "chiefComplainceDataTextBox";
     this.chiefComplainceDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.8000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(0.13750004768371582D));
     this.chiefComplainceDataTextBox.Style.Font.Name = "Arial";
     this.chiefComplainceDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.chiefComplainceDataTextBox.StyleName = "Data";
     this.chiefComplainceDataTextBox.Value = "=Fields.ChiefComplaince";
     //
     // yYDataTextBox
     //
     this.yYDataTextBox.CanGrow = true;
     this.yYDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.1999998092651367D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.yYDataTextBox.Name = "yYDataTextBox";
     this.yYDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.2265583723783493D), Telerik.Reporting.Drawing.Unit.Inch(0.13750004768371582D));
     this.yYDataTextBox.Style.Font.Name = "Arial";
     this.yYDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.yYDataTextBox.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.yYDataTextBox.StyleName = "Data";
     this.yYDataTextBox.Value = "=Fields.YY";
     //
     // mMDataTextBox
     //
     this.mMDataTextBox.CanGrow = true;
     this.mMDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.4265584945678711D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.mMDataTextBox.Name = "mMDataTextBox";
     this.mMDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.30000019073486328D), Telerik.Reporting.Drawing.Unit.Inch(0.13750004768371582D));
     this.mMDataTextBox.Style.Font.Name = "Arial";
     this.mMDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.mMDataTextBox.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.mMDataTextBox.StyleName = "Data";
     this.mMDataTextBox.Value = "=Fields.MM";
     //
     // dDDataTextBox
     //
     this.dDDataTextBox.CanGrow = true;
     this.dDDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.7265584468841553D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.dDDataTextBox.Name = "dDDataTextBox";
     this.dDDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.299999862909317D), Telerik.Reporting.Drawing.Unit.Inch(0.13750004768371582D));
     this.dDDataTextBox.Style.Font.Name = "Arial";
     this.dDDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.dDDataTextBox.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.dDDataTextBox.StyleName = "Data";
     this.dDDataTextBox.Value = "=Fields.DD";
     //
     // shape1
     //
     this.shape1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0.13757872581481934D));
     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(3.0147478580474854D), Telerik.Reporting.Drawing.Unit.Inch(0.0520833320915699D));
     //
     // CC_Sub
     //
     this.DataSource = this.sqlDataSource1;
     this.Filters.Add(new Telerik.Reporting.Filter("=Fields.VisitID", Telerik.Reporting.FilterOperator.Equal, "=Parameters.LinkprmCCVisitID.Value"));
     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.detail});
     this.Name = "CC_Sub";
     this.PageSettings.Landscape = false;
     this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(1D));
     this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.A4;
     reportParameter1.AllowNull = true;
     reportParameter1.AvailableValues.DataSource = this.sqlDataSource1;
     reportParameter1.AvailableValues.ValueMember = "= Fields.VisitID";
     reportParameter1.Name = "LinkprmCCVisitID";
     reportParameter1.Text = "Parameter1";
     this.ReportParameters.Add(reportParameter1);
     this.Style.BackgroundColor = System.Drawing.Color.White;
     this.Style.Visible = true;
     styleRule1.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
     new Telerik.Reporting.Drawing.StyleSelector("Title")});
     styleRule1.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(214)))), ((int)(((byte)(97)))), ((int)(((byte)(74)))));
     styleRule1.Style.Font.Name = "Georgia";
     styleRule1.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(18D);
     styleRule2.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
     new Telerik.Reporting.Drawing.StyleSelector("Caption")});
     styleRule2.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(174)))), ((int)(((byte)(173)))));
     styleRule2.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(115)))), ((int)(((byte)(168)))), ((int)(((byte)(212)))));
     styleRule2.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Dotted;
     styleRule2.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     styleRule2.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(238)))), ((int)(((byte)(243)))));
     styleRule2.Style.Font.Name = "Georgia";
     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 = "Georgia";
     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 = "Georgia";
     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(3.03558087348938D);
     ((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.TableGroup tableGroup3 = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup4 = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup5 = new Telerik.Reporting.TableGroup();
     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.detail = new Telerik.Reporting.DetailSection();
     this.table1 = new Telerik.Reporting.Table();
     this.textBox5 = new Telerik.Reporting.TextBox();
     this.textBox8 = new Telerik.Reporting.TextBox();
     this.textBox9 = new Telerik.Reporting.TextBox();
     this.textBox6 = new Telerik.Reporting.TextBox();
     this.SupplierAccountBalance = new Telerik.Reporting.ObjectDataSource();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // textBox1
     //
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.5728905200958252D), Telerik.Reporting.Drawing.Unit.Inch(0.1875D));
     this.textBox1.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.textBox1.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox1.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox1.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox1.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox1.StyleName = "";
     this.textBox1.Value = "Name";
     //
     // textBox2
     //
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.7708076238632202D), Telerik.Reporting.Drawing.Unit.Inch(0.1875D));
     this.textBox2.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.textBox2.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox2.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox2.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox2.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox2.StyleName = "";
     this.textBox2.Value = "Payment Amount";
     //
     // textBox3
     //
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.5624749660491943D), Telerik.Reporting.Drawing.Unit.Inch(0.1875D));
     this.textBox3.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.textBox3.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox3.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox3.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox3.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox3.StyleName = "";
     this.textBox3.Value = "Receive Amount";
     //
     // textBox4
     //
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.5937515497207642D), Telerik.Reporting.Drawing.Unit.Inch(0.1875D));
     this.textBox4.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.textBox4.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox4.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox4.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox4.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox4.StyleName = "";
     this.textBox4.Value = "Balance";
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(0.41670608520507812D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.table1});
     this.detail.Name = "detail";
     //
     // table1
     //
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(1.5728904008865356D)));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(1.7708078622817993D)));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(1.5624748468399048D)));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(1.5937517881393433D)));
     this.table1.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(Telerik.Reporting.Drawing.Unit.Inch(0.22916683554649353D)));
     this.table1.Body.SetCellContent(0, 0, this.textBox5);
     this.table1.Body.SetCellContent(0, 3, this.textBox8);
     this.table1.Body.SetCellContent(0, 1, this.textBox9);
     this.table1.Body.SetCellContent(0, 2, this.textBox6);
     tableGroup1.ReportItem = this.textBox1;
     tableGroup2.ReportItem = this.textBox2;
     tableGroup3.ReportItem = this.textBox3;
     tableGroup4.Name = "Group1";
     tableGroup4.ReportItem = this.textBox4;
     this.table1.ColumnGroups.Add(tableGroup1);
     this.table1.ColumnGroups.Add(tableGroup2);
     this.table1.ColumnGroups.Add(tableGroup3);
     this.table1.ColumnGroups.Add(tableGroup4);
     this.table1.DataSource = this.SupplierAccountBalance;
     this.table1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.textBox5,
     this.textBox8,
     this.textBox9,
     this.textBox6,
     this.textBox1,
     this.textBox2,
     this.textBox3,
     this.textBox4});
     this.table1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.9339065551757812E-05D), Telerik.Reporting.Drawing.Unit.Inch(3.9339065551757812E-05D));
     this.table1.Name = "table1";
     tableGroup5.Groupings.Add(new Telerik.Reporting.Grouping(null));
     tableGroup5.Name = "DetailGroup";
     this.table1.RowGroups.Add(tableGroup5);
     this.table1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.4999246597290039D), Telerik.Reporting.Drawing.Unit.Inch(0.41666683554649353D));
     //
     // textBox5
     //
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.5728905200958252D), Telerik.Reporting.Drawing.Unit.Inch(0.22916683554649353D));
     this.textBox5.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox5.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox5.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox5.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox5.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox5.StyleName = "";
     this.textBox5.Value = "=Fields.Name";
     //
     // textBox8
     //
     this.textBox8.Name = "textBox8";
     this.textBox8.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.5937515497207642D), Telerik.Reporting.Drawing.Unit.Inch(0.22916683554649353D));
     this.textBox8.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox8.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox8.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox8.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox8.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox8.StyleName = "";
     this.textBox8.Value = "= Fields.SupplierAccount.Credit - Fields.SupplierAccount.Debit";
     //
     // textBox9
     //
     this.textBox9.Name = "textBox9";
     this.textBox9.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.7708078622817993D), Telerik.Reporting.Drawing.Unit.Inch(0.22916683554649353D));
     this.textBox9.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox9.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox9.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox9.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox9.StyleName = "";
     this.textBox9.Value = "=Fields.SupplierAccount.Credit";
     //
     // textBox6
     //
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.5624748468399048D), Telerik.Reporting.Drawing.Unit.Inch(0.22916683554649353D));
     this.textBox6.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox6.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox6.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox6.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox6.StyleName = "";
     this.textBox6.Value = "=Fields.SupplierAccount.Debit";
     //
     // SupplierAccountBalance
     //
     this.SupplierAccountBalance.DataSource = typeof(Suppliers);
     this.SupplierAccountBalance.Name = "SupplierAccountBalance";
     //
     // RptSupplierBalance
     //
     this.DataSource = null;
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.detail});
     this.Name = "RptSupplierBalance";
     this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D));
     this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.Letter;
     this.Style.BackgroundColor = System.Drawing.Color.White;
     this.Width = Telerik.Reporting.Drawing.Unit.Inch(6.5000395774841309D);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Beispiel #27
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(ConfirmDx_Sub));
     Telerik.Reporting.Group group1 = new Telerik.Reporting.Group();
     Telerik.Reporting.ReportParameter reportParameter1 = 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.labelsGroupFooterSection = new Telerik.Reporting.GroupFooterSection();
     this.labelsGroupHeaderSection = new Telerik.Reporting.GroupHeaderSection();
     this.srNoCaptionTextBox = new Telerik.Reporting.TextBox();
     this.confirmDxCaptionTextBox = new Telerik.Reporting.TextBox();
     this.sqlDataSource1 = new Telerik.Reporting.SqlDataSource();
     this.reportHeader = new Telerik.Reporting.ReportHeaderSection();
     this.titleTextBox = new Telerik.Reporting.TextBox();
     this.detail = new Telerik.Reporting.DetailSection();
     this.srNoDataTextBox = new Telerik.Reporting.TextBox();
     this.confirmDxDataTextBox = new Telerik.Reporting.TextBox();
     this.shape1 = new Telerik.Reporting.Shape();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // 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.19999997317790985D);
     this.labelsGroupHeaderSection.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.srNoCaptionTextBox,
     this.confirmDxCaptionTextBox});
     this.labelsGroupHeaderSection.Name = "labelsGroupHeaderSection";
     this.labelsGroupHeaderSection.PrintOnEveryPage = true;
     //
     // srNoCaptionTextBox
     //
     this.srNoCaptionTextBox.CanGrow = true;
     this.srNoCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.srNoCaptionTextBox.Name = "srNoCaptionTextBox";
     this.srNoCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.27916669845581055D), Telerik.Reporting.Drawing.Unit.Inch(0.17916662991046906D));
     this.srNoCaptionTextBox.Style.Font.Bold = true;
     this.srNoCaptionTextBox.Style.Font.Name = "Arial";
     this.srNoCaptionTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.srNoCaptionTextBox.Style.LineColor = System.Drawing.Color.Black;
     this.srNoCaptionTextBox.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.srNoCaptionTextBox.StyleName = "Caption";
     this.srNoCaptionTextBox.Value = "Sr No";
     //
     // confirmDxCaptionTextBox
     //
     this.confirmDxCaptionTextBox.CanGrow = true;
     this.confirmDxCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.30000004172325134D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.confirmDxCaptionTextBox.Name = "confirmDxCaptionTextBox";
     this.confirmDxCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.9000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.17916662991046906D));
     this.confirmDxCaptionTextBox.Style.Font.Bold = true;
     this.confirmDxCaptionTextBox.Style.Font.Name = "Arial";
     this.confirmDxCaptionTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.confirmDxCaptionTextBox.Style.LineColor = System.Drawing.Color.Black;
     this.confirmDxCaptionTextBox.StyleName = "Caption";
     this.confirmDxCaptionTextBox.Value = "Confirm Dx";
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionString = "OnLinePrescriptionConnectionString";
     this.sqlDataSource1.Name = "sqlDataSource1";
     this.sqlDataSource1.SelectCommand = resources.GetString("sqlDataSource1.SelectCommand");
     //
     // reportHeader
     //
     this.reportHeader.Height = Telerik.Reporting.Drawing.Unit.Inch(0.20000001788139343D);
     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(3.2000000476837158D), Telerik.Reporting.Drawing.Unit.Inch(0.20000001788139343D));
     this.titleTextBox.Style.Color = System.Drawing.Color.Black;
     this.titleTextBox.Style.Font.Name = "Arial";
     this.titleTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(10D);
     this.titleTextBox.StyleName = "Title";
     this.titleTextBox.Value = "Confirm Dx";
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(0.22299535572528839D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.srNoDataTextBox,
     this.confirmDxDataTextBox,
     this.shape1});
     this.detail.Name = "detail";
     //
     // srNoDataTextBox
     //
     this.srNoDataTextBox.CanGrow = true;
     this.srNoDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(7.9472862068996619E-08D));
     this.srNoDataTextBox.Name = "srNoDataTextBox";
     this.srNoDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.27916669845581055D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.srNoDataTextBox.Style.Font.Name = "Arial";
     this.srNoDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.srNoDataTextBox.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.srNoDataTextBox.StyleName = "Data";
     this.srNoDataTextBox.Value = "=Fields.SrNo";
     //
     // confirmDxDataTextBox
     //
     this.confirmDxDataTextBox.CanGrow = true;
     this.confirmDxDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.30000004172325134D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.confirmDxDataTextBox.Name = "confirmDxDataTextBox";
     this.confirmDxDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.9000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.confirmDxDataTextBox.Style.Font.Name = "Arial";
     this.confirmDxDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.confirmDxDataTextBox.StyleName = "Data";
     this.confirmDxDataTextBox.Value = "=Fields.ConfirmDx";
     //
     // shape1
     //
     this.shape1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.0090227127075195312D), Telerik.Reporting.Drawing.Unit.Inch(0.17091202735900879D));
     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(3.2000000476837158D), Telerik.Reporting.Drawing.Unit.Inch(0.0520833320915699D));
     //
     // ConfirmDx_Sub
     //
     this.DataSource = this.sqlDataSource1;
     this.Filters.Add(new Telerik.Reporting.Filter("=Fields.VisitID", Telerik.Reporting.FilterOperator.Equal, "=Parameters.LinkPrmVisitID.Value"));
     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.reportHeader,
     this.detail});
     this.Name = "ConfirmDx_Sub";
     this.PageSettings.Landscape = false;
     this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(1D));
     this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.A4;
     reportParameter1.AllowNull = true;
     reportParameter1.Name = "LinkPrmVisitID";
     reportParameter1.Text = "Parameter1";
     this.ReportParameters.Add(reportParameter1);
     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.FromArgb(((int)(((byte)(214)))), ((int)(((byte)(97)))), ((int)(((byte)(74)))));
     styleRule1.Style.Font.Name = "Georgia";
     styleRule1.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(18D);
     styleRule2.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
     new Telerik.Reporting.Drawing.StyleSelector("Caption")});
     styleRule2.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(174)))), ((int)(((byte)(173)))));
     styleRule2.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(115)))), ((int)(((byte)(168)))), ((int)(((byte)(212)))));
     styleRule2.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Dotted;
     styleRule2.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     styleRule2.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(238)))), ((int)(((byte)(243)))));
     styleRule2.Style.Font.Name = "Georgia";
     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 = "Georgia";
     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 = "Georgia";
     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(3.2090227603912354D);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Beispiel #28
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.TextBox textBox14;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ReportHopDongChinhThuc));
     Telerik.Reporting.ReportParameter reportParameter1       = new Telerik.Reporting.ReportParameter();
     this.detail            = new Telerik.Reporting.DetailSection();
     this.textBox9          = new Telerik.Reporting.TextBox();
     this.textBox10         = new Telerik.Reporting.TextBox();
     this.textBox11         = new Telerik.Reporting.TextBox();
     this.textBox16         = 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.textBox5          = new Telerik.Reporting.TextBox();
     this.textBox6          = new Telerik.Reporting.TextBox();
     this.textBox7          = new Telerik.Reporting.TextBox();
     this.textBox8          = new Telerik.Reporting.TextBox();
     this.textBox12         = new Telerik.Reporting.TextBox();
     this.textBox13         = new Telerik.Reporting.TextBox();
     this.textBox15         = new Telerik.Reporting.TextBox();
     this.textBox18         = new Telerik.Reporting.TextBox();
     this.textBox20         = 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.textBox28         = new Telerik.Reporting.TextBox();
     this.textBox29         = 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.textBox27         = new Telerik.Reporting.TextBox();
     this.textBox17         = new Telerik.Reporting.TextBox();
     this.textBox60         = new Telerik.Reporting.TextBox();
     this.textBox39         = new Telerik.Reporting.TextBox();
     this.textBox41         = new Telerik.Reporting.TextBox();
     this.textBox19         = new Telerik.Reporting.TextBox();
     this.textBox21         = new Telerik.Reporting.TextBox();
     this.textBox30         = new Telerik.Reporting.TextBox();
     this.textBox31         = new Telerik.Reporting.TextBox();
     this.textBox40         = 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.subReport1        = new Telerik.Reporting.SubReport();
     this.reportCV1         = new Aits_Hrm.Report.SubRp_NgSDLD();
     this.subReport2        = new Telerik.Reporting.SubReport();
     this.subRp_NgLD1       = new Aits_Hrm.Report.SubRp_NgLD();
     this.entityDataSource1 = new Telerik.Reporting.EntityDataSource();
     textBox14 = new Telerik.Reporting.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.reportCV1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.subRp_NgLD1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // textBox14
     //
     textBox14.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(2.8000001907348633D));
     textBox14.Name            = "textBox14";
     textBox14.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.9000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     textBox14.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
     textBox14.TextWrap        = false;
     resources.ApplyResources(textBox14, "textBox14");
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(16.820980072021484D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.textBox9,
         this.textBox10,
         this.textBox11,
         this.textBox16,
         this.subReport1,
         this.subReport2,
         this.textBox1,
         this.textBox2,
         this.textBox3,
         this.textBox4,
         this.textBox5,
         this.textBox6,
         this.textBox7,
         this.textBox8,
         this.textBox12,
         this.textBox13,
         textBox14,
         this.textBox15,
         this.textBox18,
         this.textBox20,
         this.textBox22,
         this.textBox23,
         this.textBox24,
         this.textBox25,
         this.textBox26,
         this.textBox28,
         this.textBox29,
         this.textBox32,
         this.textBox33,
         this.textBox34,
         this.textBox35,
         this.textBox36,
         this.textBox37,
         this.textBox38,
         this.textBox27,
         this.textBox17,
         this.textBox60,
         this.textBox39,
         this.textBox41,
         this.textBox19,
         this.textBox21,
         this.textBox30,
         this.textBox31,
         this.textBox40,
         this.textBox42,
         this.textBox43,
         this.textBox44,
         this.textBox45
     });
     this.detail.Name                = "detail";
     this.detail.PageBreak           = Telerik.Reporting.PageBreak.After;
     this.detail.Style.Font.Name     = "Times New Roman";
     this.detail.Style.Font.Size     = Telerik.Reporting.Drawing.Unit.Point(12D);
     this.detail.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     //
     // textBox9
     //
     this.textBox9.Location            = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.0875002145767212D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.textBox9.Name                = "textBox9";
     this.textBox9.Size                = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.8125D), Telerik.Reporting.Drawing.Unit.Inch(0.47916677594184875D));
     this.textBox9.Style.Font.Bold     = true;
     this.textBox9.Style.TextAlign     = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox9.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     resources.ApplyResources(this.textBox9, "textBox9");
     //
     // textBox10
     //
     this.textBox10.Location            = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.5479167103767395D));
     this.textBox10.Name                = "textBox10";
     this.textBox10.Size                = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox10.Style.Font.Bold     = true;
     this.textBox10.Style.Font.Size     = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox10.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     resources.ApplyResources(this.textBox10, "textBox10");
     //
     // textBox11
     //
     this.textBox11.Location            = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.4874998331069946D), Telerik.Reporting.Drawing.Unit.Inch(1D));
     this.textBox11.Name                = "textBox11";
     this.textBox11.Size                = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.0000007152557373D), Telerik.Reporting.Drawing.Unit.Inch(0.49999994039535522D));
     this.textBox11.Style.Font.Bold     = true;
     this.textBox11.Style.Font.Size     = Telerik.Reporting.Drawing.Unit.Point(16D);
     this.textBox11.Style.TextAlign     = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox11.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     resources.ApplyResources(this.textBox11, "textBox11");
     //
     // textBox16
     //
     this.textBox16.Location            = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.74791669845581055D));
     this.textBox16.Name                = "textBox16";
     this.textBox16.Size                = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.30000004172325134D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox16.Style.Font.Bold     = true;
     this.textBox16.Style.Font.Size     = Telerik.Reporting.Drawing.Unit.Point(11D);
     this.textBox16.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Top;
     resources.ApplyResources(this.textBox16, "textBox16");
     //
     // textBox1
     //
     this.textBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(2.293055534362793D));
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     resources.ApplyResources(this.textBox1, "textBox1");
     //
     // textBox2
     //
     this.textBox2.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(2.6000001430511475D));
     this.textBox2.Name            = "textBox2";
     this.textBox2.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox2.Style.Font.Bold = true;
     resources.ApplyResources(this.textBox2, "textBox2");
     //
     // textBox3
     //
     this.textBox3.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(4D));
     this.textBox3.Name            = "textBox3";
     this.textBox3.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.16041639447212219D));
     this.textBox3.Style.Font.Bold = true;
     resources.ApplyResources(this.textBox3, "textBox3");
     //
     // textBox4
     //
     this.textBox4.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(4.6171360015869141D));
     this.textBox4.Name            = "textBox4";
     this.textBox4.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox4.Style.Font.Bold = true;
     resources.ApplyResources(this.textBox4, "textBox4");
     //
     // textBox5
     //
     this.textBox5.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(9.7921342849731445D));
     this.textBox5.Name            = "textBox5";
     this.textBox5.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.1000008583068848D), Telerik.Reporting.Drawing.Unit.Inch(0.1999993771314621D));
     this.textBox5.Style.Font.Bold = true;
     resources.ApplyResources(this.textBox5, "textBox5");
     //
     // textBox6
     //
     this.textBox6.Location            = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(11.627785682678223D));
     this.textBox6.Name                = "textBox6";
     this.textBox6.Size                = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.20277351140975952D));
     this.textBox6.Style.Font.Bold     = true;
     this.textBox6.Style.TextAlign     = Telerik.Reporting.Drawing.HorizontalAlign.Left;
     this.textBox6.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Bottom;
     resources.ApplyResources(this.textBox6, "textBox6");
     //
     // textBox7
     //
     this.textBox7.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(4.1604161262512207D));
     this.textBox7.Name     = "textBox7";
     this.textBox7.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.43958359956741333D));
     resources.ApplyResources(this.textBox7, "textBox7");
     //
     // textBox8
     //
     this.textBox8.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(4.8375043869018555D));
     this.textBox8.Name     = "textBox8";
     this.textBox8.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.39999961853027344D));
     resources.ApplyResources(this.textBox8, "textBox8");
     //
     // textBox12
     //
     this.textBox12.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(10.073613166809082D));
     this.textBox12.Name     = "textBox12";
     this.textBox12.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(1.5402781963348389D));
     resources.ApplyResources(this.textBox12, "textBox12");
     //
     // textBox13
     //
     this.textBox13.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(11.847229957580566D));
     this.textBox13.Name     = "textBox13";
     this.textBox13.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.9937736988067627D));
     resources.ApplyResources(this.textBox13, "textBox13");
     //
     // textBox15
     //
     this.textBox15.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.8263888359069824D), Telerik.Reporting.Drawing.Unit.Inch(2.8000001907348633D));
     this.textBox15.Name     = "textBox15";
     this.textBox15.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.6736116409301758D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     //
     // textBox18
     //
     this.textBox18.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.3113691788599908E-09D), Telerik.Reporting.Drawing.Unit.Inch(3.0000002384185791D));
     this.textBox18.Multiline       = false;
     this.textBox18.Name            = "textBox18";
     this.textBox18.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.8402783870697021D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox18.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
     resources.ApplyResources(this.textBox18, "textBox18");
     //
     // textBox20
     //
     this.textBox20.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.0999999046325684D), Telerik.Reporting.Drawing.Unit.Inch(3.0069448947906494D));
     this.textBox20.Multiline       = false;
     this.textBox20.Name            = "textBox20";
     this.textBox20.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.40000057220459D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox20.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
     resources.ApplyResources(this.textBox20, "textBox20");
     //
     // textBox22
     //
     this.textBox22.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(3.200000524520874D));
     this.textBox22.Name     = "textBox22";
     this.textBox22.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.5D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     resources.ApplyResources(this.textBox22, "textBox22");
     //
     // textBox23
     //
     this.textBox23.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.426389217376709D), Telerik.Reporting.Drawing.Unit.Inch(3.200000524520874D));
     this.textBox23.Name     = "textBox23";
     this.textBox23.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(5.0736112594604492D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     resources.ApplyResources(this.textBox23, "textBox23");
     //
     // textBox24
     //
     this.textBox24.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(3.4000003337860107D));
     this.textBox24.Name     = "textBox24";
     this.textBox24.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.8000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     resources.ApplyResources(this.textBox24, "textBox24");
     //
     // textBox25
     //
     this.textBox25.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.7597224712371826D), Telerik.Reporting.Drawing.Unit.Inch(3.4000003337860107D));
     this.textBox25.Name     = "textBox25";
     this.textBox25.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.7402772903442383D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     resources.ApplyResources(this.textBox25, "textBox25");
     //
     // textBox26
     //
     this.textBox26.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(3.6000006198883057D));
     this.textBox26.Name     = "textBox26";
     this.textBox26.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     resources.ApplyResources(this.textBox26, "textBox26");
     //
     // textBox28
     //
     this.textBox28.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(2.0930554866790771D));
     this.textBox28.Name     = "textBox28";
     this.textBox28.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6000000238418579D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     resources.ApplyResources(this.textBox28, "textBox28");
     //
     // textBox29
     //
     this.textBox29.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.5597221851348877D), Telerik.Reporting.Drawing.Unit.Inch(2.0930554866790771D));
     this.textBox29.Name     = "textBox29";
     this.textBox29.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.9402780532836914D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     resources.ApplyResources(this.textBox29, "textBox29");
     //
     // textBox32
     //
     this.textBox32.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.0000002384185791D), Telerik.Reporting.Drawing.Unit.Inch(12.924460411071777D));
     this.textBox32.Name     = "textBox32";
     this.textBox32.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.5999996662139893D), Telerik.Reporting.Drawing.Unit.Inch(0.19999949634075165D));
     resources.ApplyResources(this.textBox32, "textBox32");
     //
     // textBox33
     //
     this.textBox33.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2D), Telerik.Reporting.Drawing.Unit.Inch(13.224457740783691D));
     this.textBox33.Name            = "textBox33";
     this.textBox33.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(4.5D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox33.Style.Font.Bold = true;
     this.textBox33.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(11D);
     this.textBox33.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     resources.ApplyResources(this.textBox33, "textBox33");
     //
     // textBox34
     //
     this.textBox34.Location            = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.5D), Telerik.Reporting.Drawing.Unit.Inch(13.424460411071777D));
     this.textBox34.Name                = "textBox34";
     this.textBox34.Size                = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.3000004291534424D), Telerik.Reporting.Drawing.Unit.Inch(0.28958192467689514D));
     this.textBox34.Style.Font.Bold     = true;
     this.textBox34.Style.Font.Size     = Telerik.Reporting.Drawing.Unit.Point(11D);
     this.textBox34.Style.TextAlign     = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox34.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle;
     resources.ApplyResources(this.textBox34, "textBox34");
     //
     // textBox35
     //
     this.textBox35.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(13.424460411071777D));
     this.textBox35.Name            = "textBox35";
     this.textBox35.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.200000524520874D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox35.Style.Font.Bold = true;
     this.textBox35.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(11D);
     this.textBox35.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     resources.ApplyResources(this.textBox35, "textBox35");
     //
     // textBox36
     //
     this.textBox36.Location          = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.30000004172325134D), Telerik.Reporting.Drawing.Unit.Inch(13.624457359313965D));
     this.textBox36.Name              = "textBox36";
     this.textBox36.Size              = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6000003814697266D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox36.Style.Font.Bold   = false;
     this.textBox36.Style.Font.Italic = true;
     this.textBox36.Style.Font.Size   = Telerik.Reporting.Drawing.Unit.Point(10D);
     this.textBox36.Style.TextAlign   = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     resources.ApplyResources(this.textBox36, "textBox36");
     //
     // textBox37
     //
     this.textBox37.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.30000004172325134D), Telerik.Reporting.Drawing.Unit.Inch(14.894591331481934D));
     this.textBox37.Name            = "textBox37";
     this.textBox37.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.8000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox37.Style.Font.Bold = true;
     this.textBox37.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     resources.ApplyResources(this.textBox37, "textBox37");
     //
     // textBox38
     //
     this.textBox38.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.5000002384185791D), Telerik.Reporting.Drawing.Unit.Inch(14.894591331481934D));
     this.textBox38.Name            = "textBox38";
     this.textBox38.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.8000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox38.Style.Font.Bold = true;
     this.textBox38.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     resources.ApplyResources(this.textBox38, "textBox38");
     //
     // textBox27
     //
     this.textBox27.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(6.0986132621765137D));
     this.textBox27.Name     = "textBox27";
     this.textBox27.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.8013872504234314D));
     resources.ApplyResources(this.textBox27, "textBox27");
     //
     // textBox17
     //
     this.textBox17.Location            = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.30000004172325134D), Telerik.Reporting.Drawing.Unit.Inch(0.74791669845581055D));
     this.textBox17.Name                = "textBox17";
     this.textBox17.Size                = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.2000007629394531D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox17.Style.Font.Bold     = false;
     this.textBox17.Style.Font.Size     = Telerik.Reporting.Drawing.Unit.Point(11D);
     this.textBox17.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Top;
     resources.ApplyResources(this.textBox17, "textBox17");
     //
     // textBox60
     //
     this.textBox60.Location        = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.3597222566604614D), Telerik.Reporting.Drawing.Unit.Inch(3.8000004291534424D));
     this.textBox60.Name            = "textBox60";
     this.textBox60.Size            = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(5.1402778625488281D), Telerik.Reporting.Drawing.Unit.Inch(0.20694425702095032D));
     this.textBox60.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     resources.ApplyResources(this.textBox60, "textBox60");
     //
     // textBox39
     //
     this.textBox39.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(8.2784229471499771E-10D), Telerik.Reporting.Drawing.Unit.Inch(9.13658332824707D));
     this.textBox39.Name     = "textBox39";
     this.textBox39.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.5937609076499939D));
     resources.ApplyResources(this.textBox39, "textBox39");
     //
     // textBox41
     //
     this.textBox41.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(8.5486249923706055D));
     this.textBox41.Name     = "textBox41";
     this.textBox41.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.59026628732681274D));
     resources.ApplyResources(this.textBox41, "textBox41");
     //
     // textBox19
     //
     this.textBox19.Location  = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(-3.7252902984619141E-09D), Telerik.Reporting.Drawing.Unit.Inch(5.2328767776489258D));
     this.textBox19.Multiline = false;
     this.textBox19.Name      = "textBox19";
     this.textBox19.Size      = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.2277747392654419D));
     resources.ApplyResources(this.textBox19, "textBox19");
     //
     // textBox21
     //
     this.textBox21.Location  = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(-3.7252902984619141E-09D), Telerik.Reporting.Drawing.Unit.Inch(5.4532442092895508D));
     this.textBox21.Multiline = false;
     this.textBox21.Name      = "textBox21";
     this.textBox21.Size      = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.1763763427734375D));
     resources.ApplyResources(this.textBox21, "textBox21");
     //
     // textBox30
     //
     this.textBox30.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.3000000715255737D), Telerik.Reporting.Drawing.Unit.Inch(5.6782431602478027D));
     this.textBox30.Name     = "textBox30";
     this.textBox30.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6000000238418579D), Telerik.Reporting.Drawing.Unit.Inch(0.2000003457069397D));
     resources.ApplyResources(this.textBox30, "textBox30");
     //
     // textBox31
     //
     this.textBox31.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.352778434753418D), Telerik.Reporting.Drawing.Unit.Inch(5.6782431602478027D));
     this.textBox31.Name     = "textBox31";
     this.textBox31.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.8472216129302979D), Telerik.Reporting.Drawing.Unit.Inch(0.2000003457069397D));
     resources.ApplyResources(this.textBox31, "textBox31");
     //
     // textBox40
     //
     this.textBox40.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.2999999523162842D), Telerik.Reporting.Drawing.Unit.Inch(5.8782434463500977D));
     this.textBox40.Name     = "textBox40";
     this.textBox40.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6000000238418579D), Telerik.Reporting.Drawing.Unit.Inch(0.2000003457069397D));
     resources.ApplyResources(this.textBox40, "textBox40");
     //
     // textBox42
     //
     this.textBox42.Format   = "{0:N0}";
     this.textBox42.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.3527779579162598D), Telerik.Reporting.Drawing.Unit.Inch(5.8782434463500977D));
     this.textBox42.Name     = "textBox42";
     this.textBox42.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.8472216129302979D), Telerik.Reporting.Drawing.Unit.Inch(0.2000003457069397D));
     resources.ApplyResources(this.textBox42, "textBox42");
     //
     // textBox43
     //
     this.textBox43.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(7.837061882019043D));
     this.textBox43.Name     = "textBox43";
     this.textBox43.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.22591738402843475D));
     resources.ApplyResources(this.textBox43, "textBox43");
     //
     // textBox44
     //
     this.textBox44.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(6.83894157409668D));
     this.textBox44.Name     = "textBox44";
     this.textBox44.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.99440425634384155D));
     resources.ApplyResources(this.textBox44, "textBox44");
     //
     // textBox45
     //
     this.textBox45.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(8.0805788040161133D));
     this.textBox45.Name     = "textBox45";
     this.textBox45.Size     = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.41757285594940186D));
     resources.ApplyResources(this.textBox45, "textBox45");
     //
     // subReport1
     //
     this.subReport1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(1.5930554866790772D));
     this.subReport1.Name     = "subReport1";
     this.subReport1.Parameters.Add(new Telerik.Reporting.Parameter("iDNhanVien", "=IDNguoiDaiDien"));
     this.subReport1.ReportSource = this.reportCV1;
     this.subReport1.Size         = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.30000004172325134D));
     //
     // reportCV1
     //
     this.reportCV1.Name = "reportCV1";
     //
     // subReport2
     //
     this.subReport2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(1.8930555582046509D));
     this.subReport2.Name     = "subReport2";
     this.subReport2.Parameters.Add(new Telerik.Reporting.Parameter("iDNhanVien", "=IDNhanVien"));
     this.subReport2.ReportSource = this.subRp_NgLD1;
     this.subReport2.Size         = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     //
     // subRp_NgLD1
     //
     this.subRp_NgLD1.Name = "subRp_NgLD1";
     //
     // entityDataSource1
     //
     this.entityDataSource1.ConnectionString    = "QuanLyNhanSuEntities";
     this.entityDataSource1.Name                = "entityDataSource1";
     this.entityDataSource1.ObjectContext       = typeof(Aits_Hrm.Model.QuanLyNhanSuEntities);
     this.entityDataSource1.ObjectContextMember = "GetHopDongByID";
     this.entityDataSource1.Parameters.AddRange(new Telerik.Reporting.ObjectDataSourceParameter[] {
         new Telerik.Reporting.ObjectDataSourceParameter("iDHopDongLD", typeof(System.Nullable <int>), "=Parameters.iDHopDongLD.Value")
     });
     //
     // ReportHopDongChinhThuc
     //
     this.DataSource = null;
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
         this.detail
     });
     this.Name = "Report2";
     this.PageSettings.Landscape      = false;
     this.PageSettings.Margins.Bottom = Telerik.Reporting.Drawing.Unit.Mm(20D);
     this.PageSettings.Margins.Left   = Telerik.Reporting.Drawing.Unit.Mm(30D);
     this.PageSettings.Margins.Right  = Telerik.Reporting.Drawing.Unit.Mm(15D);
     this.PageSettings.Margins.Top    = Telerik.Reporting.Drawing.Unit.Mm(25D);
     this.PageSettings.PaperKind      = System.Drawing.Printing.PaperKind.A4;
     reportParameter1.Name            = "iDHopDongLD";
     resources.ApplyResources(reportParameter1, "reportParameter1");
     this.ReportParameters.Add(reportParameter1);
     this.Style.BackgroundColor = System.Drawing.Color.White;
     this.Style.Visible         = true;
     this.Width = Telerik.Reporting.Drawing.Unit.Inch(6.5000004768371582D);
     ((System.ComponentModel.ISupportInitialize)(this.reportCV1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.subRp_NgLD1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
        public MemoryStream CreateCoverSheetV2(string _faxTo, string _faxNumber, int _pageCount,
            string notes, string from, int whichCoverSheet)
        {
            MemoryStream _stream = null;
            int _totalFaxPages = _pageCount + 1;
            //whichCoverSheet = 7;
            try
            {
                switch (whichCoverSheet)
                {
                    case 1:
                        report1 = new WaldenReports.CtOrthoFaxCover1();

                        try
                        {
                            _to = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtTo"];
                        }
                        catch (System.StackOverflowException er)
                        {

                        }
                        try
                        {
                            _from = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFrom"];
                        }
                        catch (System.StackOverflowException er)
                        {

                        }
                        try
                        {
                            _pages = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtPages"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            string s1 = er.Message;
                        }
                        try
                        {
                            _faxPhone = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFaxPhone"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            string s1 = er.Message;
                        }
                        try
                        {
                            _notes = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtNote"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            string s1 = er.Message;
                        }
                        try
                        {
                            _to.Value = " " + _faxTo;
                        }
                        catch { }

                        try
                        {
                            _from.Value = " " + from;
                        }
                        catch { }

                        try
                        {
                            _pages.Value = " " + _totalFaxPages.ToString()
                                + " (including cover sheet)";
                        }
                        catch { }

                        try
                        {
                            _faxPhone.Value = " " + _faxNumber;
                        }
                        catch { }

                        try
                        {
                            _notes.Value = " " + notes;
                        }
                        catch { }
                        break;

                    case 2:
                        report1 = new WaldenReports.CtOrthoFaxCover2();
                        try
                        {
                            _to = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtTo"];
                        }
                        catch (System.StackOverflowException er)
                        {

                        }
                        try
                        {
                            _from = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFrom"];
                        }
                        catch (System.StackOverflowException er)
                        {

                        }
                        try
                        {
                            _pages = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtPages"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            string s1 = er.Message;
                        }
                        try
                        {
                            _faxPhone = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFaxPhone"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            string s1 = er.Message;
                        }
                        try
                        {
                            _notes = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtNote"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            string s1 = er.Message;
                        }
                        try
                        {
                            _to.Value = " " + _faxTo;
                        }
                        catch { }

                        try
                        {
                            _from.Value = " " + from;
                        }
                        catch { }

                        try
                        {
                            _pages.Value = " " + _totalFaxPages.ToString()
                                + " (including cover sheet)";
                        }
                        catch { }

                        try
                        {
                            _faxPhone.Value = " " + _faxNumber;
                        }
                        catch { }

                        try
                        {
                            _notes.Value = " " + notes;
                        }
                        catch { }
                        break;

                    case 3:
                        report1 = new WaldenReports.CtOrthoFaxCover3();
                        try
                        {
                            _to = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtTo"];
                        }
                        catch (System.StackOverflowException er)
                        {

                        }
                        try
                        {
                            _from = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFrom"];
                        }
                        catch (System.StackOverflowException er)
                        {

                        }
                        try
                        {
                            _pages = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtPages"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            string s1 = er.Message;
                        }
                        try
                        {
                            _faxPhone = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFaxPhone"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            string s1 = er.Message;
                        }
                        try
                        {
                            _notes = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtNote"];
                        }
                        catch (System.StackOverflowException er)
                        {
                            string s1 = er.Message;
                        }
                        try
                        {
                            _to.Value = " " + _faxTo;
                        }
                        catch { }

                        try
                        {
                            _from.Value = " " + from;
                        }
                        catch { }

                        try
                        {
                            _pages.Value = " " + _totalFaxPages.ToString()
                                + " (including cover sheet)";
                        }
                        catch { }

                        try
                        {
                            _faxPhone.Value = " " + _faxNumber;
                        }
                        catch { }

                        try
                        {
                            _notes.Value = " " + notes;
                        }
                        catch { }
                        break;

                    case 4:
                        report1 = new WaldenReports.FaxCoverCtOrtho2();

                        _to = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtTo"];
                        _from = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFrom"];
                        _pages = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtPages"];
                        _faxPhone = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFaxPhone"];
                        _notes = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtNote"];

                        try
                        {
                            _to.Value = " " + _faxTo;
                        }
                        catch { }

                        try
                        {
                            _from.Value = " " + from;
                        }
                        catch { }

                        try
                        {
                            _pages.Value = " " + _totalFaxPages.ToString()
                                + " (including cover sheet)";
                        }
                        catch { }

                        try
                        {
                            _faxPhone.Value = " " + _faxNumber;
                        }
                        catch { }

                        try
                        {
                            _notes.Value = " " + notes;
                        }
                        catch { }
                        break;

                    case 7:
                        report1 = new WaldenReports.GenericCoverLetter();

                        _to = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtTo"];
                        _from = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtFrom"];
                        _pages = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtPages"];
                        _faxPhone = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtFaxPhone"];
                        _notes = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtNote"];

                        _practiceName = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtPracticeName"];
                        _practiceName.Value = string.Empty;

                        try
                        {
                            _to.Value = " " + _faxTo;

                        }
                        catch { }

                        try
                        {
                            _from.Value = " " + from;
                        }
                        catch { }

                        try
                        {
                            _pages.Value = " " + _totalFaxPages.ToString()
                                + " (including cover sheet)";
                        }
                        catch { }

                        try
                        {
                            _faxPhone.Value = " " + _faxNumber;
                        }
                        catch { }

                        try
                        {
                            _notes.Value = " " + notes;
                        }
                        catch { }

                        break;

                    default:
                        break;
                }//end switch statement

                //Process();
                _stream = ExportToPDF(report1);
                return _stream;
            }
            catch (Exception er)
            {
                //Common.Log("CreateCoverSheet: " + er.Message);
                return _stream;
            }
        }
        private void CreateCoverSheet(string _faxTo,string _faxNumber)
        {
            try
            {
                switch (_whichCoverPage)
                {
                    case 1:
                        report1 = new WaldenReports.NvobgynCover1();

                        _to = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtTo"];
                        _from = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtFrom"];
                        _pages = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtPages"];
                        _faxPhone = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtFaxPhone"];
                        _notes = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtNote"];

                        try
                        {
                            //_to.Value = " " + txtFaxName.Text;
                            _to.Value = " " + _faxTo;
                        }
                        catch { }

                        try
                        {
                            _from.Value = " " + txtFrom.Text;
                        }
                        catch { }

                        try
                        {
                            _pages.Value = " " + _faxing.FaxPageCount.ToString()
                                + " (including cover sheet)";
                        }
                        catch { }

                        try
                        {
                            //_faxPhone.Value = " " + txtFaxNumber.Text;
                            _faxPhone.Value = " " + _faxNumber;
                        }
                        catch { }

                        try
                        {
                            _notes.Value = " " + txtNotes.Text;
                        }
                        catch { }

                       // _to.Value = "To: " + txtFaxName.Text;
                       // _from.Value = "From: " + comboUsers.Text; ;
                       // _pages.Value = "Pages: " + txtPages.Text;
                       // _faxPhone.Value = "Phone: " + txtFaxNumber.Text;
                       // _notes.Value = "Notes: " + txtNotes.Text;

                        break;
                    case 2:
                        report1 = new WaldenReports.GenericCoverLetter();

                        _to = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtTo"];
                        _from = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtFrom"];
                        _pages = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtPages"];
                        _faxPhone = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtFaxPhone"];
                        _notes = (Telerik.Reporting.TextBox)report1.Items[1].Items["txtNote"];

                        _practiceName = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtPracticeName"];
                        _practiceName.Value = Common.PracticeName;

                        try
                        {
                            //_to.Value = " " + txtFaxName.Text;
                            _to.Value = " " + _faxTo;
                            
                        }
                        catch { }

                        try
                        {
                            _from.Value = " " + txtFrom.Text;
                        }
                        catch { }

                        try
                        {
                            _pages.Value = " " + _faxing.FaxPageCount.ToString()
                                + " (including cover sheet)";
                        }
                        catch { }

                        try
                        {
                            //_faxPhone.Value = " " + txtFaxNumber.Text;
                            _faxPhone.Value = " " + _faxNumber;
                        }
                        catch { }

                        try
                        {
                            _notes.Value = " " + txtNotes.Text;
                        }
                        catch { }

                        //_to.Value = " " + txtFaxName.Text;
                        //_from.Value = " " + comboUsers.Text; ;
                        //_pages.Value = " " + _faxing.FaxPageCount.ToString();
                        //_faxPhone.Value = " " + txtFaxNumber.Text;
                        //_notes.Value = " " + txtNotes.Text;

                        break;
                    case 3:

                        report1 = new WaldenReports.FaxCoverCtOrtho();

                        _to = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtTo"];
                        _from = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFrom"];
                        _pages = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtPages"];
                        _faxPhone = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFaxPhone"];
                        _notes = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtNote"];

                        try
                        {
                            //_to.Value = " " + txtFaxName.Text;
                            _to.Value = " " + _faxTo;
                        }
                        catch { }
                        
                        try
                        {
                            _from.Value = " " + txtFrom.Text;
                        }
                        catch { }
                        
                        try
                        {
                            _pages.Value = " " + _faxing.FaxPageCount.ToString()
                                + " (including cover sheet)";
                        }
                        catch { }
                        
                        try
                        {
                            //_faxPhone.Value = " " + txtFaxNumber.Text;
                            _faxPhone.Value = " " + _faxNumber;
                        }
                        catch { }
                        
                        try
                        {
                            _notes.Value = " " + txtNotes.Text;
                        }
                        catch { }
                        break;
                    case 4:
                        report1 = new WaldenReports.FaxCoverCtOrtho2();

                        _to = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtTo"];
                        _from = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFrom"];
                        _pages = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtPages"];
                        _faxPhone = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtFaxPhone"];
                        _notes = (Telerik.Reporting.TextBox)report1.Items[0].Items["txtNote"];

                        try
                        {
                            //_to.Value = " " + txtFaxName.Text;
                            _to.Value = " " + _faxTo;
                        }
                        catch { }

                        try
                        {
                            _from.Value = " " + txtFrom.Text;
                        }
                        catch { }

                        try
                        {
                            _pages.Value = " " + _faxing.FaxPageCount.ToString()
                                + " (including cover sheet)";
                        }
                        catch { }

                        try
                        {
                            //_faxPhone.Value = " " + txtFaxNumber.Text;
                            _faxPhone.Value = " " + _faxNumber;
                        }
                        catch { }

                        try
                        {
                            _notes.Value = " " + txtNotes.Text;
                        }
                        catch { }
                        break;

                    default:
                        break;
                }//end switch statement
                MemoryStream oStream = ExportToPDF(report1);

                FileStream _presStream = new FileStream(Common.StoreComputer  
                    + Common.StoreShare + Common.IndividualPath 
                    + "\\cover.pdf", FileMode.Create);
                oStream.WriteTo(_presStream);
                oStream.Close();
                _presStream.Close();
            }
            catch (Exception er)
            {
                Common.Log("CreateCoverSheet: " + er.Message); 
            }
        }
Beispiel #31
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(DailyDoctorVisit));
     Telerik.Reporting.Group group1 = new Telerik.Reporting.Group();
     Telerik.Reporting.Group group2 = new Telerik.Reporting.Group();
     Telerik.Reporting.Group group3 = 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.labelsGroupFooterSection = new Telerik.Reporting.GroupFooterSection();
     this.labelsGroupHeaderSection = new Telerik.Reporting.GroupHeaderSection();
     this.doctorNameCaptionTextBox = new Telerik.Reporting.TextBox();
     this.visitIDCaptionTextBox = new Telerik.Reporting.TextBox();
     this.patientIDCaptionTextBox = new Telerik.Reporting.TextBox();
     this.entryDateCaptionTextBox1 = new Telerik.Reporting.TextBox();
     this.doctorFeeCaptionTextBox = new Telerik.Reporting.TextBox();
     this.doctorNameGroupFooterSection = new Telerik.Reporting.GroupFooterSection();
     this.doctorNameGroupHeaderSection = new Telerik.Reporting.GroupHeaderSection();
     this.doctorNameDataTextBox = new Telerik.Reporting.TextBox();
     this.entryDateDataTextBox = new Telerik.Reporting.TextBox();
     this.entryDateGroupFooterSection = new Telerik.Reporting.GroupFooterSection();
     this.textBox1 = new Telerik.Reporting.TextBox();
     this.entryDateGroupHeaderSection = new Telerik.Reporting.GroupHeaderSection();
     this.sqlDataSource2 = new Telerik.Reporting.SqlDataSource();
     this.sqlDataSource3 = new Telerik.Reporting.SqlDataSource();
     this.sqlDataSource1 = new Telerik.Reporting.SqlDataSource();
     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.visitIDDataTextBox = new Telerik.Reporting.TextBox();
     this.patientIDDataTextBox = new Telerik.Reporting.TextBox();
     this.entryDateDataTextBox1 = new Telerik.Reporting.TextBox();
     this.doctorFeeDataTextBox = new Telerik.Reporting.TextBox();
     this.textBox2 = new Telerik.Reporting.TextBox();
     this.shape1 = new Telerik.Reporting.Shape();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // 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.20000004768371582D);
     this.labelsGroupHeaderSection.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.doctorNameCaptionTextBox,
     this.visitIDCaptionTextBox,
     this.patientIDCaptionTextBox,
     this.entryDateCaptionTextBox1,
     this.doctorFeeCaptionTextBox});
     this.labelsGroupHeaderSection.Name = "labelsGroupHeaderSection";
     this.labelsGroupHeaderSection.PrintOnEveryPage = true;
     //
     // doctorNameCaptionTextBox
     //
     this.doctorNameCaptionTextBox.CanGrow = true;
     this.doctorNameCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.doctorNameCaptionTextBox.Name = "doctorNameCaptionTextBox";
     this.doctorNameCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.37916669249534607D), Telerik.Reporting.Drawing.Unit.Inch(0.17916671931743622D));
     this.doctorNameCaptionTextBox.StyleName = "Caption";
     this.doctorNameCaptionTextBox.Value = "SlNo";
     //
     // visitIDCaptionTextBox
     //
     this.visitIDCaptionTextBox.CanGrow = true;
     this.visitIDCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.40000000596046448D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.visitIDCaptionTextBox.Name = "visitIDCaptionTextBox";
     this.visitIDCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.0000001192092896D), Telerik.Reporting.Drawing.Unit.Inch(0.17916671931743622D));
     this.visitIDCaptionTextBox.StyleName = "Caption";
     this.visitIDCaptionTextBox.Value = "Visit ID";
     //
     // patientIDCaptionTextBox
     //
     this.patientIDCaptionTextBox.CanGrow = true;
     this.patientIDCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.patientIDCaptionTextBox.Name = "patientIDCaptionTextBox";
     this.patientIDCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1999999284744263D), Telerik.Reporting.Drawing.Unit.Inch(0.17916671931743622D));
     this.patientIDCaptionTextBox.StyleName = "Caption";
     this.patientIDCaptionTextBox.Value = "Patient ID";
     //
     // entryDateCaptionTextBox1
     //
     this.entryDateCaptionTextBox1.CanGrow = true;
     this.entryDateCaptionTextBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.6000001430511475D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.entryDateCaptionTextBox1.Name = "entryDateCaptionTextBox1";
     this.entryDateCaptionTextBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.3000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(0.17916671931743622D));
     this.entryDateCaptionTextBox1.StyleName = "Caption";
     this.entryDateCaptionTextBox1.Value = "Entry Date";
     //
     // doctorFeeCaptionTextBox
     //
     this.doctorFeeCaptionTextBox.CanGrow = true;
     this.doctorFeeCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.9000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.doctorFeeCaptionTextBox.Name = "doctorFeeCaptionTextBox";
     this.doctorFeeCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.7999998927116394D), Telerik.Reporting.Drawing.Unit.Inch(0.17916671931743622D));
     this.doctorFeeCaptionTextBox.StyleName = "Caption";
     this.doctorFeeCaptionTextBox.Value = "Doctor Fee";
     //
     // doctorNameGroupFooterSection
     //
     this.doctorNameGroupFooterSection.Height = Telerik.Reporting.Drawing.Unit.Inch(0.28125D);
     this.doctorNameGroupFooterSection.Name = "doctorNameGroupFooterSection";
     //
     // doctorNameGroupHeaderSection
     //
     this.doctorNameGroupHeaderSection.Height = Telerik.Reporting.Drawing.Unit.Inch(0.245931938290596D);
     this.doctorNameGroupHeaderSection.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.doctorNameDataTextBox,
     this.entryDateDataTextBox});
     this.doctorNameGroupHeaderSection.Name = "doctorNameGroupHeaderSection";
     //
     // doctorNameDataTextBox
     //
     this.doctorNameDataTextBox.CanGrow = true;
     this.doctorNameDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.doctorNameDataTextBox.Name = "doctorNameDataTextBox";
     this.doctorNameDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.125D), Telerik.Reporting.Drawing.Unit.Inch(0.18759854137897492D));
     this.doctorNameDataTextBox.Style.Font.Name = "Arial";
     this.doctorNameDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(10D);
     this.doctorNameDataTextBox.StyleName = "Data";
     this.doctorNameDataTextBox.Value = "=Fields.DoctorName";
     //
     // entryDateDataTextBox
     //
     this.entryDateDataTextBox.CanGrow = true;
     this.entryDateDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.1458332538604736D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.entryDateDataTextBox.Name = "entryDateDataTextBox";
     this.entryDateDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.5541667938232422D), Telerik.Reporting.Drawing.Unit.Inch(0.245931938290596D));
     this.entryDateDataTextBox.Style.Font.Name = "Arial";
     this.entryDateDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(10D);
     this.entryDateDataTextBox.StyleName = "Data";
     this.entryDateDataTextBox.Value = "=Fields.EntryDate";
     //
     // entryDateGroupFooterSection
     //
     this.entryDateGroupFooterSection.Height = Telerik.Reporting.Drawing.Unit.Inch(0.25216212868690491D);
     this.entryDateGroupFooterSection.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.textBox1});
     this.entryDateGroupFooterSection.Name = "entryDateGroupFooterSection";
     this.entryDateGroupFooterSection.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     //
     // textBox1
     //
     this.textBox1.Format = "{0:N2}";
     this.textBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.9000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(7.8837074397597462E-05D));
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.7999998927116394D), Telerik.Reporting.Drawing.Unit.Inch(0.1999211311340332D));
     this.textBox1.Style.Font.Bold = true;
     this.textBox1.Style.Font.Name = "Arial";
     this.textBox1.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox1.Value = "= Sum(Fields.DoctorFee)";
     //
     // entryDateGroupHeaderSection
     //
     this.entryDateGroupHeaderSection.Height = Telerik.Reporting.Drawing.Unit.Inch(0.0520833320915699D);
     this.entryDateGroupHeaderSection.Name = "entryDateGroupHeaderSection";
     //
     // sqlDataSource2
     //
     this.sqlDataSource2.ConnectionString = "OnLinePrescriptionConnectionString";
     this.sqlDataSource2.Name = "sqlDataSource2";
     this.sqlDataSource2.SelectCommand = resources.GetString("sqlDataSource2.SelectCommand");
     //
     // sqlDataSource3
     //
     this.sqlDataSource3.ConnectionString = "OnLinePrescriptionConnectionString";
     this.sqlDataSource3.Name = "sqlDataSource3";
     this.sqlDataSource3.SelectCommand = resources.GetString("sqlDataSource3.SelectCommand");
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionString = "OnLinePrescriptionConnectionString";
     this.sqlDataSource1.Name = "sqlDataSource1";
     this.sqlDataSource1.Parameters.AddRange(new Telerik.Reporting.SqlDataSourceParameter[] {
     new Telerik.Reporting.SqlDataSourceParameter("@StDate", System.Data.DbType.DateTime, "=Parameters.StDate.Value"),
     new Telerik.Reporting.SqlDataSourceParameter("@EndDate", System.Data.DbType.DateTime, "=Parameters.EndDate.Value")});
     this.sqlDataSource1.SelectCommand = "dbo.sp_rpt_DailyDoctorVisit";
     this.sqlDataSource1.SelectCommandType = Telerik.Reporting.SqlDataSourceCommandType.StoredProcedure;
     //
     // 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(6.4166665077209473D), Telerik.Reporting.Drawing.Unit.Inch(0.40000000596046448D));
     this.reportNameTextBox.StyleName = "PageInfo";
     this.reportNameTextBox.Value = "DailyDoctorVisit";
     //
     // 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.1979167461395264D), 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.2395832538604736D), 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.1979167461395264D), 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.25833335518836975D);
     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(6.4583334922790527D), Telerik.Reporting.Drawing.Unit.Inch(0.25833335518836975D));
     this.titleTextBox.StyleName = "Title";
     this.titleTextBox.Value = "DailyDoctorVisit";
     //
     // reportFooter
     //
     this.reportFooter.Height = Telerik.Reporting.Drawing.Unit.Inch(0.28125D);
     this.reportFooter.Name = "reportFooter";
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(0.2540680468082428D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.visitIDDataTextBox,
     this.patientIDDataTextBox,
     this.entryDateDataTextBox1,
     this.doctorFeeDataTextBox,
     this.textBox2,
     this.shape1});
     this.detail.Name = "detail";
     //
     // visitIDDataTextBox
     //
     this.visitIDDataTextBox.CanGrow = true;
     this.visitIDDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.30007871985435486D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.visitIDDataTextBox.Name = "visitIDDataTextBox";
     this.visitIDDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.0999213457107544D), Telerik.Reporting.Drawing.Unit.Inch(0.18740145862102509D));
     this.visitIDDataTextBox.Style.Font.Name = "Arial";
     this.visitIDDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.visitIDDataTextBox.StyleName = "Data";
     this.visitIDDataTextBox.Value = "=Fields.VisitID";
     //
     // patientIDDataTextBox
     //
     this.patientIDDataTextBox.CanGrow = true;
     this.patientIDDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.patientIDDataTextBox.Name = "patientIDDataTextBox";
     this.patientIDDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1915875673294067D), Telerik.Reporting.Drawing.Unit.Inch(0.18740145862102509D));
     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";
     //
     // entryDateDataTextBox1
     //
     this.entryDateDataTextBox1.CanGrow = true;
     this.entryDateDataTextBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.5916664600372314D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.entryDateDataTextBox1.Name = "entryDateDataTextBox1";
     this.entryDateDataTextBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.3083336353302D), Telerik.Reporting.Drawing.Unit.Inch(0.18740145862102509D));
     this.entryDateDataTextBox1.Style.Font.Name = "Arial";
     this.entryDateDataTextBox1.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.entryDateDataTextBox1.StyleName = "Data";
     this.entryDateDataTextBox1.Value = "=Fields.EntryDate";
     //
     // doctorFeeDataTextBox
     //
     this.doctorFeeDataTextBox.CanGrow = true;
     this.doctorFeeDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.9000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.doctorFeeDataTextBox.Name = "doctorFeeDataTextBox";
     this.doctorFeeDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.7999998927116394D), Telerik.Reporting.Drawing.Unit.Inch(0.18740145862102509D));
     this.doctorFeeDataTextBox.Style.Font.Name = "Arial";
     this.doctorFeeDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.doctorFeeDataTextBox.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.doctorFeeDataTextBox.StyleName = "Data";
     this.doctorFeeDataTextBox.Value = "=Fields.DoctorFee";
     //
     // textBox2
     //
     this.textBox2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.30000004172325134D), Telerik.Reporting.Drawing.Unit.Inch(0.16016387939453125D));
     this.textBox2.Style.Font.Name = "Arial";
     this.textBox2.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.textBox2.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox2.Value = "= RowNumber()";
     //
     // shape1
     //
     this.shape1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.2019847184419632D));
     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(5.7000002861022949D), Telerik.Reporting.Drawing.Unit.Inch(0.0520833320915699D));
     //
     // DailyDoctorVisit
     //
     this.DataSource = this.sqlDataSource1;
     group1.GroupFooter = this.labelsGroupFooterSection;
     group1.GroupHeader = this.labelsGroupHeaderSection;
     group1.Name = "labelsGroup";
     group2.GroupFooter = this.doctorNameGroupFooterSection;
     group2.GroupHeader = this.doctorNameGroupHeaderSection;
     group2.Groupings.Add(new Telerik.Reporting.Grouping("=Fields.DoctorName"));
     group2.Name = "doctorNameGroup";
     group3.GroupFooter = this.entryDateGroupFooterSection;
     group3.GroupHeader = this.entryDateGroupHeaderSection;
     group3.Groupings.Add(new Telerik.Reporting.Grouping("=Fields.EntryDate"));
     group3.Name = "entryDateGroup";
     this.Groups.AddRange(new Telerik.Reporting.Group[] {
     group1,
     group2,
     group3});
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.labelsGroupHeaderSection,
     this.labelsGroupFooterSection,
     this.doctorNameGroupHeaderSection,
     this.doctorNameGroupFooterSection,
     this.entryDateGroupHeaderSection,
     this.entryDateGroupFooterSection,
     this.pageHeader,
     this.pageFooter,
     this.reportHeader,
     this.reportFooter,
     this.detail});
     this.Name = "DailyDoctorVisit";
     this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), 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.StyleSelector("Title")});
     styleRule1.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(214)))), ((int)(((byte)(97)))), ((int)(((byte)(74)))));
     styleRule1.Style.Font.Name = "Georgia";
     styleRule1.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(18D);
     styleRule2.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
     new Telerik.Reporting.Drawing.StyleSelector("Caption")});
     styleRule2.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(174)))), ((int)(((byte)(173)))));
     styleRule2.Style.BorderColor.Default = System.Drawing.Color.FromArgb(((int)(((byte)(115)))), ((int)(((byte)(168)))), ((int)(((byte)(212)))));
     styleRule2.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Dotted;
     styleRule2.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Pixel(1D);
     styleRule2.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(238)))), ((int)(((byte)(243)))));
     styleRule2.Style.Font.Name = "Georgia";
     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 = "Georgia";
     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 = "Georgia";
     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(6.4375D);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Beispiel #32
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(DailyVisitByDoctor));
     Telerik.Reporting.Group group1 = new Telerik.Reporting.Group();
     Telerik.Reporting.Group group2 = new Telerik.Reporting.Group();
     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.doctorNameGroupFooterSection = new Telerik.Reporting.GroupFooterSection();
     this.textBox3 = new Telerik.Reporting.TextBox();
     this.doctorNameGroupHeaderSection = new Telerik.Reporting.GroupHeaderSection();
     this.doctorNameCaptionTextBox = new Telerik.Reporting.TextBox();
     this.doctorNameDataTextBox = new Telerik.Reporting.TextBox();
     this.labelsGroupFooterSection = new Telerik.Reporting.GroupFooterSection();
     this.labelsGroupHeaderSection = new Telerik.Reporting.GroupHeaderSection();
     this.entryDateCaptionTextBox = new Telerik.Reporting.TextBox();
     this.visitIDCaptionTextBox = new Telerik.Reporting.TextBox();
     this.patientIDCaptionTextBox = new Telerik.Reporting.TextBox();
     this.doctorFeeCaptionTextBox = new Telerik.Reporting.TextBox();
     this.textBox1 = new Telerik.Reporting.TextBox();
     this.sqlDataSource2 = new Telerik.Reporting.SqlDataSource();
     this.sqlDataSource3 = new Telerik.Reporting.SqlDataSource();
     this.sqlDataSource1 = new Telerik.Reporting.SqlDataSource();
     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.entryDateDataTextBox = new Telerik.Reporting.TextBox();
     this.visitIDDataTextBox = new Telerik.Reporting.TextBox();
     this.patientIDDataTextBox = new Telerik.Reporting.TextBox();
     this.doctorFeeDataTextBox = new Telerik.Reporting.TextBox();
     this.textBox2 = new Telerik.Reporting.TextBox();
     this.shape1 = new Telerik.Reporting.Shape();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // doctorNameGroupFooterSection
     //
     this.doctorNameGroupFooterSection.Height = Telerik.Reporting.Drawing.Unit.Inch(0.22896988689899445D);
     this.doctorNameGroupFooterSection.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.textBox3});
     this.doctorNameGroupFooterSection.Name = "doctorNameGroupFooterSection";
     //
     // textBox3
     //
     this.textBox3.Format = "{0:N2}";
     this.textBox3.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.4473919868469238D), Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D));
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.85260838270187378D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox3.Style.Font.Bold = true;
     this.textBox3.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.textBox3.Value = "= Sum(Fields.DoctorFee)";
     //
     // doctorNameGroupHeaderSection
     //
     this.doctorNameGroupHeaderSection.Height = Telerik.Reporting.Drawing.Unit.Inch(0.5D);
     this.doctorNameGroupHeaderSection.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.doctorNameCaptionTextBox,
     this.doctorNameDataTextBox});
     this.doctorNameGroupHeaderSection.Name = "doctorNameGroupHeaderSection";
     //
     // doctorNameCaptionTextBox
     //
     this.doctorNameCaptionTextBox.CanGrow = true;
     this.doctorNameCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.doctorNameCaptionTextBox.Name = "doctorNameCaptionTextBox";
     this.doctorNameCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.87916678190231323D), Telerik.Reporting.Drawing.Unit.Inch(0.17916662991046906D));
     this.doctorNameCaptionTextBox.Style.Font.Bold = true;
     this.doctorNameCaptionTextBox.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.doctorNameCaptionTextBox.StyleName = "Caption";
     this.doctorNameCaptionTextBox.Value = "Doctor Name:";
     //
     // doctorNameDataTextBox
     //
     this.doctorNameDataTextBox.CanGrow = true;
     this.doctorNameDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.doctorNameDataTextBox.Name = "doctorNameDataTextBox";
     this.doctorNameDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.8000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(0.17916662991046906D));
     this.doctorNameDataTextBox.Style.Font.Bold = true;
     this.doctorNameDataTextBox.StyleName = "Data";
     this.doctorNameDataTextBox.Value = "=Fields.DoctorName";
     //
     // 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.22918622195720673D);
     this.labelsGroupHeaderSection.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.entryDateCaptionTextBox,
     this.visitIDCaptionTextBox,
     this.patientIDCaptionTextBox,
     this.doctorFeeCaptionTextBox,
     this.textBox1});
     this.labelsGroupHeaderSection.Name = "labelsGroupHeaderSection";
     this.labelsGroupHeaderSection.PrintOnEveryPage = true;
     //
     // entryDateCaptionTextBox
     //
     this.entryDateCaptionTextBox.CanGrow = true;
     this.entryDateCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.entryDateCaptionTextBox.Name = "entryDateCaptionTextBox";
     this.entryDateCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6554708480834961D), Telerik.Reporting.Drawing.Unit.Inch(0.18759854137897492D));
     this.entryDateCaptionTextBox.Style.Font.Bold = true;
     this.entryDateCaptionTextBox.StyleName = "Caption";
     this.entryDateCaptionTextBox.Value = "Entry Date";
     //
     // visitIDCaptionTextBox
     //
     this.visitIDCaptionTextBox.CanGrow = true;
     this.visitIDCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.1763043403625488D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.visitIDCaptionTextBox.Name = "visitIDCaptionTextBox";
     this.visitIDCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6554708480834961D), Telerik.Reporting.Drawing.Unit.Inch(0.18759854137897492D));
     this.visitIDCaptionTextBox.Style.Font.Bold = true;
     this.visitIDCaptionTextBox.StyleName = "Caption";
     this.visitIDCaptionTextBox.Value = "Visit ID";
     //
     // patientIDCaptionTextBox
     //
     this.patientIDCaptionTextBox.CanGrow = true;
     this.patientIDCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.8526086807250977D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.patientIDCaptionTextBox.Name = "patientIDCaptionTextBox";
     this.patientIDCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6554708480834961D), Telerik.Reporting.Drawing.Unit.Inch(0.18759854137897492D));
     this.patientIDCaptionTextBox.Style.Font.Bold = true;
     this.patientIDCaptionTextBox.StyleName = "Caption";
     this.patientIDCaptionTextBox.Value = "Patient ID";
     //
     // doctorFeeCaptionTextBox
     //
     this.doctorFeeCaptionTextBox.CanGrow = true;
     this.doctorFeeCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.5289125442504883D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.doctorFeeCaptionTextBox.Name = "doctorFeeCaptionTextBox";
     this.doctorFeeCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.75025433301925659D), Telerik.Reporting.Drawing.Unit.Inch(0.18759854137897492D));
     this.doctorFeeCaptionTextBox.Style.Font.Bold = true;
     this.doctorFeeCaptionTextBox.StyleName = "Caption";
     this.doctorFeeCaptionTextBox.Value = "Doctor Fee";
     //
     // textBox1
     //
     this.textBox1.CanGrow = true;
     this.textBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.49992132186889648D), Telerik.Reporting.Drawing.Unit.Inch(0.18759854137897492D));
     this.textBox1.Style.Font.Bold = true;
     this.textBox1.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox1.StyleName = "Caption";
     this.textBox1.Value = "SLNo";
     //
     // sqlDataSource2
     //
     this.sqlDataSource2.ConnectionString = "OnLinePrescriptionConnectionString";
     this.sqlDataSource2.Name = "sqlDataSource2";
     this.sqlDataSource2.SelectCommand = resources.GetString("sqlDataSource2.SelectCommand");
     //
     // sqlDataSource3
     //
     this.sqlDataSource3.ConnectionString = "OnLinePrescriptionConnectionString";
     this.sqlDataSource3.Name = "sqlDataSource3";
     this.sqlDataSource3.SelectCommand = resources.GetString("sqlDataSource3.SelectCommand");
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionString = "OnLinePrescriptionConnectionString";
     this.sqlDataSource1.Name = "sqlDataSource1";
     this.sqlDataSource1.Parameters.AddRange(new Telerik.Reporting.SqlDataSourceParameter[] {
     new Telerik.Reporting.SqlDataSourceParameter("@DoctorName", System.Data.DbType.AnsiString, "=Parameters.DoctorName.Value"),
     new Telerik.Reporting.SqlDataSourceParameter("@VisitDate", System.Data.DbType.DateTime, "=Parameters.VisitDate.Value")});
     this.sqlDataSource1.SelectCommand = "dbo.sp_rpt_DailyVisitByDoctor";
     this.sqlDataSource1.SelectCommandType = Telerik.Reporting.SqlDataSourceCommandType.StoredProcedure;
     //
     // 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(6.6843833923339844D), Telerik.Reporting.Drawing.Unit.Inch(0.40000000596046448D));
     this.reportNameTextBox.StyleName = "PageInfo";
     this.reportNameTextBox.Value = "DailyVisitByDoctor";
     //
     // pageFooter
     //
     this.pageFooter.Height = Telerik.Reporting.Drawing.Unit.Inch(0.16041669249534607D);
     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.1395832747220993D));
     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(2.92655873298645D), Telerik.Reporting.Drawing.Unit.Inch(0.1395832747220993D));
     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(6.7260499000549316D), Telerik.Reporting.Drawing.Unit.Inch(0.35833331942558289D));
     this.titleTextBox.StyleName = "Title";
     this.titleTextBox.Value = "DailyVisitByDoctor";
     //
     // reportFooter
     //
     this.reportFooter.Height = Telerik.Reporting.Drawing.Unit.Inch(0.28125D);
     this.reportFooter.Name = "reportFooter";
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(0.21892738342285156D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.entryDateDataTextBox,
     this.visitIDDataTextBox,
     this.patientIDDataTextBox,
     this.doctorFeeDataTextBox,
     this.textBox2,
     this.shape1});
     this.detail.Name = "detail";
     //
     // entryDateDataTextBox
     //
     this.entryDateDataTextBox.CanGrow = true;
     this.entryDateDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.entryDateDataTextBox.Name = "entryDateDataTextBox";
     this.entryDateDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6554708480834961D), Telerik.Reporting.Drawing.Unit.Inch(0.14593188464641571D));
     this.entryDateDataTextBox.StyleName = "Data";
     this.entryDateDataTextBox.Value = "=Fields.EntryDate";
     //
     // visitIDDataTextBox
     //
     this.visitIDDataTextBox.CanGrow = true;
     this.visitIDDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.1763043403625488D), 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.6554708480834961D), Telerik.Reporting.Drawing.Unit.Inch(0.14593188464641571D));
     this.visitIDDataTextBox.StyleName = "Data";
     this.visitIDDataTextBox.Value = "=Fields.VisitID";
     //
     // patientIDDataTextBox
     //
     this.patientIDDataTextBox.CanGrow = true;
     this.patientIDDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.8526086807250977D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.patientIDDataTextBox.Name = "patientIDDataTextBox";
     this.patientIDDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.6554708480834961D), Telerik.Reporting.Drawing.Unit.Inch(0.14593188464641571D));
     this.patientIDDataTextBox.StyleName = "Data";
     this.patientIDDataTextBox.Value = "=Fields.PatientID";
     //
     // doctorFeeDataTextBox
     //
     this.doctorFeeDataTextBox.CanGrow = true;
     this.doctorFeeDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.5289125442504883D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.doctorFeeDataTextBox.Name = "doctorFeeDataTextBox";
     this.doctorFeeDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.75025433301925659D), Telerik.Reporting.Drawing.Unit.Inch(0.14593188464641571D));
     this.doctorFeeDataTextBox.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Right;
     this.doctorFeeDataTextBox.StyleName = "Data";
     this.doctorFeeDataTextBox.Value = "=Fields.DoctorFee";
     //
     // textBox2
     //
     this.textBox2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.4791666567325592D), Telerik.Reporting.Drawing.Unit.Inch(0.13315598666667938D));
     this.textBox2.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.textBox2.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.textBox2.Value = "= RowNumber()";
     //
     // shape1
     //
     this.shape1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.16684405505657196D));
     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.3000006675720215D), Telerik.Reporting.Drawing.Unit.Inch(0.0520833320915699D));
     //
     // DailyVisitByDoctor
     //
     this.DataSource = this.sqlDataSource1;
     group1.GroupFooter = this.doctorNameGroupFooterSection;
     group1.GroupHeader = this.doctorNameGroupHeaderSection;
     group1.Groupings.Add(new Telerik.Reporting.Grouping("=Fields.DoctorName"));
     group1.Name = "doctorNameGroup";
     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.doctorNameGroupHeaderSection,
     this.doctorNameGroupFooterSection,
     this.labelsGroupHeaderSection,
     this.labelsGroupFooterSection,
     this.pageHeader,
     this.pageFooter,
     this.reportHeader,
     this.reportFooter,
     this.detail});
     this.Name = "DailyVisitByDoctor";
     this.PageSettings.Landscape = false;
     this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(1D), 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;
     reportParameter1.AvailableValues.DataSource = this.sqlDataSource2;
     reportParameter1.AvailableValues.DisplayMember = "= Fields.DoctorName";
     reportParameter1.AvailableValues.ValueMember = "= Fields.DoctorName";
     reportParameter1.Name = "DoctorName";
     reportParameter1.Text = "Doctor Name:";
     reportParameter1.Visible = true;
     reportParameter2.AvailableValues.DataSource = this.sqlDataSource3;
     reportParameter2.AvailableValues.DisplayMember = "= Fields.EntryDate.Date";
     reportParameter2.AvailableValues.ValueMember = "= Fields.EntryDate.Date";
     reportParameter2.Name = "VisitDate";
     reportParameter2.Text = "Visit Date:";
     reportParameter2.Type = Telerik.Reporting.ReportParameterType.DateTime;
     reportParameter2.Visible = true;
     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.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(34)))), ((int)(((byte)(77)))));
     styleRule1.Style.Font.Name = "Calibri";
     styleRule1.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(18D);
     styleRule2.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
     new Telerik.Reporting.Drawing.StyleSelector("Caption")});
     styleRule2.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(121)))), ((int)(((byte)(167)))), ((int)(((byte)(227)))));
     styleRule2.Style.Color = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(34)))), ((int)(((byte)(77)))));
     styleRule2.Style.Font.Name = "Calibri";
     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.Color = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(34)))), ((int)(((byte)(77)))));
     styleRule3.Style.Font.Name = "Calibri";
     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.Color = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(34)))), ((int)(((byte)(77)))));
     styleRule4.Style.Font.Name = "Calibri";
     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(6.7677168846130371D);
     ((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()
 {
     this.detail = new Telerik.Reporting.DetailSection();
     this.pictureBox1 = new Telerik.Reporting.PictureBox();
     this.textBox1 = new Telerik.Reporting.TextBox();
     this.textBox2 = 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.CustomerInformation = new Telerik.Reporting.ObjectDataSource();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(3.2000000476837158D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.pictureBox1,
     this.textBox1,
     this.textBox2,
     this.textBox9,
     this.textBox10,
     this.textBox11,
     this.textBox12,
     this.textBox13,
     this.textBox14,
     this.textBox15,
     this.textBox16,
     this.textBox17,
     this.textBox18});
     this.detail.Name = "detail";
     //
     // pictureBox1
     //
     this.pictureBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.099999986588954926D), Telerik.Reporting.Drawing.Unit.Inch(0.40000000596046448D));
     this.pictureBox1.MimeType = "";
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.5D), Telerik.Reporting.Drawing.Unit.Inch(1.5D));
     this.pictureBox1.Sizing = Telerik.Reporting.Drawing.ImageSizeMode.Stretch;
     this.pictureBox1.Value = "=Fields.Photo";
     //
     // textBox1
     //
     this.textBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.8000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(0.5D));
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.9999208450317383D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox1.Value = "=Fields.Name";
     //
     // textBox2
     //
     this.textBox2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.1999211311340332D), Telerik.Reporting.Drawing.Unit.Inch(0.5D));
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox2.Value = "Name :";
     //
     // textBox9
     //
     this.textBox9.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.1999211311340332D), Telerik.Reporting.Drawing.Unit.Inch(0.800000011920929D));
     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.19999997317790985D));
     this.textBox9.Value = "Mobile :";
     //
     // textBox10
     //
     this.textBox10.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.8000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(0.800000011920929D));
     this.textBox10.Name = "textBox10";
     this.textBox10.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.9999208450317383D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox10.Value = "=Fields.Mobile";
     //
     // textBox11
     //
     this.textBox11.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.9998422861099243D), Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D));
     this.textBox11.Name = "textBox11";
     this.textBox11.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.80007904767990112D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox11.Value = "Telephone :";
     //
     // textBox12
     //
     this.textBox12.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.8000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D));
     this.textBox12.Name = "textBox12";
     this.textBox12.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.9999210834503174D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox12.Value = "=Fields.Telephone";
     //
     // textBox13
     //
     this.textBox13.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.4000000953674316D), Telerik.Reporting.Drawing.Unit.Inch(1.7000001668930054D));
     this.textBox13.Name = "textBox13";
     this.textBox13.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.3999212384223938D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox13.Value = "Note :";
     //
     // textBox14
     //
     this.textBox14.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.8000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(1.7000001668930054D));
     this.textBox14.Name = "textBox14";
     this.textBox14.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.9999208450317383D), Telerik.Reporting.Drawing.Unit.Inch(0.19999980926513672D));
     this.textBox14.Value = "=Fields.Note";
     //
     // textBox15
     //
     this.textBox15.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.1999211311340332D), Telerik.Reporting.Drawing.Unit.Inch(1.3999999761581421D));
     this.textBox15.Name = "textBox15";
     this.textBox15.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.599999725818634D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox15.Value = "E-Mail :";
     //
     // textBox16
     //
     this.textBox16.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.8000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(1.3999999761581421D));
     this.textBox16.Name = "textBox16";
     this.textBox16.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.9999208450317383D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox16.Value = "=Fields.Email";
     //
     // textBox17
     //
     this.textBox17.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.8000786304473877D), Telerik.Reporting.Drawing.Unit.Inch(2D));
     this.textBox17.Name = "textBox17";
     this.textBox17.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.9998424053192139D), Telerik.Reporting.Drawing.Unit.Inch(1.2000004053115845D));
     this.textBox17.Value = "=Fields.Address";
     //
     // textBox18
     //
     this.textBox18.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.1000001430511475D), Telerik.Reporting.Drawing.Unit.Inch(2D));
     this.textBox18.Name = "textBox18";
     this.textBox18.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.69999980926513672D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox18.Value = "Address :";
     //
     // CustomerInformation
     //
     this.CustomerInformation.DataSource = typeof(whostpos.Entitys.Entites.Customers);
     this.CustomerInformation.Name = "CustomerInformation";
     //
     // RptCustomerInformation
     //
     this.DataSource = this.CustomerInformation;
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.detail});
     this.Name = "RptCustomerInformation";
     this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D));
     this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.Letter;
     this.Style.BackgroundColor = System.Drawing.Color.White;
     this.Width = Telerik.Reporting.Drawing.Unit.Inch(6D);
     ((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.TableGroup tableGroup3 = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup4 = new Telerik.Reporting.TableGroup();
     Telerik.Reporting.TableGroup tableGroup5 = new Telerik.Reporting.TableGroup();
     this.textBox1 = new Telerik.Reporting.TextBox();
     this.textBox11 = new Telerik.Reporting.TextBox();
     this.textBox12 = new Telerik.Reporting.TextBox();
     this.textBox14 = new Telerik.Reporting.TextBox();
     this.textBox10 = new Telerik.Reporting.TextBox();
     this.textBox9 = new Telerik.Reporting.TextBox();
     this.textBox8 = new Telerik.Reporting.TextBox();
     this.textBox7 = new Telerik.Reporting.TextBox();
     this.detail = new Telerik.Reporting.DetailSection();
     this.table1 = new Telerik.Reporting.Table();
     this.SupplierLedgerInfo = new Telerik.Reporting.ObjectDataSource();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // textBox1
     //
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2297183275222778D), Telerik.Reporting.Drawing.Unit.Inch(0.20922622084617615D));
     this.textBox1.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.textBox1.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox1.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox1.Style.Color = System.Drawing.Color.Black;
     this.textBox1.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox1.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox1.Value = "Date";
     //
     // textBox11
     //
     this.textBox11.Name = "textBox11";
     this.textBox11.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.6157093048095703D), Telerik.Reporting.Drawing.Unit.Inch(0.20922622084617615D));
     this.textBox11.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.textBox11.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox11.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox11.Style.Color = System.Drawing.Color.Black;
     this.textBox11.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox11.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox11.Value = "Particular";
     //
     // textBox12
     //
     this.textBox12.Name = "textBox12";
     this.textBox12.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.3299062252044678D), Telerik.Reporting.Drawing.Unit.Inch(0.20922622084617615D));
     this.textBox12.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.textBox12.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox12.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox12.Style.Color = System.Drawing.Color.Black;
     this.textBox12.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox12.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox12.Value = "Receive Amount";
     //
     // textBox14
     //
     this.textBox14.Name = "textBox14";
     this.textBox14.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2141693830490112D), Telerik.Reporting.Drawing.Unit.Inch(0.20922622084617615D));
     this.textBox14.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.textBox14.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox14.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox14.Style.Color = System.Drawing.Color.Black;
     this.textBox14.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox14.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox14.StyleName = "";
     this.textBox14.Value = "Payment Amount";
     //
     // textBox10
     //
     this.textBox10.Name = "textBox10";
     this.textBox10.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2141693830490112D), Telerik.Reporting.Drawing.Unit.Inch(0.20744061470031738D));
     this.textBox10.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox10.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox10.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox10.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox10.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox10.StyleName = "";
     this.textBox10.Value = "=Fields.Credit";
     //
     // textBox9
     //
     this.textBox9.Name = "textBox9";
     this.textBox9.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.3299062252044678D), Telerik.Reporting.Drawing.Unit.Inch(0.20744061470031738D));
     this.textBox9.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox9.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox9.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.Ridge;
     this.textBox9.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox9.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox9.StyleName = "";
     this.textBox9.Value = "=Fields.Debit";
     //
     // textBox8
     //
     this.textBox8.Name = "textBox8";
     this.textBox8.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.6157093048095703D), Telerik.Reporting.Drawing.Unit.Inch(0.20744061470031738D));
     this.textBox8.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox8.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox8.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox8.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox8.StyleName = "";
     this.textBox8.Value = "=Fields.Particulars";
     //
     // textBox7
     //
     this.textBox7.Format = "{0:d}";
     this.textBox7.Name = "textBox7";
     this.textBox7.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2297183275222778D), Telerik.Reporting.Drawing.Unit.Inch(0.20744061470031738D));
     this.textBox7.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox7.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox7.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox7.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox7.StyleName = "";
     this.textBox7.Value = "=Fields.EntityDate";
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(0.41666683554649353D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.table1});
     this.detail.Name = "detail";
     //
     // table1
     //
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(1.2297179698944092D)));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(2.6157090663909912D)));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(1.3299062252044678D)));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(1.2141693830490112D)));
     this.table1.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(Telerik.Reporting.Drawing.Unit.Inch(0.20744061470031738D)));
     this.table1.Body.SetCellContent(0, 0, this.textBox7);
     this.table1.Body.SetCellContent(0, 1, this.textBox8);
     this.table1.Body.SetCellContent(0, 2, this.textBox9);
     this.table1.Body.SetCellContent(0, 3, this.textBox10);
     tableGroup1.ReportItem = this.textBox1;
     tableGroup2.ReportItem = this.textBox11;
     tableGroup3.ReportItem = this.textBox12;
     tableGroup4.Name = "Group1";
     tableGroup4.ReportItem = this.textBox14;
     this.table1.ColumnGroups.Add(tableGroup1);
     this.table1.ColumnGroups.Add(tableGroup2);
     this.table1.ColumnGroups.Add(tableGroup3);
     this.table1.ColumnGroups.Add(tableGroup4);
     this.table1.DataSource = this.SupplierLedgerInfo;
     this.table1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.textBox7,
     this.textBox8,
     this.textBox9,
     this.textBox10,
     this.textBox1,
     this.textBox11,
     this.textBox12,
     this.textBox14});
     this.table1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.table1.Name = "table1";
     tableGroup5.Groupings.Add(new Telerik.Reporting.Grouping(null));
     tableGroup5.Name = "DetailGroup";
     this.table1.RowGroups.Add(tableGroup5);
     this.table1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.38950252532959D), Telerik.Reporting.Drawing.Unit.Inch(0.41666683554649353D));
     this.table1.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.None;
     //
     // SupplierLedgerInfo
     //
     this.SupplierLedgerInfo.DataSource = typeof(SuppliersLedger);
     this.SupplierLedgerInfo.Name = "SupplierLedgerInfo";
     //
     // RptSupplierLedger
     //
     this.DataSource = null;
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.detail});
     this.Name = "RptSupplierLedger";
     this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D));
     this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.Letter;
     this.Style.BackgroundColor = System.Drawing.Color.White;
     this.Width = Telerik.Reporting.Drawing.Unit.Inch(6.4000000953674316D);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Beispiel #35
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(ProvisionalDx_Sub));
     Telerik.Reporting.Group group1 = new Telerik.Reporting.Group();
     Telerik.Reporting.ReportParameter reportParameter1 = 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.labelsGroupFooterSection = new Telerik.Reporting.GroupFooterSection();
     this.labelsGroupHeaderSection = new Telerik.Reporting.GroupHeaderSection();
     this.srNoCaptionTextBox = new Telerik.Reporting.TextBox();
     this.provisionalDxCaptionTextBox = new Telerik.Reporting.TextBox();
     this.sqlDataSource1 = new Telerik.Reporting.SqlDataSource();
     this.reportHeader = new Telerik.Reporting.ReportHeaderSection();
     this.titleTextBox = new Telerik.Reporting.TextBox();
     this.detail = new Telerik.Reporting.DetailSection();
     this.srNoDataTextBox = new Telerik.Reporting.TextBox();
     this.provisionalDxDataTextBox = new Telerik.Reporting.TextBox();
     this.shape1 = new Telerik.Reporting.Shape();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // 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.20000004768371582D);
     this.labelsGroupHeaderSection.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.srNoCaptionTextBox,
     this.provisionalDxCaptionTextBox});
     this.labelsGroupHeaderSection.Name = "labelsGroupHeaderSection";
     this.labelsGroupHeaderSection.PrintOnEveryPage = true;
     //
     // srNoCaptionTextBox
     //
     this.srNoCaptionTextBox.CanGrow = true;
     this.srNoCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.srNoCaptionTextBox.Name = "srNoCaptionTextBox";
     this.srNoCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.37916669249534607D), Telerik.Reporting.Drawing.Unit.Inch(0.17916671931743622D));
     this.srNoCaptionTextBox.Style.BackgroundColor = System.Drawing.Color.Silver;
     this.srNoCaptionTextBox.Style.Font.Bold = true;
     this.srNoCaptionTextBox.Style.Font.Name = "Arial";
     this.srNoCaptionTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.srNoCaptionTextBox.StyleName = "Caption";
     this.srNoCaptionTextBox.Value = "Sr No";
     //
     // provisionalDxCaptionTextBox
     //
     this.provisionalDxCaptionTextBox.CanGrow = true;
     this.provisionalDxCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.40000000596046448D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.provisionalDxCaptionTextBox.Name = "provisionalDxCaptionTextBox";
     this.provisionalDxCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.8000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(0.17916671931743622D));
     this.provisionalDxCaptionTextBox.Style.BackgroundColor = System.Drawing.Color.Silver;
     this.provisionalDxCaptionTextBox.Style.Font.Bold = true;
     this.provisionalDxCaptionTextBox.Style.Font.Name = "Arial";
     this.provisionalDxCaptionTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.provisionalDxCaptionTextBox.StyleName = "Caption";
     this.provisionalDxCaptionTextBox.Value = "Provisional Dx";
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionString = "OnLinePrescriptionConnectionString";
     this.sqlDataSource1.Name = "sqlDataSource1";
     this.sqlDataSource1.SelectCommand = resources.GetString("sqlDataSource1.SelectCommand");
     //
     // reportHeader
     //
     this.reportHeader.Height = Telerik.Reporting.Drawing.Unit.Inch(0.20000001788139343D);
     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(3.2000000476837158D), Telerik.Reporting.Drawing.Unit.Inch(0.15833337604999542D));
     this.titleTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(10D);
     this.titleTextBox.StyleName = "Title";
     this.titleTextBox.Value = "ProvisionalDx";
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(0.20216202735900879D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.srNoDataTextBox,
     this.provisionalDxDataTextBox,
     this.shape1});
     this.detail.Name = "detail";
     //
     // srNoDataTextBox
     //
     this.srNoDataTextBox.CanGrow = true;
     this.srNoDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.srNoDataTextBox.Name = "srNoDataTextBox";
     this.srNoDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.37916669249534607D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.srNoDataTextBox.Style.Font.Name = "Arial";
     this.srNoDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.srNoDataTextBox.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     this.srNoDataTextBox.StyleName = "Data";
     this.srNoDataTextBox.Value = "=Fields.SrNo";
     //
     // provisionalDxDataTextBox
     //
     this.provisionalDxDataTextBox.CanGrow = true;
     this.provisionalDxDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.40000000596046448D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.provisionalDxDataTextBox.Name = "provisionalDxDataTextBox";
     this.provisionalDxDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(2.8000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(0.15000000596046448D));
     this.provisionalDxDataTextBox.Style.Font.Name = "Arial";
     this.provisionalDxDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(7D);
     this.provisionalDxDataTextBox.StyleName = "Data";
     this.provisionalDxDataTextBox.Value = "=Fields.ProvisionalDx";
     //
     // shape1
     //
     this.shape1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.014238993637263775D), Telerik.Reporting.Drawing.Unit.Inch(0.15007869899272919D));
     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(3.1857612133026123D), Telerik.Reporting.Drawing.Unit.Inch(0.0520833320915699D));
     this.shape1.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center;
     //
     // ProvisionalDx_Sub
     //
     this.DataSource = this.sqlDataSource1;
     this.Filters.Add(new Telerik.Reporting.Filter("=Fields.VisitID", Telerik.Reporting.FilterOperator.Equal, "=Parameters.LinkPrmVisitID.Value"));
     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.reportHeader,
     this.detail});
     this.Name = "ProvisionalDx_Sub";
     this.PageSettings.Landscape = false;
     this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(0.5D), Telerik.Reporting.Drawing.Unit.Inch(1D));
     this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.A4;
     reportParameter1.AllowNull = true;
     reportParameter1.Name = "LinkPrmVisitID";
     reportParameter1.Text = "Parameter1";
     this.ReportParameters.Add(reportParameter1);
     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(3.2000000476837158D);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LabTestDetails_Sub));
     Telerik.Reporting.Group group1 = new Telerik.Reporting.Group();
     Telerik.Reporting.Group group2 = new Telerik.Reporting.Group();
     Telerik.Reporting.ReportParameter reportParameter1 = 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.labelsGroupFooterSection = new Telerik.Reporting.GroupFooterSection();
     this.labelsGroupHeaderSection = new Telerik.Reporting.GroupHeaderSection();
     this.labTestIDCaptionTextBox = new Telerik.Reporting.TextBox();
     this.testFeeCaptionTextBox = new Telerik.Reporting.TextBox();
     this.testNameGroupFooterSection = new Telerik.Reporting.GroupFooterSection();
     this.shape1 = new Telerik.Reporting.Shape();
     this.testNameGroupHeaderSection = new Telerik.Reporting.GroupHeaderSection();
     this.testNameDataTextBox = new Telerik.Reporting.TextBox();
     this.testNameCaptionTextBox = new Telerik.Reporting.TextBox();
     this.sqlDataSource1 = new Telerik.Reporting.SqlDataSource();
     this.detail = new Telerik.Reporting.DetailSection();
     this.labTestIDDataTextBox = new Telerik.Reporting.TextBox();
     this.tNDescDataTextBox = new Telerik.Reporting.TextBox();
     this.testFeeDataTextBox = new Telerik.Reporting.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // 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.19999997317790985D);
     this.labelsGroupHeaderSection.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.labTestIDCaptionTextBox,
     this.testFeeCaptionTextBox});
     this.labelsGroupHeaderSection.Name = "labelsGroupHeaderSection";
     this.labelsGroupHeaderSection.PrintOnEveryPage = true;
     //
     // labTestIDCaptionTextBox
     //
     this.labTestIDCaptionTextBox.CanGrow = true;
     this.labTestIDCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.labTestIDCaptionTextBox.Name = "labTestIDCaptionTextBox";
     this.labTestIDCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.7804708480834961D), Telerik.Reporting.Drawing.Unit.Inch(0.17916662991046906D));
     this.labTestIDCaptionTextBox.Style.Font.Bold = true;
     this.labTestIDCaptionTextBox.Style.Font.Italic = true;
     this.labTestIDCaptionTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.labTestIDCaptionTextBox.StyleName = "Caption";
     this.labTestIDCaptionTextBox.Value = "Test Details ---";
     //
     // testFeeCaptionTextBox
     //
     this.testFeeCaptionTextBox.CanGrow = true;
     this.testFeeCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.8000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.testFeeCaptionTextBox.Name = "testFeeCaptionTextBox";
     this.testFeeCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1999998092651367D), Telerik.Reporting.Drawing.Unit.Inch(0.17916662991046906D));
     this.testFeeCaptionTextBox.Style.Font.Bold = true;
     this.testFeeCaptionTextBox.Style.Font.Italic = true;
     this.testFeeCaptionTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.testFeeCaptionTextBox.StyleName = "Caption";
     this.testFeeCaptionTextBox.Value = "Test Fee";
     //
     // testNameGroupFooterSection
     //
     this.testNameGroupFooterSection.Height = Telerik.Reporting.Drawing.Unit.Inch(0.0520833320915699D);
     this.testNameGroupFooterSection.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.shape1});
     this.testNameGroupFooterSection.Name = "testNameGroupFooterSection";
     //
     // shape1
     //
     this.shape1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     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(3.9000003337860107D), Telerik.Reporting.Drawing.Unit.Inch(0.0520833320915699D));
     //
     // testNameGroupHeaderSection
     //
     this.testNameGroupHeaderSection.Height = Telerik.Reporting.Drawing.Unit.Inch(0.20000004768371582D);
     this.testNameGroupHeaderSection.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.testNameDataTextBox,
     this.testNameCaptionTextBox});
     this.testNameGroupHeaderSection.Name = "testNameGroupHeaderSection";
     //
     // testNameDataTextBox
     //
     this.testNameDataTextBox.CanGrow = true;
     this.testNameDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.testNameDataTextBox.Name = "testNameDataTextBox";
     this.testNameDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D), Telerik.Reporting.Drawing.Unit.Inch(0.18759854137897492D));
     this.testNameDataTextBox.Style.Font.Bold = true;
     this.testNameDataTextBox.Style.Font.Italic = true;
     this.testNameDataTextBox.Style.Font.Name = "Arial";
     this.testNameDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.testNameDataTextBox.StyleName = "Data";
     this.testNameDataTextBox.Value = "= Fields.TNDesc";
     //
     // testNameCaptionTextBox
     //
     this.testNameCaptionTextBox.CanGrow = true;
     this.testNameCaptionTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0D));
     this.testNameCaptionTextBox.Name = "testNameCaptionTextBox";
     this.testNameCaptionTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.60000008344650269D), Telerik.Reporting.Drawing.Unit.Inch(0.20000004768371582D));
     this.testNameCaptionTextBox.Style.Font.Bold = true;
     this.testNameCaptionTextBox.Style.Font.Italic = true;
     this.testNameCaptionTextBox.Style.Font.Name = "Arial";
     this.testNameCaptionTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(9D);
     this.testNameCaptionTextBox.StyleName = "Caption";
     this.testNameCaptionTextBox.Value = "Sample:";
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionString = "OnLinePrescriptionConnectionString";
     this.sqlDataSource1.Name = "sqlDataSource1";
     this.sqlDataSource1.SelectCommand = resources.GetString("sqlDataSource1.SelectCommand");
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(0.20843188464641571D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.labTestIDDataTextBox,
     this.tNDescDataTextBox,
     this.testFeeDataTextBox});
     this.detail.Name = "detail";
     //
     // labTestIDDataTextBox
     //
     this.labTestIDDataTextBox.CanGrow = true;
     this.labTestIDDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.099999986588954926D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.labTestIDDataTextBox.Name = "labTestIDDataTextBox";
     this.labTestIDDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.90000003576278687D), Telerik.Reporting.Drawing.Unit.Inch(0.18759854137897492D));
     this.labTestIDDataTextBox.Style.Font.Name = "Arial";
     this.labTestIDDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.labTestIDDataTextBox.StyleName = "Data";
     this.labTestIDDataTextBox.Value = "=Fields.LabTestID";
     //
     // tNDescDataTextBox
     //
     this.tNDescDataTextBox.CanGrow = true;
     this.tNDescDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.tNDescDataTextBox.Name = "tNDescDataTextBox";
     this.tNDescDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.7804708480834961D), Telerik.Reporting.Drawing.Unit.Inch(0.18759854137897492D));
     this.tNDescDataTextBox.Style.Font.Name = "Arial";
     this.tNDescDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.tNDescDataTextBox.StyleName = "Data";
     this.tNDescDataTextBox.Value = "= Fields.TestName";
     //
     // testFeeDataTextBox
     //
     this.testFeeDataTextBox.CanGrow = true;
     this.testFeeDataTextBox.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(2.8000001907348633D), Telerik.Reporting.Drawing.Unit.Inch(0.02083333395421505D));
     this.testFeeDataTextBox.Name = "testFeeDataTextBox";
     this.testFeeDataTextBox.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.0973917245864868D), Telerik.Reporting.Drawing.Unit.Inch(0.18759854137897492D));
     this.testFeeDataTextBox.Style.Font.Name = "Arial";
     this.testFeeDataTextBox.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(8D);
     this.testFeeDataTextBox.StyleName = "Data";
     this.testFeeDataTextBox.Value = "=Fields.TestFee";
     //
     // LabTestDetails_Sub
     //
     this.DataSource = this.sqlDataSource1;
     this.Filters.Add(new Telerik.Reporting.Filter("=Fields.LabTestID", Telerik.Reporting.FilterOperator.Equal, "=Parameters.LinkPrmLabTestID.Value"));
     group1.GroupFooter = this.labelsGroupFooterSection;
     group1.GroupHeader = this.labelsGroupHeaderSection;
     group1.Name = "labelsGroup";
     group2.GroupFooter = this.testNameGroupFooterSection;
     group2.GroupHeader = this.testNameGroupHeaderSection;
     group2.Groupings.Add(new Telerik.Reporting.Grouping("=Fields.TNDesc"));
     group2.Name = "testDescGroup";
     this.Groups.AddRange(new Telerik.Reporting.Group[] {
     group1,
     group2});
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.labelsGroupHeaderSection,
     this.labelsGroupFooterSection,
     this.testNameGroupHeaderSection,
     this.testNameGroupFooterSection,
     this.detail});
     this.Name = "LabTestDetails_Sub";
     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(1D));
     this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.A4;
     reportParameter1.AllowNull = true;
     reportParameter1.Name = "LinkPrmLabTestID";
     reportParameter1.Text = "Parameter1";
     this.ReportParameters.Add(reportParameter1);
     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(4.6000003814697266D);
     ((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.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();
     this.textBox1 = new Telerik.Reporting.TextBox();
     this.textBox2 = new Telerik.Reporting.TextBox();
     this.textBox9 = new Telerik.Reporting.TextBox();
     this.textBox7 = new Telerik.Reporting.TextBox();
     this.textBox3 = new Telerik.Reporting.TextBox();
     this.detail = new Telerik.Reporting.DetailSection();
     this.table1 = new Telerik.Reporting.Table();
     this.textBox11 = new Telerik.Reporting.TextBox();
     this.textBox4 = new Telerik.Reporting.TextBox();
     this.textBox5 = new Telerik.Reporting.TextBox();
     this.textBox10 = new Telerik.Reporting.TextBox();
     this.textBox8 = new Telerik.Reporting.TextBox();
     this.StockInformation = new Telerik.Reporting.ObjectDataSource();
     this.textBox6 = new Telerik.Reporting.TextBox();
     this.TotalProduct = new Telerik.Reporting.TextBox();
     this.textBox12 = new Telerik.Reporting.TextBox();
     this.textBox13 = new Telerik.Reporting.TextBox();
     this.textBox14 = new Telerik.Reporting.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // textBox1
     //
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2999922037124634D), Telerik.Reporting.Drawing.Unit.Inch(0.20809958875179291D));
     this.textBox1.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     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.None;
     this.textBox1.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox1.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox1.Value = "Name";
     //
     // textBox2
     //
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2999922037124634D), Telerik.Reporting.Drawing.Unit.Inch(0.20809958875179291D));
     this.textBox2.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     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.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox2.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox2.Value = "Code";
     //
     // textBox9
     //
     this.textBox9.Name = "textBox9";
     this.textBox9.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2999922037124634D), Telerik.Reporting.Drawing.Unit.Inch(0.20809958875179291D));
     this.textBox9.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.textBox9.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox9.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox9.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox9.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox9.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox9.StyleName = "";
     this.textBox9.Value = "Color";
     //
     // textBox7
     //
     this.textBox7.Name = "textBox7";
     this.textBox7.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2999922037124634D), Telerik.Reporting.Drawing.Unit.Inch(0.20809958875179291D));
     this.textBox7.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.textBox7.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox7.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox7.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox7.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox7.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox7.StyleName = "";
     this.textBox7.Value = "Model";
     //
     // textBox3
     //
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2999922037124634D), Telerik.Reporting.Drawing.Unit.Inch(0.20809958875179291D));
     this.textBox3.Style.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.textBox3.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox3.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox3.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox3.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox3.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox3.Value = "Quantity";
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(0.64799541234970093D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.table1,
     this.textBox6,
     this.TotalProduct});
     this.detail.Name = "detail";
     //
     // table1
     //
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(1.2999923229217529D)));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(1.2999923229217529D)));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(1.2999923229217529D)));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(1.2999923229217529D)));
     this.table1.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(Telerik.Reporting.Drawing.Unit.Inch(1.2999923229217529D)));
     this.table1.Body.Rows.Add(new Telerik.Reporting.TableBodyRow(Telerik.Reporting.Drawing.Unit.Inch(0.23977772891521454D)));
     this.table1.Body.SetCellContent(0, 3, this.textBox10);
     this.table1.Body.SetCellContent(0, 4, this.textBox8);
     this.table1.Body.SetCellContent(0, 1, this.textBox12);
     this.table1.Body.SetCellContent(0, 0, this.textBox13);
     this.table1.Body.SetCellContent(0, 2, this.textBox14);
     tableGroup1.ReportItem = this.textBox1;
     tableGroup2.ReportItem = this.textBox2;
     tableGroup3.Name = "Group2";
     tableGroup3.ReportItem = this.textBox9;
     tableGroup4.Name = "Group1";
     tableGroup4.ReportItem = this.textBox7;
     tableGroup5.ReportItem = this.textBox3;
     this.table1.ColumnGroups.Add(tableGroup1);
     this.table1.ColumnGroups.Add(tableGroup2);
     this.table1.ColumnGroups.Add(tableGroup3);
     this.table1.ColumnGroups.Add(tableGroup4);
     this.table1.ColumnGroups.Add(tableGroup5);
     this.table1.DataSource = this.StockInformation;
     this.table1.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.textBox10,
     this.textBox8,
     this.textBox1,
     this.textBox2,
     this.textBox9,
     this.textBox7,
     this.textBox3,
     this.textBox12,
     this.textBox13,
     this.textBox14});
     this.table1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(3.9418537198798731E-05D), Telerik.Reporting.Drawing.Unit.Inch(3.9378803194267675E-05D));
     this.table1.Name = "table1";
     tableGroup6.Groupings.Add(new Telerik.Reporting.Grouping(null));
     tableGroup6.Name = "DetailGroup";
     this.table1.RowGroups.Add(tableGroup6);
     this.table1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(6.4999608993530273D), Telerik.Reporting.Drawing.Unit.Inch(0.44787731766700745D));
     //
     // textBox11
     //
     this.textBox11.Name = "textBox11";
     this.textBox11.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2999922037124634D), Telerik.Reporting.Drawing.Unit.Inch(0.23977772891521454D));
     this.textBox11.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox11.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox11.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox11.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox11.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox11.StyleName = "";
     this.textBox11.Value = "=Fields.Name";
     //
     // textBox4
     //
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2999922037124634D), Telerik.Reporting.Drawing.Unit.Inch(0.23977772891521454D));
     this.textBox4.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox4.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox4.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox4.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox4.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox4.StyleName = "";
     this.textBox4.Value = "=Fields.Category";
     //
     // textBox5
     //
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2999922037124634D), Telerik.Reporting.Drawing.Unit.Inch(0.23977772891521454D));
     this.textBox5.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox5.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox5.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox5.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox5.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox5.StyleName = "";
     this.textBox5.Value = "=Fields.Band";
     //
     // textBox10
     //
     this.textBox10.Name = "textBox10";
     this.textBox10.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2999922037124634D), Telerik.Reporting.Drawing.Unit.Inch(0.23977772891521454D));
     this.textBox10.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox10.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox10.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox10.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox10.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox10.StyleName = "";
     this.textBox10.Value = "=Fields.Model";
     //
     // textBox8
     //
     this.textBox8.Name = "textBox8";
     this.textBox8.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2999922037124634D), Telerik.Reporting.Drawing.Unit.Inch(0.23977772891521454D));
     this.textBox8.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox8.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox8.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox8.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox8.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox8.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox8.StyleName = "";
     this.textBox8.Value = "=Fields.Stock.Quantity";
     //
     // StockInformation
     //
     this.StockInformation.DataSource = typeof(whostpos.Entitys.Entites.Products);
     this.StockInformation.Name = "StockInformation";
     //
     // textBox6
     //
     this.textBox6.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(4.7000002861022949D), Telerik.Reporting.Drawing.Unit.Inch(0.44799533486366272D));
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.50000828504562378D), Telerik.Reporting.Drawing.Unit.Inch(0.20000004768371582D));
     this.textBox6.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox6.Style.BorderStyle.Right = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox6.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.None;
     this.textBox6.Value = "Total :";
     //
     // TotalProduct
     //
     this.TotalProduct.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(5.2000870704650879D), Telerik.Reporting.Drawing.Unit.Inch(0.44799533486366272D));
     this.TotalProduct.Name = "TotalProduct";
     this.TotalProduct.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2998733520507813D), Telerik.Reporting.Drawing.Unit.Inch(0.20000004768371582D));
     this.TotalProduct.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid;
     this.TotalProduct.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.None;
     this.TotalProduct.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Left;
     this.TotalProduct.Value = "";
     //
     // textBox12
     //
     this.textBox12.Name = "textBox12";
     this.textBox12.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2999922037124634D), Telerik.Reporting.Drawing.Unit.Inch(0.23977772891521454D));
     this.textBox12.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox12.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox12.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox12.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox12.Value = "=Fields.Code";
     //
     // textBox13
     //
     this.textBox13.Name = "textBox13";
     this.textBox13.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2999924421310425D), Telerik.Reporting.Drawing.Unit.Inch(0.23977772891521454D));
     this.textBox13.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox13.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox13.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox13.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox13.Value = "=Fields.ProductName";
     //
     // textBox14
     //
     this.textBox14.Name = "textBox14";
     this.textBox14.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.2999924421310425D), Telerik.Reporting.Drawing.Unit.Inch(0.23977772891521454D));
     this.textBox14.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox14.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
     this.textBox14.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Inch(0.029999999329447746D);
     this.textBox14.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Inch(0.019999999552965164D);
     this.textBox14.Value = "=Fields.Color";
     //
     // RptStock
     //
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.detail});
     this.Name = "RptStock";
     this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D));
     this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.Letter;
     this.Style.BackgroundColor = System.Drawing.Color.White;
     this.Style.BorderStyle.Bottom = Telerik.Reporting.Drawing.BorderType.Solid;
     this.Style.BorderStyle.Left = Telerik.Reporting.Drawing.BorderType.Solid;
     this.Style.BorderStyle.Top = Telerik.Reporting.Drawing.BorderType.None;
     this.Width = Telerik.Reporting.Drawing.Unit.Inch(6.5D);
     ((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()
 {
     this.detail = new Telerik.Reporting.DetailSection();
     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.BankAccountInformation = new Telerik.Reporting.ObjectDataSource();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // detail
     //
     this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(1.2000001668930054D);
     this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.textBox1,
     this.textBox2,
     this.textBox3,
     this.textBox4,
     this.textBox5,
     this.textBox6});
     this.detail.Name = "detail";
     //
     // textBox1
     //
     this.textBox1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.90000009536743164D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(0.59999990463256836D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox1.Value = "Name :";
     //
     // textBox2
     //
     this.textBox2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.40000000596046448D), Telerik.Reporting.Drawing.Unit.Inch(0.5D));
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1000000238418579D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox2.Value = "Account Name : ";
     //
     // textBox3
     //
     this.textBox3.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.30000004172325134D), Telerik.Reporting.Drawing.Unit.Inch(0.800000011920929D));
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(1.1999999284744263D), Telerik.Reporting.Drawing.Unit.Inch(0.20000012218952179D));
     this.textBox3.Value = "Account Number : ";
     //
     // textBox4
     //
     this.textBox4.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.5000787973403931D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.2999212741851807D), Telerik.Reporting.Drawing.Unit.Inch(0.19999997317790985D));
     this.textBox4.Value = "=Fields.BankName";
     //
     // textBox5
     //
     this.textBox5.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.5000787973403931D), Telerik.Reporting.Drawing.Unit.Inch(0.49999991059303284D));
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.2999210357666016D), Telerik.Reporting.Drawing.Unit.Inch(0.20000004768371582D));
     this.textBox5.Value = "=Fields.BankName";
     //
     // textBox6
     //
     this.textBox6.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(1.5000787973403931D), Telerik.Reporting.Drawing.Unit.Inch(0.79999995231628418D));
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(3.2999210357666016D), Telerik.Reporting.Drawing.Unit.Inch(0.20000004768371582D));
     this.textBox6.Value = "=Fields.BankAccountNumber";
     //
     // BankAccountInformation
     //
     this.BankAccountInformation.DataSource = typeof(BankAccounts);
     this.BankAccountInformation.Name = "BankAccountInformation";
     //
     // RptBankInfomation
     //
     this.DataSource = this.BankAccountInformation;
     this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
     this.detail});
     this.Name = "RptBankInfomation";
     this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D));
     this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.Letter;
     this.Style.BackgroundColor = System.Drawing.Color.White;
     this.Width = Telerik.Reporting.Drawing.Unit.Inch(6D);
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }