public static void AddTablesToReport(XtraReport report) { List <string> fields = new List <string>() { "CompanyName", "ContactName", "Phone", "City" }; XRTable headerTable = GetHeaderTable(fields, report.PageWidth - report.Margins.Left - report.Margins.Right); XRTable table = GetTableBoundToData(fields, report.PageWidth - report.Margins.Left - report.Margins.Right); DetailBand detailBand = report.Bands.GetBandByType(typeof(DetailBand)) as DetailBand; PageHeaderBand pageHeaderBand = report.Bands.GetBandByType(typeof(PageHeaderBand)) as PageHeaderBand; pageHeaderBand.Controls.Add(headerTable); detailBand.Controls.Add(table); pageHeaderBand.HeightF = headerTable.HeightF; detailBand.HeightF = table.HeightF; }
private static void CreateReportControls(string parameterName, XtraReport report) { var pageHeader = new PageHeaderBand(); var paramValueLbl = new XRLabel() { Name = "label1", Borders = DevExpress.XtraPrinting.BorderSide.Bottom, Font = new System.Drawing.Font("Calibri", 18f), SizeF = new System.Drawing.SizeF(200, 50), LocationF = new System.Drawing.PointF(5, 5) }; paramValueLbl.ExpressionBindings.Add(new ExpressionBinding("Text", "?" + parameterName)); paramValueLbl.TextFormatString = "Parameter value: {0}"; pageHeader.Controls.Add(paramValueLbl); report.Bands.Add(pageHeader); var detail1 = new DetailBand(); var xrLabel1 = new XRLabel() { Name = "label1", Font = new System.Drawing.Font("Calibri", 18f), SizeF = new System.Drawing.SizeF(200, 50), LocationF = new System.Drawing.PointF(0, 0) }; xrLabel1.ExpressionBindings.Add(new ExpressionBinding("Text", "[Name]")); xrLabel1.TextFormatString = "Name: {0}"; detail1.Controls.Add(xrLabel1); report.Bands.Add(detail1); }
public void TestExportPdfInfo() { Report r = new Report(); ReportPage page = new ReportPage(); PageHeaderBand pageHeaderBand = new PageHeaderBand(); pageHeaderBand.CreateUniqueName(); pageHeaderBand.Height = 300; page.Bands.Add(pageHeaderBand); r.Pages.Add(page); r.Prepare(); PDFSimpleExport export = new PDFSimpleExport(); export.Title = "FastReport OpenSource Test Title dad5dd69-4c07-4789-ab4d-f03d0ba68c9c"; export.Subject = "FastReport OpenSource Test Subject 7cf3d3d9-716f-4c51-a397-c6389c3100ca"; export.Keywords = "FastReport OpenSource Test Keywors 2fbbf8b9-2daf-40b5-b216-a4c3130aac56"; export.Author = "FastReport OpenSource Test Author a1e57c3e-1e0e-4b94-a472-07b5f05fa515"; string pdf; using (MemoryStream ms = new MemoryStream()) { r.Export(export, ms); pdf = Encoding.UTF8.GetString(ms.ToArray()); } #pragma warning disable xUnit2009 // Do not use boolean check to check for substrings Assert.True(pdf.Contains("/Title (" + StringToPdfUnicode(export.Title) + ")")); Assert.True(pdf.Contains("/Subject (" + StringToPdfUnicode(export.Subject) + ")")); Assert.True(pdf.Contains("/Keywords (" + StringToPdfUnicode(export.Keywords) + ")")); Assert.True(pdf.Contains("/Author (" + StringToPdfUnicode(export.Author) + ")")); #pragma warning restore xUnit2009 // Do not use boolean check to check for substrings }
private void AddSingleField(DragEventArgs e, DataInfo[] droppedData, XRControl parentControl, ISelectionService selectSvc) { SizeF size = new SizeF(100F, 25F); XRLabel detailLabel = new XRLabel(); this.droppedControl = detailLabel; detailLabel.SizeF = size; Host.Container.Add(detailLabel); PointF dropPoint = GetDragDropLocation(e, detailLabel, parentControl); detailLabel.ExpressionBindings.Add(new ExpressionBinding("Text", ExpressionBindingHelper.NormalizeDataMember(droppedData[0].Member, parentControl.Report.DataMember))); this.DropXRControl(parentControl, dropPoint); selectSvc.SetSelectedComponents(new XRControl[] { detailLabel }); if ((parentControl is DetailBand)) { PageHeaderBand band = null; if (panel.Report.Bands.OfType <PageHeaderBand>().FirstOrDefault() != null) { band = panel.Report.Bands[BandKind.PageHeader] as PageHeaderBand; } else { band = new PageHeaderBand(); panel.Report.Bands.Add(band); Host.Container.Add(band); } XRLabel headerLabel = CreateLabel(droppedControl.LocationF, size, droppedData[0].DisplayName); Host.Container.Add(headerLabel); band.Controls.Add(headerLabel); } }
XRLabel CopyLabel(XRLabel label, PageHeaderBand band) { string text = "XRLabel"; XtraReport report = band.Report as XtraReport; XRLabel newLabel = new XRLabel(); newLabel.LocationF = label.LocationF; newLabel.WidthF = label.WidthF; newLabel.HeightF = label.HeightF; newLabel.BackColor = Color.Green; newLabel.ForeColor = Color.Yellow; newLabel.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; newLabel.Font = new Font("Calibry", 11, FontStyle.Bold); newLabel.Borders = DevExpress.XtraPrinting.BorderSide.All; if (label.ExpressionBindings.Count > 0) { text = label.ExpressionBindings[0].Expression; int index = text.LastIndexOf("."); if (index > 0) { text = text.Substring(index + 1); } } newLabel.Text = text; return(newLabel); }
/// <summary> /// Creates a PageHeaderBand instance in the specified ReportPage. /// </summary> /// <param name="page">The ReportPage instance.</param> /// <returns>The PageHeaderBand instance.</returns> public static PageHeaderBand CreatePageHeaderBand(ReportPage page) { PageHeaderBand pageHeader = new PageHeaderBand(); page.PageHeader = pageHeader; pageHeader.CreateUniqueName(); return(pageHeader); }
public void buildDynamicReport(DataSet ds, PageHeaderBand PageHeader, DetailBand Detail) { // create a table to display header XRTable tableHeader = new XRTable(); tableHeader.BeginInit(); tableHeader.Width = (this.PageWidth - (this.Margins.Left + this.Margins.Right)); XRTableRow headerRow = new XRTableRow(); tableHeader.Rows.Add(headerRow); XRTable tableDetail = new XRTable(); tableDetail.BeginInit(); tableDetail.Width = (this.PageWidth - (this.Margins.Left + this.Margins.Right)); XRTable tableDetail2 = new XRTable(); tableDetail2.BeginInit(); tableDetail.Height = 20; tableDetail.Width = (this.PageWidth - (this.Margins.Left + this.Margins.Right)); XRTableRow detailRow = new XRTableRow(); // add detailRow into tableDetails tableDetail.Rows.Add(detailRow); // loop table headercell and table detailCell int i = 0; for (i = 0; i < ds.Tables[1].Rows.Count; i++) { XRTableCell headerCell = new XRTableCell(); headerCell.Width = Int32.Parse(ds.Tables[1].Rows[i][5].ToString()); headerCell.Text = ds.Tables[1].Rows[i][3].ToString(); headerCell.StyleName = ds.Tables[1].Rows[i]["style"].ToString(); XRTableCell detailCell = new XRTableCell(); detailCell.StyleName = ds.Tables[1].Rows[i]["style"].ToString(); detailCell.DataBindings.Add("Text", null, ds.Tables[1].Rows[i]["fieldname"].ToString()); if (i == 0) { headerCell.Borders = BorderSide.Left | BorderSide.Top | BorderSide.Bottom; detailCell.Borders = BorderSide.Left | BorderSide.Top | BorderSide.Bottom; } else { headerCell.Borders = BorderSide.All; detailCell.Borders = BorderSide.All; } headerRow.Cells.Add(headerCell); detailRow.Cells.Add(detailCell); } tableDetail.EndInit(); tableHeader.EndInit(); PageHeader.Controls.Add(tableHeader); Detail.Controls.Add(tableDetail); //this.DataSource = ds; }
private void ReadPageHeaderBand(XtraReportBase xtraReport, PageHeaderBand xtraBand, StiPage page) { StiHeaderBand band = new StiHeaderBand(); band.PrintOnAllPages = true; page.Components.Add(band); ReadBand(xtraBand, band); }
public void InitBands(XtraReport rep) { DetailBand detail = new DetailBand(); PageHeaderBand pageHeader = new PageHeaderBand(); ReportFooterBand reportFooter = new ReportFooterBand(); detail.Height = 20; reportFooter.Height = 380; pageHeader.Height = 20; rep.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { detail, pageHeader, reportFooter }); }
private void LoadTopMarginBand() // Page Header { string name = FindObjectName(TOP_MARGIN_BAND_MASK); if (!String.IsNullOrEmpty(name)) { PageHeaderBand header = ComponentsFactory.CreatePageHeaderBand(page); string description = GetObjectDescription(name); LoadBand(header, description); LoadObjects(description, header); } }
public static XtraReport CreateEmptyReport() { XtraReport report = new XtraReport() { DataSource = CreateSqlDataSource(), DataMember = "Customers" }; var pageHeaderBand = new PageHeaderBand(); var detailBand = new DetailBand(); report.Bands.AddRange(new Band[] { pageHeaderBand, detailBand }); return(report); }
private void LoadPageHeaderBandXml() { XmlNode node = FindBandNode("PageHeaderBand"); if (node == null) { return; } PageHeaderBand header = ComponentsFactory.CreatePageHeaderBand(page); LoadBand(node, header); LoadObjects(node, header); }
public void InitBands(XtraReport rep) { DetailBand detail = new DetailBand(); PageHeaderBand pageHeader = new PageHeaderBand(); ReportHeaderBand reportHeader = new ReportHeaderBand(); ReportFooterBand reportFooter = new ReportFooterBand(); reportHeader.HeightF = 40; detail.HeightF = 20; reportFooter.HeightF = 380; pageHeader.HeightF = 20; rep.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { reportHeader, detail, pageHeader, reportFooter }); }
public void InitBands(XtraReport rep) { // Create bands DetailBand detail = new DetailBand(); PageHeaderBand pageHeader = new PageHeaderBand(); ReportFooterBand reportFooter = new ReportFooterBand(); detail.Height = 40; reportFooter.Height = 380; pageHeader.Height = 20; // Place the bands onto a report rep.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { detail, pageHeader, reportFooter }); }
/// <summary> /// 获取XRTable位置 /// </summary> /// <param name="p_info">Page容器(只存在XRTable才有效)</param> /// <returns>得到位置</returns> private Point GetTable(PageHeaderBand p_info) { Point point = new Point(); //XRTable.Location(坐标位置(类型是Point )) point.X = 0; //默认位置是纸张减去边距的位置(0就可以了) point.Y = 0; //默认是XRTable的高度如果设置高了会出现空白(所以一直不用设置保持0) foreach (XRTable item in p_info.Controls) { //将Page容器里的所有XRTable宽度叠加就是你下一个 XRTable的位置 //根据情况减去 边框宽度 point.X += (item.Width - 3); } return(point); }
public static PageHeaderBand AddPageHeaderBand(this XtraReport report) { var result = report.GetBandByType <PageHeaderBand>(); if (result == null) { result = new PageHeaderBand() { HeightF = 0F, }; report.Bands.Add(result); } return(result); }
protected virtual PageHeaderBand CreateContainerBand() { var result = this.RootReport.GetBandByType <PageHeaderBand>(); if (result == null) { result = new PageHeaderBand() { HeightF = 0F, }; this.RootReport.Bands.Add(result); } return(result); }
/// <summary> /// 控制XRTable位置 /// </summary> /// <param name="p_info">Page容器(只存在XRTable才有效)</param> /// <returns>整理完成</returns> private Point GetTable(PageHeaderBand p_info) { Point point = new Point(); point.X = 0; point.Y = 56; foreach (XRTable item in p_info.Controls) { if (item.Name != "Page") { point.X += item.Width - 3; } } return(point); }
public void InitBands(XtraReport rep) { // Create bands DetailBand detail = new DetailBand(); PageHeaderBand pageHeader = new PageHeaderBand(); ReportFooterBand reportFooter = new ReportFooterBand(); detail.Height = 20; reportFooter.Height = 380; pageHeader.Height = 20; var reportHeaderBand = CreateReportHeader("BẢNG ĐIỂM TỔNG KẾT ", "Lớp: " + txtTenLop.Text.Trim(), 15.75f, 12f); // Place the bands onto a report rep.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { detail, pageHeader, reportFooter, reportHeaderBand }); }
protected void ASPxDashboard1_CustomExport(object sender, CustomExportWebEventArgs e) { XtraReport report = e.Report as XtraReport; PageHeaderBand headerBand = new PageHeaderBand(); report.Bands.Add(headerBand); XRPictureBox icon = new XRPictureBox(); icon.ImageUrl = Server.MapPath(@"~/App_Data/Images/dxlogo.png"); icon.HeightF = 50; icon.WidthF = 300; headerBand.Controls.Add(icon); XRLabel customHeader = new XRLabel(); customHeader.Text = "Additioanl Header Text"; customHeader.LeftF = 300; customHeader.WidthF = 300; headerBand.Controls.Add(customHeader); XRPageInfo dateInfo = new XRPageInfo(); dateInfo.PageInfo = PageInfo.DateTime; dateInfo.Format = "Created at {0:h:mm tt dd MMMM yyyy}"; dateInfo.TopF = 100; dateInfo.WidthF = 200; headerBand.Controls.Add(dateInfo); XRPageInfo userInfo = new XRPageInfo(); userInfo.PageInfo = PageInfo.UserName; userInfo.Format = "Current User: {0}"; userInfo.TopF = 100; userInfo.LeftF = 250; userInfo.WidthF = 200; headerBand.Controls.Add(userInfo); PageFooterBand footerBand = new PageFooterBand(); report.Bands.Add(footerBand); XRPageInfo pageInfo = new XRPageInfo(); pageInfo.Format = "Page {0} of {1}"; footerBand.Controls.Add(pageInfo); }
public void CreateBands(XtraReport report) { var detail = new DetailBand() { HeightF = 20 }; var pageHeader = new PageHeaderBand() { HeightF = 20 }; var reportFooter = new ReportFooterBand() { HeightF = 380 }; report.Bands.AddRange(new Band[] { detail, pageHeader, reportFooter }); }
/// <summary> /// 初始化报表 /// </summary> /// <param name="p_info">报表格式对象</param> public GenerateReport(_ObjectReport p_info) { this.ReportUnit = ReportUnit.TenthsOfAMillimeter; //使用0.1毫米计量单位 this.Dpi = 254F; this.Bands.Clear(); if (p_info != null) { switch (p_info.GetType().Name) { case "TableReport": TableReport m_info = p_info as TableReport; this.DataSource = m_info.DataSource; this.Margins = m_info.Margins; this.PaperKind = m_info.PaperKind; this.Landscape = this.IsDirection(m_info.Landscape); DetailBand new_Detail = CreateTableDetail(m_info); PageHeaderBand new_PageHeaderBand = CreateTableHeader(m_info); this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { new_PageHeaderBand, new_Detail }); break; case "PageReport": PageReport m_pinfo = p_info as PageReport; this.Margins = m_pinfo.Margins; this.PaperKind = m_pinfo.PaperKind; this.Landscape = this.IsDirection(m_pinfo.Landscape); DetailBand new_pDetail = this.CreateRowDetail(m_pinfo); this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { new_pDetail }); break; case "ExplainReport": ExplainReport m_ExplainReport = p_info as ExplainReport; this.Margins = m_ExplainReport.Margins; this.PaperKind = m_ExplainReport.PaperKind; this.DataSource = null; this.Landscape = this.IsDirection(m_ExplainReport.Landscape); DetailBand new_EDetail = this.CreateRowDetail(m_ExplainReport); PageHeaderBand new_ExplainPageHeaderBand = CreateTitleHeader(m_ExplainReport); this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { new_ExplainPageHeaderBand, new_EDetail }); break; default: break; } } }
private void CreateTemplate() { // create report with bands report = new Report(); page = new ReportPage(); pageHeaderBand = new PageHeaderBand(); pageHeaderBand.CreateUniqueName(); pageHeaderBand.Width = 718; pageHeaderBand.Height = 300; dataBand = new DataBand(); dataBand.CreateUniqueName(); dataBand.Width = 718; dataBand.Height = 300; page.Bands.Add(pageHeaderBand); page.Bands.Add(dataBand); report.Pages.Add(page); }
private PageHeaderBand CreateTableHeader() { PageHeaderBand new_PageHeaderBand = new PageHeaderBand(); XRTable tableHeader = new XRTable(); tableHeader.SizeF = new SizeF(100, 20); tableHeader.StylePriority.UseBorders = false; tableHeader.Borders = BorderSide.All; XRTableRow headerRowOne = new XRTableRow();//一级表头 XRTableCell cell = new XRTableCell(); cell.Text = "rowOne"; headerRowOne.Cells.Add(cell); XRTableRow headerRowTwo = new XRTableRow();//二级表头 headerRowTwo.Cells.Add(new XRTableCell() { Text = "rowTwo" }); tableHeader.Rows.Add(headerRowOne); tableHeader.Rows.Add(headerRowTwo); tableHeader.Location = GetTable(new_PageHeaderBand); new_PageHeaderBand.Controls.Add(tableHeader); XRTable tableHeader1 = new XRTable(); tableHeader1.SizeF = new SizeF(100, 20); tableHeader1.StylePriority.UseBorders = false; tableHeader1.Borders = BorderSide.All; XRTableRow headerRowOne1 = new XRTableRow();//一级表头 XRTableCell cell1 = new XRTableCell(); cell1.Text = "rowOne1"; headerRowOne1.Cells.Add(cell1); tableHeader1.Rows.Add(headerRowOne1); tableHeader1.Location = GetTable(new_PageHeaderBand); new_PageHeaderBand.Controls.Add(tableHeader1); return(new_PageHeaderBand); }
PageHeaderBand CreatePageHeaderBand(XtraReport report) { PageHeaderBand headerBand = report.Bands[BandKind.PageHeader] as PageHeaderBand; // Remove the comments if you need to recreate the PageHeader band //if(headerBand != null) { // for(int i = headerBand.Controls.Count - 1; i >= 0; i--) // DesignToolHelper.RemoveFromContainer(host, headerBand.Controls[i]); // headerBand.Controls.Clear(); // DesignToolHelper.RemoveFromContainer(host, headerBand); if (headerBand == null) { headerBand = new PageHeaderBand(); headerBand.HeightF = 0; headerBand.Visible = true; DesignToolHelper.AddToContainer(host, headerBand); } return(headerBand); }
private void dashboardViewer1_CustomExport(object sender, CustomExportEventArgs e) { XtraReport report = e.Report as XtraReport; PageHeaderBand headerBand = new PageHeaderBand(); report.Bands.Add(headerBand); XRPictureBox icon = new XRPictureBox(); icon.Image = Properties.Resources.dxLogo; icon.HeightF = 50; icon.WidthF = 300; headerBand.Controls.Add(icon); XRLabel customHeader = new XRLabel(); customHeader.Text = "TEST TEST TEST"; customHeader.LeftF = 300; customHeader.WidthF = 300; headerBand.Controls.Add(customHeader); XRPageInfo dateInfo = new XRPageInfo(); dateInfo.PageInfo = PageInfo.DateTime; dateInfo.Format = "Created at {0:h:mm tt dd MMMM yyyy}"; dateInfo.TopF = 50; dateInfo.WidthF = 200; headerBand.Controls.Add(dateInfo); PageFooterBand footerBand = new PageFooterBand(); report.Bands.Add(footerBand); XRPageInfo pageInfo = new XRPageInfo(); pageInfo.Format = "Page {0} of {1}"; footerBand.Controls.Add(pageInfo); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { string resourceFileName = "sub_TuyenDung_UngVien_BC_CC.resx"; this.Detail = new DevExpress.XtraReports.UI.DetailBand(); this.xrTable2 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrt_STT = new DevExpress.XtraReports.UI.XRTableCell(); this.xrt_TenChungChi = new DevExpress.XtraReports.UI.XRTableCell(); this.xrt_NoiDaoTao = new DevExpress.XtraReports.UI.XRTableCell(); this.xrt_NgayCap = new DevExpress.XtraReports.UI.XRTableCell(); this.xrt_NgayHetHan = new DevExpress.XtraReports.UI.XRTableCell(); this.xrt_XepLoai = new DevExpress.XtraReports.UI.XRTableCell(); this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand(); this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand(); this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand(); this.xrTable1 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); // // Detail // this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable2 }); this.Detail.HeightF = 39.58333F; this.Detail.Name = "Detail"; this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrTable2 // this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 12F); this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); this.xrTable2.Name = "xrTable2"; this.xrTable2.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F); this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow2 }); this.xrTable2.SizeF = new System.Drawing.SizeF(899.5104F, 39.58333F); this.xrTable2.StylePriority.UseBorders = false; this.xrTable2.StylePriority.UseFont = false; this.xrTable2.StylePriority.UsePadding = false; this.xrTable2.StylePriority.UseTextAlignment = false; this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; // // xrTableRow2 // this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrt_STT, this.xrt_TenChungChi, this.xrt_NoiDaoTao, this.xrt_NgayCap, this.xrt_NgayHetHan, this.xrt_XepLoai }); this.xrTableRow2.Name = "xrTableRow2"; this.xrTableRow2.Weight = 1D; // // xrt_STT // this.xrt_STT.Name = "xrt_STT"; this.xrt_STT.Weight = 0.1333333295657293D; this.xrt_STT.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint); // // xrt_TenChungChi // this.xrt_TenChungChi.Name = "xrt_TenChungChi"; this.xrt_TenChungChi.Weight = 0.87333338042836461D; // // xrt_NoiDaoTao // this.xrt_NoiDaoTao.Name = "xrt_NoiDaoTao"; this.xrt_NoiDaoTao.Weight = 0.89333335735180952D; // // xrt_NgayCap // this.xrt_NgayCap.Name = "xrt_NgayCap"; this.xrt_NgayCap.Weight = 0.44443333119521222D; // // xrt_NgayHetHan // this.xrt_NgayHetHan.Name = "xrt_NgayHetHan"; this.xrt_NgayHetHan.Weight = 0.42606667424425326D; // // xrt_XepLoai // this.xrt_XepLoai.Name = "xrt_XepLoai"; this.xrt_XepLoai.Weight = 0.22786784713650587D; // // TopMargin // this.TopMargin.Name = "TopMargin"; this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // BottomMargin // this.BottomMargin.HeightF = 1F; this.BottomMargin.Name = "BottomMargin"; this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // PageHeader // this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable1, this.xrLabel1 }); this.PageHeader.HeightF = 56.00001F; this.PageHeader.Name = "PageHeader"; // // xrTable1 // this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 31.00001F); this.xrTable1.Name = "xrTable1"; this.xrTable1.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F); this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow1 }); this.xrTable1.SizeF = new System.Drawing.SizeF(899.5104F, 25F); this.xrTable1.StylePriority.UseBorders = false; this.xrTable1.StylePriority.UseFont = false; this.xrTable1.StylePriority.UsePadding = false; this.xrTable1.StylePriority.UseTextAlignment = false; this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; // // xrTableRow1 // this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell1, this.xrTableCell2, this.xrTableCell3, this.xrTableCell5, this.xrTableCell7, this.xrTableCell4 }); this.xrTableRow1.Name = "xrTableRow1"; this.xrTableRow1.Weight = 1D; // // xrTableCell1 // this.xrTableCell1.Name = "xrTableCell1"; this.xrTableCell1.Text = "STT"; this.xrTableCell1.Weight = 0.1333333295657293D; // // xrTableCell2 // this.xrTableCell2.Name = "xrTableCell2"; this.xrTableCell2.Text = "Tên chứng chỉ"; this.xrTableCell2.Weight = 0.87333338042836472D; // // xrTableCell3 // this.xrTableCell3.Name = "xrTableCell3"; this.xrTableCell3.Text = "Nơi đào tạo"; this.xrTableCell3.Weight = 0.89333335735180952D; // // xrTableCell5 // this.xrTableCell5.Name = "xrTableCell5"; this.xrTableCell5.Text = "Ngày cấp"; this.xrTableCell5.Weight = 0.44443333119521222D; // // xrTableCell7 // this.xrTableCell7.Name = "xrTableCell7"; this.xrTableCell7.Text = "Ngày hết hạn"; this.xrTableCell7.Weight = 0.42606667424425326D; // // xrTableCell4 // this.xrTableCell4.Name = "xrTableCell4"; this.xrTableCell4.Text = "Xếp loại"; this.xrTableCell4.Weight = 0.22786784713650587D; // // xrLabel1 // this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); this.xrLabel1.Name = "xrLabel1"; this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel1.SizeF = new System.Drawing.SizeF(302.0833F, 23.62501F); this.xrLabel1.StylePriority.UseFont = false; this.xrLabel1.StylePriority.UseTextAlignment = false; this.xrLabel1.Text = "BẰNG CẤP CHỨNG CHỈ"; this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; // // sub_TuyenDung_UngVien_BC_CC // this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { this.Detail, this.TopMargin, this.BottomMargin, this.PageHeader }); this.Landscape = true; this.Margins = new System.Drawing.Printing.Margins(100, 100, 100, 1); this.PageHeight = 850; this.PageWidth = 1100; this.Version = "10.1"; ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { string resourceFileName = "rp_austfeed_BaoCaoDSUngVienThamGiaPV.resx"; this.Detail = new DevExpress.XtraReports.UI.DetailBand(); this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand(); this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand(); this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand(); this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel(); this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand(); this.xrTable1 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTable2 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell(); this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand(); this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel(); ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); // // Detail // this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable2 }); this.Detail.HeightF = 42F; this.Detail.Name = "Detail"; this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // TopMargin // this.TopMargin.Name = "TopMargin"; this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // BottomMargin // this.BottomMargin.Name = "BottomMargin"; this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // ReportHeader // this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrLabel2, this.xrLabel1 }); this.ReportHeader.Name = "ReportHeader"; // // xrLabel1 // this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold); this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 27.70834F); this.xrLabel1.Name = "xrLabel1"; this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F); this.xrLabel1.SizeF = new System.Drawing.SizeF(900F, 27.58333F); this.xrLabel1.StylePriority.UseFont = false; this.xrLabel1.StylePriority.UseTextAlignment = false; this.xrLabel1.Text = "BÁO CÁO DANH SÁCH ỨNG VIÊN THAM GIA PHỎNG VẤN"; this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrLabel2 // this.xrLabel2.Font = new System.Drawing.Font("Times New Roman", 11F); this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 66.66666F); this.xrLabel2.Name = "xrLabel2"; this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F); this.xrLabel2.SizeF = new System.Drawing.SizeF(899.9999F, 23.00001F); this.xrLabel2.StylePriority.UseFont = false; this.xrLabel2.StylePriority.UseTextAlignment = false; this.xrLabel2.Text = "Ngày báo cáo......................."; this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // PageHeader // this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable1 }); this.PageHeader.HeightF = 60.41667F; this.PageHeader.Name = "PageHeader"; // // xrTable1 // this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 10.00001F); this.xrTable1.Name = "xrTable1"; this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow1 }); this.xrTable1.SizeF = new System.Drawing.SizeF(900F, 50.41666F); this.xrTable1.StylePriority.UseBorders = false; // // xrTableRow1 // this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell1, this.xrTableCell5, this.xrTableCell4, this.xrTableCell6, this.xrTableCell2, this.xrTableCell8, this.xrTableCell7, this.xrTableCell3 }); this.xrTableRow1.Name = "xrTableRow1"; this.xrTableRow1.Weight = 1D; // // xrTableCell1 // this.xrTableCell1.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrTableCell1.Name = "xrTableCell1"; this.xrTableCell1.StylePriority.UseFont = false; this.xrTableCell1.StylePriority.UseTextAlignment = false; this.xrTableCell1.Text = "STT"; this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell1.Weight = 0.22569442749023444D; // // xrTableCell2 // this.xrTableCell2.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrTableCell2.Name = "xrTableCell2"; this.xrTableCell2.StylePriority.UseFont = false; this.xrTableCell2.StylePriority.UseTextAlignment = false; this.xrTableCell2.Text = "Chuyên ngành"; this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell2.Weight = 0.30034716288248703D; // // xrTableCell3 // this.xrTableCell3.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrTableCell3.Name = "xrTableCell3"; this.xrTableCell3.StylePriority.UseFont = false; this.xrTableCell3.StylePriority.UseTextAlignment = false; this.xrTableCell3.Text = "Ví trí ứng tuyển"; this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell3.Weight = 0.69097229003906246D; // // xrTableCell4 // this.xrTableCell4.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrTableCell4.Multiline = true; this.xrTableCell4.Name = "xrTableCell4"; this.xrTableCell4.StylePriority.UseFont = false; this.xrTableCell4.StylePriority.UseTextAlignment = false; this.xrTableCell4.Text = "Giới\r\n tính"; this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell4.Weight = 0.28993049621582023D; // // xrTableCell5 // this.xrTableCell5.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrTableCell5.Name = "xrTableCell5"; this.xrTableCell5.StylePriority.UseFont = false; this.xrTableCell5.StylePriority.UseTextAlignment = false; this.xrTableCell5.Text = "Họ và tên"; this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell5.Weight = 0.48784721374511714D; // // xrTableCell6 // this.xrTableCell6.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrTableCell6.Multiline = true; this.xrTableCell6.Name = "xrTableCell6"; this.xrTableCell6.StylePriority.UseFont = false; this.xrTableCell6.StylePriority.UseTextAlignment = false; this.xrTableCell6.Text = "Năm \r\nsinh"; this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell6.Weight = 0.27951403299967448D; // // xrTableCell7 // this.xrTableCell7.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrTableCell7.Multiline = true; this.xrTableCell7.Name = "xrTableCell7"; this.xrTableCell7.StylePriority.UseFont = false; this.xrTableCell7.StylePriority.UseTextAlignment = false; this.xrTableCell7.Text = "Số năm \r\ncông tác"; this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell7.Weight = 0.36111104329427079D; // // xrTableCell8 // this.xrTableCell8.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrTableCell8.Name = "xrTableCell8"; this.xrTableCell8.StylePriority.UseFont = false; this.xrTableCell8.StylePriority.UseTextAlignment = false; this.xrTableCell8.Text = "Số năm kinh nghiệm"; this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell8.Weight = 0.36458333333333326D; // // xrTable2 // this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); this.xrTable2.Name = "xrTable2"; this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow2 }); this.xrTable2.SizeF = new System.Drawing.SizeF(900F, 41.04166F); this.xrTable2.StylePriority.UseBorders = false; // // xrTableRow2 // this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell9, this.xrTableCell10, this.xrTableCell11, this.xrTableCell12, this.xrTableCell13, this.xrTableCell14, this.xrTableCell15, this.xrTableCell16 }); this.xrTableRow2.Name = "xrTableRow2"; this.xrTableRow2.Weight = 1D; // // xrTableCell9 // this.xrTableCell9.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrTableCell9.Name = "xrTableCell9"; this.xrTableCell9.StylePriority.UseFont = false; this.xrTableCell9.StylePriority.UseTextAlignment = false; this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell9.Weight = 0.22569442749023444D; // // xrTableCell10 // this.xrTableCell10.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrTableCell10.Name = "xrTableCell10"; this.xrTableCell10.StylePriority.UseFont = false; this.xrTableCell10.StylePriority.UseTextAlignment = false; this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell10.Weight = 0.48784721374511714D; // // xrTableCell11 // this.xrTableCell11.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrTableCell11.Multiline = true; this.xrTableCell11.Name = "xrTableCell11"; this.xrTableCell11.StylePriority.UseFont = false; this.xrTableCell11.StylePriority.UseTextAlignment = false; this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell11.Weight = 0.28993049621582023D; // // xrTableCell12 // this.xrTableCell12.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrTableCell12.Multiline = true; this.xrTableCell12.Name = "xrTableCell12"; this.xrTableCell12.StylePriority.UseFont = false; this.xrTableCell12.StylePriority.UseTextAlignment = false; this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell12.Weight = 0.27951403299967448D; // // xrTableCell13 // this.xrTableCell13.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrTableCell13.Name = "xrTableCell13"; this.xrTableCell13.StylePriority.UseFont = false; this.xrTableCell13.StylePriority.UseTextAlignment = false; this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell13.Weight = 0.30034716288248703D; // // xrTableCell14 // this.xrTableCell14.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrTableCell14.Name = "xrTableCell14"; this.xrTableCell14.StylePriority.UseFont = false; this.xrTableCell14.StylePriority.UseTextAlignment = false; this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell14.Weight = 0.36458333333333326D; // // xrTableCell15 // this.xrTableCell15.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrTableCell15.Multiline = true; this.xrTableCell15.Name = "xrTableCell15"; this.xrTableCell15.StylePriority.UseFont = false; this.xrTableCell15.Weight = 0.36111104329427079D; // // xrTableCell16 // this.xrTableCell16.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrTableCell16.Name = "xrTableCell16"; this.xrTableCell16.StylePriority.UseFont = false; this.xrTableCell16.StylePriority.UseTextAlignment = false; this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell16.Weight = 0.69097229003906246D; // // ReportFooter // this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrLabel6, this.xrLabel7, this.xrLabel10, this.xrLabel9, this.xrLabel4, this.xrLabel8, this.xrLabel5 }); this.ReportFooter.Name = "ReportFooter"; // // xrLabel4 // this.xrLabel4.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(75F, 12.5F); this.xrLabel4.Name = "xrLabel4"; this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel4.SizeF = new System.Drawing.SizeF(100F, 23F); this.xrLabel4.StylePriority.UseFont = false; this.xrLabel4.Text = "Người lập"; // // xrLabel8 // this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(75F, 62.5F); this.xrLabel8.Name = "xrLabel8"; this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel8.SizeF = new System.Drawing.SizeF(123.97F, 23F); // // xrLabel5 // this.xrLabel5.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(262.5F, 12.5F); this.xrLabel5.Name = "xrLabel5"; this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel5.SizeF = new System.Drawing.SizeF(123.973F, 23F); this.xrLabel5.StylePriority.UseFont = false; this.xrLabel5.Text = "Kế toán trưởng"; // // xrLabel9 // this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(237.5F, 62.5F); this.xrLabel9.Name = "xrLabel9"; this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel9.SizeF = new System.Drawing.SizeF(144.7917F, 23F); // // xrLabel6 // this.xrLabel6.Font = new System.Drawing.Font("Times New Roman", 12F); this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(487.5F, 0F); this.xrLabel6.Name = "xrLabel6"; this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel6.SizeF = new System.Drawing.SizeF(349.4265F, 23F); this.xrLabel6.StylePriority.UseFont = false; this.xrLabel6.StylePriority.UseTextAlignment = false; this.xrLabel6.Text = "Hưng Yên,ngày...........tháng............năm............."; this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrLabel7 // this.xrLabel7.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(550F, 25F); this.xrLabel7.Name = "xrLabel7"; this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel7.SizeF = new System.Drawing.SizeF(182.6573F, 28.20829F); this.xrLabel7.StylePriority.UseFont = false; this.xrLabel7.StylePriority.UseTextAlignment = false; this.xrLabel7.Text = "Trưởng phòng HCNS"; this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrLabel10 // this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(550F, 75F); this.xrLabel10.Name = "xrLabel10"; this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel10.SizeF = new System.Drawing.SizeF(177.0833F, 23F); // // rp_austfeed_BaoCaoDSUngVienThamGiaPV // this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { this.Detail, this.TopMargin, this.BottomMargin, this.ReportHeader, this.PageHeader, this.ReportFooter }); this.Landscape = true; this.PageHeight = 850; this.PageWidth = 1100; this.Version = "10.1"; ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary(); this.Detail = new DevExpress.XtraReports.UI.DetailBand(); this.xrTable2 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell(); this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand(); this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand(); this.dsBaoCaoTonKhoOnHand1 = new WebUI.Report.DsBaoCaoTonKhoOnHand(); this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand(); this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand(); this.xrTable1 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell(); this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand(); this.xrTable3 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell(); this.TonCuoi = new DevExpress.XtraReports.UI.CalculatedField(); ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dsBaoCaoTonKhoOnHand1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); // // Detail // this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable2 }); this.Detail.HeightF = 25F; this.Detail.Name = "Detail"; this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrTable2 // this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); this.xrTable2.Name = "xrTable2"; this.xrTable2.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F); this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow2 }); this.xrTable2.SizeF = new System.Drawing.SizeF(801F, 25F); this.xrTable2.StylePriority.UseBorders = false; this.xrTable2.StylePriority.UseFont = false; this.xrTable2.StylePriority.UsePadding = false; // // xrTableRow2 // this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell6, this.xrTableCell7, this.xrTableCell8, this.xrTableCell16, this.xrTableCell10, this.xrTableCell13, this.xrTableCell14 }); this.xrTableRow2.Name = "xrTableRow2"; this.xrTableRow2.Weight = 11.5D; // // xrTableCell6 // this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "Detail.STT") }); this.xrTableCell6.Name = "xrTableCell6"; this.xrTableCell6.StylePriority.UseTextAlignment = false; this.xrTableCell6.Text = "xrTableCell6"; this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell6.Weight = 0.80689117431640534D; // // xrTableCell7 // this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "Detail.ProductCode") }); this.xrTableCell7.Name = "xrTableCell7"; this.xrTableCell7.StylePriority.UseTextAlignment = false; this.xrTableCell7.Text = "xrTableCell7"; this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; this.xrTableCell7.Weight = 2.4007986617135022D; // // xrTableCell8 // this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "Detail.ProductName") }); this.xrTableCell8.Name = "xrTableCell8"; this.xrTableCell8.StylePriority.UseTextAlignment = false; this.xrTableCell8.Text = "xrTableCell8"; this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; this.xrTableCell8.Weight = 3.5281243031447995D; // // xrTableCell16 // this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "Detail.Specifications") }); this.xrTableCell16.Name = "xrTableCell16"; this.xrTableCell16.StylePriority.UseTextAlignment = false; this.xrTableCell16.Text = "xrTableCell16"; this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrTableCell16.Weight = 1.205614867029601D; // // xrTableCell10 // this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "Detail.ImportPrice", "{0:n0}") }); this.xrTableCell10.Name = "xrTableCell10"; this.xrTableCell10.StylePriority.UseTextAlignment = false; this.xrTableCell10.Text = "xrTableCell10"; this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrTableCell10.Weight = 1.29353471967155D; // // xrTableCell13 // this.xrTableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "Detail.Price", "{0:n0}") }); this.xrTableCell13.Name = "xrTableCell13"; this.xrTableCell13.StylePriority.UseTextAlignment = false; this.xrTableCell13.Text = "xrTableCell13"; this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrTableCell13.Weight = 1.3611873839452389D; // // xrTableCell14 // this.xrTableCell14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "Detail.TonCuoi", "{0:n2}") }); this.xrTableCell14.Name = "xrTableCell14"; this.xrTableCell14.StylePriority.UseTextAlignment = false; this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrTableCell14.Weight = 1.4038487390098602D; // // TopMargin // this.TopMargin.HeightF = 31F; this.TopMargin.Name = "TopMargin"; this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // BottomMargin // this.BottomMargin.HeightF = 98F; this.BottomMargin.Name = "BottomMargin"; this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // dsBaoCaoTonKhoOnHand1 // this.dsBaoCaoTonKhoOnHand1.DataSetName = "DsBaoCaoTonKhoOnHand"; this.dsBaoCaoTonKhoOnHand1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; // // ReportHeader // this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrLabel7, this.xrLabel6, this.xrLabel5, this.xrLabel4, this.xrLabel2, this.xrLabel3, this.xrLabel1 }); this.ReportHeader.HeightF = 150.7917F; this.ReportHeader.Name = "ReportHeader"; // // xrLabel7 // this.xrLabel7.Borders = DevExpress.XtraPrinting.BorderSide.None; this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "HeaderInformation.CreatedDate", "{0:dd/MM/yyyy}") }); this.xrLabel7.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(368.75F, 115.7084F); this.xrLabel7.Name = "xrLabel7"; this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel7.SizeF = new System.Drawing.SizeF(158.3333F, 22.99999F); this.xrLabel7.StylePriority.UseBorders = false; this.xrLabel7.StylePriority.UseFont = false; this.xrLabel7.Text = "xrLabel7"; // // xrLabel6 // this.xrLabel6.Borders = DevExpress.XtraPrinting.BorderSide.None; this.xrLabel6.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(276.0417F, 115.7084F); this.xrLabel6.Name = "xrLabel6"; this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel6.SizeF = new System.Drawing.SizeF(92.70834F, 23.00002F); this.xrLabel6.StylePriority.UseBorders = false; this.xrLabel6.StylePriority.UseFont = false; this.xrLabel6.StylePriority.UseTextAlignment = false; this.xrLabel6.Text = "Ngày:"; this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; // // xrLabel5 // this.xrLabel5.Borders = DevExpress.XtraPrinting.BorderSide.None; this.xrLabel5.Font = new System.Drawing.Font("Times New Roman", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(211.4584F, 80.20837F); this.xrLabel5.Name = "xrLabel5"; this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel5.SizeF = new System.Drawing.SizeF(382.2917F, 35.50002F); this.xrLabel5.StylePriority.UseBorders = false; this.xrLabel5.StylePriority.UseFont = false; this.xrLabel5.StylePriority.UseTextAlignment = false; this.xrLabel5.Text = "BÁO CÁO TỒN KHO ON HAND"; this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrLabel4 // this.xrLabel4.Borders = DevExpress.XtraPrinting.BorderSide.None; this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "HeaderInformation.WarehouseName") }); this.xrLabel4.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(139.8442F, 29.87499F); this.xrLabel4.Name = "xrLabel4"; this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel4.SizeF = new System.Drawing.SizeF(257.2917F, 23F); this.xrLabel4.StylePriority.UseBorders = false; this.xrLabel4.StylePriority.UseFont = false; this.xrLabel4.Text = "xrLabel4"; // // xrLabel2 // this.xrLabel2.Borders = DevExpress.XtraPrinting.BorderSide.None; this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "HeaderInformation.StoreName") }); this.xrLabel2.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(139.8442F, 6.875006F); this.xrLabel2.Name = "xrLabel2"; this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel2.SizeF = new System.Drawing.SizeF(257.2917F, 23F); this.xrLabel2.StylePriority.UseBorders = false; this.xrLabel2.StylePriority.UseFont = false; this.xrLabel2.Text = "xrLabel2"; // // xrLabel3 // this.xrLabel3.Borders = DevExpress.XtraPrinting.BorderSide.None; this.xrLabel3.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(47.13589F, 29.87502F); this.xrLabel3.Name = "xrLabel3"; this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel3.SizeF = new System.Drawing.SizeF(92.70834F, 23.00002F); this.xrLabel3.StylePriority.UseBorders = false; this.xrLabel3.StylePriority.UseFont = false; this.xrLabel3.StylePriority.UseTextAlignment = false; this.xrLabel3.Text = "Kho:"; this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; // // xrLabel1 // this.xrLabel1.Borders = DevExpress.XtraPrinting.BorderSide.None; this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(47.13589F, 6.875006F); this.xrLabel1.Name = "xrLabel1"; this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel1.SizeF = new System.Drawing.SizeF(92.70834F, 23F); this.xrLabel1.StylePriority.UseBorders = false; this.xrLabel1.StylePriority.UseFont = false; this.xrLabel1.StylePriority.UseTextAlignment = false; this.xrLabel1.Text = "Cửa hàng:"; this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; // // PageHeader // this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable1 }); this.PageHeader.HeightF = 25F; this.PageHeader.Name = "PageHeader"; // // xrTable1 // this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); this.xrTable1.Name = "xrTable1"; this.xrTable1.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F); this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow1 }); this.xrTable1.SizeF = new System.Drawing.SizeF(801F, 25F); this.xrTable1.StylePriority.UseBorders = false; this.xrTable1.StylePriority.UseFont = false; this.xrTable1.StylePriority.UsePadding = false; this.xrTable1.StylePriority.UseTextAlignment = false; this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrTableRow1 // this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell1, this.xrTableCell2, this.xrTableCell3, this.xrTableCell15, this.xrTableCell4, this.xrTableCell5, this.xrTableCell9 }); this.xrTableRow1.Name = "xrTableRow1"; this.xrTableRow1.Weight = 11.5D; // // xrTableCell1 // this.xrTableCell1.Name = "xrTableCell1"; this.xrTableCell1.Text = "STT"; this.xrTableCell1.Weight = 1.0192306988055888D; // // xrTableCell2 // this.xrTableCell2.Multiline = true; this.xrTableCell2.Name = "xrTableCell2"; this.xrTableCell2.Text = "Mã sản phẩm\r\n"; this.xrTableCell2.Weight = 3.0325870693346304D; // // xrTableCell3 // this.xrTableCell3.Name = "xrTableCell3"; this.xrTableCell3.Text = "Tên sản phẩm"; this.xrTableCell3.Weight = 4.4565775688398D; // // xrTableCell15 // this.xrTableCell15.Name = "xrTableCell15"; this.xrTableCell15.Text = "Quy cách"; this.xrTableCell15.Weight = 1.5228828512522117D; // // xrTableCell4 // this.xrTableCell4.Name = "xrTableCell4"; this.xrTableCell4.Text = "Giá nhập"; this.xrTableCell4.Weight = 1.6339375574141903D; // // xrTableCell5 // this.xrTableCell5.Multiline = true; this.xrTableCell5.Name = "xrTableCell5"; this.xrTableCell5.Text = "Giá bán\r\n"; this.xrTableCell5.Weight = 1.7193953821867061D; // // xrTableCell9 // this.xrTableCell9.Name = "xrTableCell9"; this.xrTableCell9.Text = "Tồn kho"; this.xrTableCell9.Weight = 1.7732814032771018D; // // ReportFooter // this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable3 }); this.ReportFooter.HeightF = 63.54167F; this.ReportFooter.Name = "ReportFooter"; // // xrTable3 // this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTable3.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); this.xrTable3.Name = "xrTable3"; this.xrTable3.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F); this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow3 }); this.xrTable3.SizeF = new System.Drawing.SizeF(801F, 25F); this.xrTable3.StylePriority.UseBorders = false; this.xrTable3.StylePriority.UseFont = false; this.xrTable3.StylePriority.UsePadding = false; // // xrTableRow3 // this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell11, this.xrTableCell12 }); this.xrTableRow3.Name = "xrTableRow3"; this.xrTableRow3.Weight = 1D; // // xrTableCell11 // this.xrTableCell11.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrTableCell11.Name = "xrTableCell11"; this.xrTableCell11.StylePriority.UseFont = false; this.xrTableCell11.StylePriority.UseTextAlignment = false; this.xrTableCell11.Text = "Tổng"; this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell11.Weight = 1.7660252028245196D; // // xrTableCell12 // this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "Detail.InventoryQty") }); this.xrTableCell12.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrTableCell12.Name = "xrTableCell12"; this.xrTableCell12.StylePriority.UseFont = false; this.xrTableCell12.StylePriority.UseTextAlignment = false; xrSummary1.FormatString = "{0:n2}"; xrSummary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Report; this.xrTableCell12.Summary = xrSummary1; this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrTableCell12.Weight = 0.23397479717548081D; // // TonCuoi // this.TonCuoi.DataMember = "Detail"; this.TonCuoi.Expression = "Iif([InventoryQty]==0, \'-\' ,[InventoryQty] )"; this.TonCuoi.Name = "TonCuoi"; // // BaoCaoTonKhoOnHandXtraReport // this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { this.Detail, this.TopMargin, this.BottomMargin, this.ReportHeader, this.PageHeader, this.ReportFooter }); this.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right))); this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] { this.TonCuoi }); this.DataMember = "Detail"; this.DataSource = this.dsBaoCaoTonKhoOnHand1; this.Margins = new System.Drawing.Printing.Margins(21, 28, 31, 98); this.Version = "15.2"; ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dsBaoCaoTonKhoOnHand1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); }
private void InitializeComponent() { this.dtl = new DevExpress.XtraReports.UI.DetailBand(); this.ph = new DevExpress.XtraReports.UI.PageHeaderBand(); this.xlblReportHeader = new DevExpress.XtraReports.UI.XRLabel(); this.pf = new DevExpress.XtraReports.UI.PageFooterBand(); this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); this.xrPageInfo = new DevExpress.XtraReports.UI.XRPageInfo(); this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand(); this.xrTableRoadInfo = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableRoadInfoCell1 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableRoadInfoCell2 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableDev = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableDevCell = new DevExpress.XtraReports.UI.XRTableCell(); this.xlblDevice = new DevExpress.XtraReports.UI.XRLabel(); this.xlblTimeRange = new DevExpress.XtraReports.UI.XRLabel(); this.xlblMemo = new DevExpress.XtraReports.UI.XRLabel(); this.xlblUser = new DevExpress.XtraReports.UI.XRLabel(); this.xlblTime = new DevExpress.XtraReports.UI.XRLabel(); this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand(); this.Detail = new DevExpress.XtraReports.UI.DetailBand(); this.xlblDev = new DevExpress.XtraReports.UI.XRLabel(); ((System.ComponentModel.ISupportInitialize)(this.xrTableRoadInfo)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTableDev)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); // // dtl // this.dtl.Font = new System.Drawing.Font("標楷體", 9.75F); this.dtl.Height = 0; this.dtl.Name = "dtl"; this.dtl.ParentStyleUsing.UseFont = false; // // ph // this.ph.Font = new System.Drawing.Font("標楷體", 9.75F); this.ph.Height = 0; this.ph.Name = "ph"; this.ph.ParentStyleUsing.UseFont = false; // // xlblReportHeader // this.xlblReportHeader.BackColor = System.Drawing.Color.Empty; this.xlblReportHeader.BorderColor = System.Drawing.SystemColors.Control; this.xlblReportHeader.Font = new System.Drawing.Font("標楷體", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xlblReportHeader.ForeColor = System.Drawing.SystemColors.Desktop; this.xlblReportHeader.Location = new System.Drawing.Point(250, 25); this.xlblReportHeader.Name = "xlblReportHeader"; this.xlblReportHeader.ParentStyleUsing.UseBackColor = false; this.xlblReportHeader.ParentStyleUsing.UseBorderColor = false; this.xlblReportHeader.ParentStyleUsing.UseFont = false; this.xlblReportHeader.ParentStyleUsing.UseForeColor = false; this.xlblReportHeader.Size = new System.Drawing.Size(600, 33); this.xlblReportHeader.Text = "測試報表"; this.xlblReportHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // pf // this.pf.Font = new System.Drawing.Font("標楷體", 9.75F); this.pf.Height = 158; this.pf.Name = "pf"; this.pf.ParentStyleUsing.UseFont = false; // // xrLabel1 // this.xrLabel1.Font = new System.Drawing.Font("標楷體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrLabel1.ForeColor = System.Drawing.SystemColors.Desktop; this.xrLabel1.Location = new System.Drawing.Point(967, 108); this.xrLabel1.Name = "xrLabel1"; this.xrLabel1.ParentStyleUsing.UseFont = false; this.xrLabel1.ParentStyleUsing.UseForeColor = false; this.xrLabel1.Size = new System.Drawing.Size(108, 25); this.xrLabel1.Text = "頁次:"; this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; // // xrPageInfo // this.xrPageInfo.Font = new System.Drawing.Font("標楷體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrPageInfo.ForeColor = System.Drawing.SystemColors.Desktop; this.xrPageInfo.Location = new System.Drawing.Point(1075, 108); this.xrPageInfo.Name = "xrPageInfo"; this.xrPageInfo.ParentStyleUsing.UseFont = false; this.xrPageInfo.ParentStyleUsing.UseForeColor = false; this.xrPageInfo.Size = new System.Drawing.Size(50, 25); this.xrPageInfo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; // // TopMargin // this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xlblDev, this.xrTableRoadInfo, this.xrTableDev, this.xlblDevice, this.xlblTimeRange, this.xrPageInfo, this.xrLabel1, this.xlblMemo, this.xlblUser, this.xlblTime, this.xlblReportHeader}); this.TopMargin.Font = new System.Drawing.Font("標楷體", 9.75F); this.TopMargin.Height = 142; this.TopMargin.Name = "TopMargin"; this.TopMargin.ParentStyleUsing.UseFont = false; // // xrTableRoadInfo // this.xrTableRoadInfo.Location = new System.Drawing.Point(0, 108); this.xrTableRoadInfo.Name = "xrTableRoadInfo"; this.xrTableRoadInfo.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow2}); this.xrTableRoadInfo.Size = new System.Drawing.Size(408, 25); // // xrTableRow2 // this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableRoadInfoCell1, this.xrTableRoadInfoCell2}); this.xrTableRow2.Name = "xrTableRow2"; this.xrTableRow2.Size = new System.Drawing.Size(408, 25); // // xrTableRoadInfoCell1 // this.xrTableRoadInfoCell1.Font = new System.Drawing.Font("標楷體", 9.75F); this.xrTableRoadInfoCell1.ForeColor = System.Drawing.SystemColors.Desktop; this.xrTableRoadInfoCell1.Location = new System.Drawing.Point(0, 0); this.xrTableRoadInfoCell1.Name = "xrTableRoadInfoCell1"; this.xrTableRoadInfoCell1.ParentStyleUsing.UseFont = false; this.xrTableRoadInfoCell1.ParentStyleUsing.UseForeColor = false; this.xrTableRoadInfoCell1.Size = new System.Drawing.Size(208, 25); this.xrTableRoadInfoCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; // // xrTableRoadInfoCell2 // this.xrTableRoadInfoCell2.Font = new System.Drawing.Font("標楷體", 9.75F); this.xrTableRoadInfoCell2.ForeColor = System.Drawing.SystemColors.Desktop; this.xrTableRoadInfoCell2.Location = new System.Drawing.Point(208, 0); this.xrTableRoadInfoCell2.Name = "xrTableRoadInfoCell2"; this.xrTableRoadInfoCell2.ParentStyleUsing.UseFont = false; this.xrTableRoadInfoCell2.ParentStyleUsing.UseForeColor = false; this.xrTableRoadInfoCell2.Size = new System.Drawing.Size(200, 25); this.xrTableRoadInfoCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; // // xrTableDev // this.xrTableDev.Location = new System.Drawing.Point(808, 108); this.xrTableDev.Name = "xrTableDev"; this.xrTableDev.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow1}); this.xrTableDev.Size = new System.Drawing.Size(159, 25); this.xrTableDev.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; // // xrTableRow1 // this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableDevCell}); this.xrTableRow1.Name = "xrTableRow1"; this.xrTableRow1.Size = new System.Drawing.Size(159, 25); // // xrTableDevCell // this.xrTableDevCell.Font = new System.Drawing.Font("標楷體", 9.75F); this.xrTableDevCell.ForeColor = System.Drawing.SystemColors.Desktop; this.xrTableDevCell.Location = new System.Drawing.Point(0, 0); this.xrTableDevCell.Name = "xrTableDevCell"; this.xrTableDevCell.ParentStyleUsing.UseFont = false; this.xrTableDevCell.ParentStyleUsing.UseForeColor = false; this.xrTableDevCell.Size = new System.Drawing.Size(159, 25); this.xrTableDevCell.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; // // xlblDevice // this.xlblDevice.Font = new System.Drawing.Font("標楷體", 9.75F); this.xlblDevice.ForeColor = System.Drawing.SystemColors.Desktop; this.xlblDevice.Location = new System.Drawing.Point(717, 108); this.xlblDevice.Name = "xlblDevice"; this.xlblDevice.ParentStyleUsing.UseFont = false; this.xlblDevice.ParentStyleUsing.UseForeColor = false; this.xlblDevice.Size = new System.Drawing.Size(95, 25); this.xlblDevice.Text = "偵測器編號:"; this.xlblDevice.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; // // xlblTimeRange // this.xlblTimeRange.Font = new System.Drawing.Font("標楷體", 9.75F); this.xlblTimeRange.ForeColor = System.Drawing.SystemColors.Desktop; this.xlblTimeRange.Location = new System.Drawing.Point(0, 83); this.xlblTimeRange.Name = "xlblTimeRange"; this.xlblTimeRange.ParentStyleUsing.UseFont = false; this.xlblTimeRange.ParentStyleUsing.UseForeColor = false; this.xlblTimeRange.Size = new System.Drawing.Size(408, 25); this.xlblTimeRange.Text = "時間:"; this.xlblTimeRange.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; // // xlblMemo // this.xlblMemo.Font = new System.Drawing.Font("標楷體", 9.75F); this.xlblMemo.ForeColor = System.Drawing.SystemColors.Desktop; this.xlblMemo.Location = new System.Drawing.Point(967, 83); this.xlblMemo.Name = "xlblMemo"; this.xlblMemo.ParentStyleUsing.UseFont = false; this.xlblMemo.ParentStyleUsing.UseForeColor = false; this.xlblMemo.Size = new System.Drawing.Size(158, 25); this.xlblMemo.Text = "中區-RPT_DATA_06"; this.xlblMemo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; // // xlblUser // this.xlblUser.BackColor = System.Drawing.Color.Empty; this.xlblUser.Font = new System.Drawing.Font("標楷體", 9.75F); this.xlblUser.ForeColor = System.Drawing.SystemColors.Desktop; this.xlblUser.Location = new System.Drawing.Point(717, 58); this.xlblUser.Name = "xlblUser"; this.xlblUser.ParentStyleUsing.UseBackColor = false; this.xlblUser.ParentStyleUsing.UseFont = false; this.xlblUser.ParentStyleUsing.UseForeColor = false; this.xlblUser.Size = new System.Drawing.Size(249, 25); this.xlblUser.Text = "操作者:"; this.xlblUser.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; // // xlblTime // this.xlblTime.BackColor = System.Drawing.Color.Empty; this.xlblTime.Font = new System.Drawing.Font("標楷體", 9.75F); this.xlblTime.ForeColor = System.Drawing.SystemColors.Desktop; this.xlblTime.Location = new System.Drawing.Point(717, 83); this.xlblTime.Name = "xlblTime"; this.xlblTime.ParentStyleUsing.UseBackColor = false; this.xlblTime.ParentStyleUsing.UseFont = false; this.xlblTime.ParentStyleUsing.UseForeColor = false; this.xlblTime.Size = new System.Drawing.Size(249, 25); this.xlblTime.Text = "列印日期:"; this.xlblTime.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; // // DetailReport // this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { this.Detail}); this.DetailReport.Font = new System.Drawing.Font("標楷體", 9.75F); this.DetailReport.Name = "DetailReport"; this.DetailReport.ParentStyleUsing.UseFont = false; // // Detail // this.Detail.Font = new System.Drawing.Font("標楷體", 9.75F); this.Detail.Height = 0; this.Detail.Name = "Detail"; this.Detail.ParentStyleUsing.UseFont = false; // // xlblDev // this.xlblDev.Font = new System.Drawing.Font("標楷體", 9.75F); this.xlblDev.ForeColor = System.Drawing.SystemColors.Desktop; this.xlblDev.Location = new System.Drawing.Point(0, 108); this.xlblDev.Name = "xlblDev"; this.xlblDev.ParentStyleUsing.UseFont = false; this.xlblDev.ParentStyleUsing.UseForeColor = false; this.xlblDev.Size = new System.Drawing.Size(408, 25); this.xlblDev.Text = "設備種類:"; this.xlblDev.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; // // clsReport // this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { this.dtl, this.ph, this.pf, this.TopMargin, this.DetailReport}); this.Margins = new System.Drawing.Printing.Margins(20, 20, 142, 75); this.PageHeight = 827; this.PageWidth = 1169; this.PaperKind = System.Drawing.Printing.PaperKind.A4Rotated; ((System.ComponentModel.ISupportInitialize)(this.xrTableRoadInfo)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTableDev)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> public void InitializeComponent() { string resourceFileName = "OgrenciSinifListesi.resx"; System.Resources.ResourceManager resources = global::Resources.OgrenciSinifListesi.ResourceManager; this.components = new System.ComponentModel.Container(); DevExpress.DataAccess.Sql.TableQuery tableQuery1 = new DevExpress.DataAccess.Sql.TableQuery(); DevExpress.DataAccess.Sql.RelationInfo relationInfo1 = new DevExpress.DataAccess.Sql.RelationInfo(); DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo1 = new DevExpress.DataAccess.Sql.RelationColumnInfo(); DevExpress.DataAccess.Sql.RelationInfo relationInfo2 = new DevExpress.DataAccess.Sql.RelationInfo(); DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo2 = new DevExpress.DataAccess.Sql.RelationColumnInfo(); DevExpress.DataAccess.Sql.RelationInfo relationInfo3 = new DevExpress.DataAccess.Sql.RelationInfo(); DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo3 = new DevExpress.DataAccess.Sql.RelationColumnInfo(); DevExpress.DataAccess.Sql.RelationInfo relationInfo4 = new DevExpress.DataAccess.Sql.RelationInfo(); DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo4 = new DevExpress.DataAccess.Sql.RelationColumnInfo(); DevExpress.DataAccess.Sql.TableInfo tableInfo1 = new DevExpress.DataAccess.Sql.TableInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo1 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo2 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo3 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.TableInfo tableInfo2 = new DevExpress.DataAccess.Sql.TableInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo4 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo5 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.TableInfo tableInfo3 = new DevExpress.DataAccess.Sql.TableInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo6 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo7 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.TableInfo tableInfo4 = new DevExpress.DataAccess.Sql.TableInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo8 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo9 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.TableInfo tableInfo5 = new DevExpress.DataAccess.Sql.TableInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo10 = new DevExpress.DataAccess.Sql.ColumnInfo(); this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(); this.Detail = new DevExpress.XtraReports.UI.DetailBand(); this.xrTable2 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell(); this.Title = new DevExpress.XtraReports.UI.XRControlStyle(); this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle(); this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle(); this.DataField = new DevExpress.XtraReports.UI.XRControlStyle(); this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand(); this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand(); this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand(); this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand(); this.xrTable1 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell(); this.sharedImageCollection1 = new DevExpress.Utils.SharedImageCollection(this.components); this.cat_id = new DevExpress.XtraReports.Parameters.Parameter(); this.dersid = new DevExpress.XtraReports.Parameters.Parameter(); this.formattingRule1 = new DevExpress.XtraReports.UI.FormattingRule(); ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1.ImageSource)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); // // sqlDataSource1 // this.sqlDataSource1.ConnectionName = "Tu_SinavConnectionString"; this.sqlDataSource1.Name = "sqlDataSource1"; tableQuery1.Name = "CustomSqlQuery"; relationColumnInfo1.NestedKeyColumn = "ogr_no"; relationColumnInfo1.ParentKeyColumn = "ogr_no"; relationInfo1.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] { relationColumnInfo1}); relationInfo1.NestedTable = "Ogrenci"; relationInfo1.ParentTable = "ogr_sinav_derslik"; relationColumnInfo2.NestedKeyColumn = "Sinav_id"; relationColumnInfo2.ParentKeyColumn = "Sinav_id"; relationInfo2.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] { relationColumnInfo2}); relationInfo2.NestedTable = "Sinavlar"; relationInfo2.ParentTable = "ogr_sinav_derslik"; relationColumnInfo3.NestedKeyColumn = "ders_id"; relationColumnInfo3.ParentKeyColumn = "ders_id"; relationInfo3.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] { relationColumnInfo3}); relationInfo3.NestedTable = "Dersler"; relationInfo3.ParentTable = "Sinavlar"; relationColumnInfo4.NestedKeyColumn = "derslik_id"; relationColumnInfo4.ParentKeyColumn = "derslik_id"; relationInfo4.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] { relationColumnInfo4}); relationInfo4.NestedTable = "Derslik"; relationInfo4.ParentTable = "ogr_sinav_derslik"; tableQuery1.Relations.AddRange(new DevExpress.DataAccess.Sql.RelationInfo[] { relationInfo1, relationInfo2, relationInfo3, relationInfo4}); tableInfo1.Name = "ogr_sinav_derslik"; columnInfo1.Name = "ogr_no"; columnInfo2.Name = "Sinav_id"; columnInfo3.Name = "derslik_id"; tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] { columnInfo1, columnInfo2, columnInfo3}); tableInfo2.Name = "Ogrenci"; columnInfo4.Name = "ogr_adi"; columnInfo5.Name = "ogr_soyadi"; tableInfo2.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] { columnInfo4, columnInfo5}); tableInfo3.Name = "Sinavlar"; columnInfo6.Name = "ders_id"; columnInfo7.Name = "tarih"; tableInfo3.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] { columnInfo6, columnInfo7}); tableInfo4.Name = "Dersler"; columnInfo8.Alias = "Dersler_ders_id"; columnInfo8.Name = "ders_id"; columnInfo9.Name = "ders_adi"; tableInfo4.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] { columnInfo8, columnInfo9}); tableInfo5.Name = "Derslik"; columnInfo10.Name = "derslik_adi"; tableInfo5.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] { columnInfo10}); tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] { tableInfo1, tableInfo2, tableInfo3, tableInfo4, tableInfo5}); this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] { tableQuery1}); this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable"); // // Detail // this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable2}); this.Detail.HeightF = 24.93844F; this.Detail.MultiColumn.ColumnSpacing = 10F; this.Detail.MultiColumn.ColumnWidth = 355F; this.Detail.MultiColumn.Layout = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown; this.Detail.MultiColumn.Mode = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnCount; this.Detail.Name = "Detail"; this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.Detail.StyleName = "DataField"; this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrTable2 // this.xrTable2.BackColor = System.Drawing.Color.Transparent; this.xrTable2.BorderColor = System.Drawing.Color.Gainsboro; this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 12F); this.xrTable2.ForeColor = System.Drawing.Color.Black; this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); this.xrTable2.Name = "xrTable2"; this.xrTable2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow2}); this.xrTable2.SizeF = new System.Drawing.SizeF(737.5F, 24.39223F); this.xrTable2.StylePriority.UseBackColor = false; this.xrTable2.StylePriority.UseBorderColor = false; this.xrTable2.StylePriority.UseBorders = false; this.xrTable2.StylePriority.UseFont = false; this.xrTable2.StylePriority.UseForeColor = false; this.xrTable2.StylePriority.UsePadding = false; // // xrTableRow2 // this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell5, this.xrTableCell6, this.xrTableCell7, this.xrTableCell8}); this.xrTableRow2.Name = "xrTableRow2"; this.xrTableRow2.Weight = 1D; // // xrTableCell5 // this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomSqlQuery.ogr_no")}); this.xrTableCell5.Name = "xrTableCell5"; this.xrTableCell5.Weight = 1D; // // xrTableCell6 // this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomSqlQuery.ogr_adi")}); this.xrTableCell6.Name = "xrTableCell6"; this.xrTableCell6.Text = "xrTableCell6"; this.xrTableCell6.Weight = 1D; // // xrTableCell7 // this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomSqlQuery.ogr_soyadi")}); this.xrTableCell7.Name = "xrTableCell7"; this.xrTableCell7.Text = "xrTableCell7"; this.xrTableCell7.Weight = 1D; // // xrTableCell8 // this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomSqlQuery.derslik_adi")}); this.xrTableCell8.Name = "xrTableCell8"; this.xrTableCell8.Weight = 1D; // // Title // this.Title.BackColor = System.Drawing.Color.Transparent; this.Title.BorderColor = System.Drawing.Color.Black; this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None; this.Title.BorderWidth = 1F; this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold); this.Title.ForeColor = System.Drawing.Color.Maroon; this.Title.Name = "Title"; // // FieldCaption // this.FieldCaption.BackColor = System.Drawing.Color.Transparent; this.FieldCaption.BorderColor = System.Drawing.Color.Black; this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None; this.FieldCaption.BorderWidth = 1F; this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); this.FieldCaption.ForeColor = System.Drawing.Color.Maroon; this.FieldCaption.Name = "FieldCaption"; // // PageInfo // this.PageInfo.BackColor = System.Drawing.Color.Transparent; this.PageInfo.BorderColor = System.Drawing.Color.Black; this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None; this.PageInfo.BorderWidth = 1F; this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold); this.PageInfo.ForeColor = System.Drawing.Color.Black; this.PageInfo.Name = "PageInfo"; // // DataField // this.DataField.BackColor = System.Drawing.Color.Transparent; this.DataField.BorderColor = System.Drawing.Color.Black; this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None; this.DataField.BorderWidth = 1F; this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F); this.DataField.ForeColor = System.Drawing.Color.Black; this.DataField.Name = "DataField"; this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); // // topMarginBand1 // this.topMarginBand1.HeightF = 0F; this.topMarginBand1.Name = "topMarginBand1"; // // bottomMarginBand1 // this.bottomMarginBand1.HeightF = 0F; this.bottomMarginBand1.Name = "bottomMarginBand1"; // // ReportHeader // this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrLabel1}); this.ReportHeader.HeightF = 27.41666F; this.ReportHeader.Name = "ReportHeader"; // // xrLabel1 // this.xrLabel1.BorderColor = System.Drawing.Color.DarkGray; this.xrLabel1.BorderWidth = 14F; this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162))); this.xrLabel1.ForeColor = System.Drawing.Color.Black; this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); this.xrLabel1.Name = "xrLabel1"; this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel1.SizeF = new System.Drawing.SizeF(253.125F, 26.41666F); this.xrLabel1.StylePriority.UseBorderColor = false; this.xrLabel1.StylePriority.UseBorderWidth = false; this.xrLabel1.StylePriority.UseFont = false; this.xrLabel1.StylePriority.UseForeColor = false; this.xrLabel1.Text = "Öğrenci Sınıf Listesi"; // // PageHeader // this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable1}); this.PageHeader.HeightF = 33.37498F; this.PageHeader.Name = "PageHeader"; // // xrTable1 // this.xrTable1.BackColor = System.Drawing.Color.SlateGray; this.xrTable1.BorderColor = System.Drawing.Color.Gainsboro; this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162))); this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); this.xrTable1.Name = "xrTable1"; this.xrTable1.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F); this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow1}); this.xrTable1.SizeF = new System.Drawing.SizeF(737.5F, 32.29167F); this.xrTable1.StylePriority.UseBackColor = false; this.xrTable1.StylePriority.UseBorderColor = false; this.xrTable1.StylePriority.UseBorders = false; this.xrTable1.StylePriority.UseFont = false; this.xrTable1.StylePriority.UsePadding = false; // // xrTableRow1 // this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell1, this.xrTableCell2, this.xrTableCell3, this.xrTableCell4}); this.xrTableRow1.Name = "xrTableRow1"; this.xrTableRow1.Weight = 1D; // // xrTableCell1 // this.xrTableCell1.Name = "xrTableCell1"; this.xrTableCell1.Text = "Öğrenci Numarası"; this.xrTableCell1.Weight = 1D; // // xrTableCell2 // this.xrTableCell2.Name = "xrTableCell2"; this.xrTableCell2.Text = "Öğrenci Adi"; this.xrTableCell2.Weight = 1D; // // xrTableCell3 // this.xrTableCell3.Name = "xrTableCell3"; this.xrTableCell3.Text = "Öğrenci Soyadı"; this.xrTableCell3.Weight = 1D; // // xrTableCell4 // this.xrTableCell4.Name = "xrTableCell4"; this.xrTableCell4.Text = "Derslik"; this.xrTableCell4.Weight = 1D; // // sharedImageCollection1 // // // // this.sharedImageCollection1.ImageSource.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("sharedImageCollection1.ImageSource.ImageStream"))); this.sharedImageCollection1.ParentControl = null; // // cat_id // this.cat_id.Description = "categoryid"; this.cat_id.Name = "cat_id"; this.cat_id.Type = typeof(int); this.cat_id.ValueInfo = "1"; this.cat_id.Visible = false; // // dersid // this.dersid.Description = "dersid"; this.dersid.Name = "dersid"; this.dersid.Type = typeof(int); this.dersid.ValueInfo = "0"; this.dersid.Visible = false; // // formattingRule1 // this.formattingRule1.Name = "formattingRule1"; // // XtraReport1 // this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { this.Detail, this.topMarginBand1, this.bottomMarginBand1, this.ReportHeader, this.PageHeader}); this.ComponentStorage.Add(this.sqlDataSource1); this.DataMember = "CustomSqlQuery"; this.DataSource = this.sqlDataSource1; this.FilterString = "[Sinav_id] = ?dersid"; this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] { this.formattingRule1}); this.Margins = new System.Drawing.Printing.Margins(65, 0, 0, 0); this.PageHeight = 1169; this.PageWidth = 827; this.PaperKind = System.Drawing.Printing.PaperKind.A4; this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] { this.cat_id, this.dersid}); this.ReportPrintOptions.DetailCountOnEmptyDataSource = 12; this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] { this.Title, this.FieldCaption, this.PageInfo, this.DataField}); this.Version = "14.2"; ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1.ImageSource)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.sharedImageCollection1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); DevExpress.DataAccess.Sql.SelectQuery selectQuery1 = new DevExpress.DataAccess.Sql.SelectQuery(); DevExpress.DataAccess.Sql.Column column1 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression1 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Table table1 = new DevExpress.DataAccess.Sql.Table(); DevExpress.DataAccess.Sql.Column column2 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression2 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column3 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression3 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column4 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression4 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column5 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression5 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column6 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression6 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column7 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression7 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column8 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression8 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column9 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression9 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column10 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression10 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column11 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression11 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column12 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression12 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column13 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression13 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column14 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression14 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column15 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression15 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column16 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression16 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column17 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression17 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column18 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression18 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column19 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression19 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column20 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression20 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column21 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression21 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column22 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression22 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column23 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression23 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column24 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression24 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column25 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression25 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column26 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression26 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column27 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression27 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column28 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression28 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column29 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression29 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column30 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression30 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column31 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression31 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column32 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression32 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column33 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression33 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column34 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression34 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column35 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression35 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column36 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression36 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column37 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression37 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column38 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression38 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column39 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression39 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column40 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression40 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column41 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression41 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column42 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression42 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column43 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression43 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column44 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression44 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column45 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression45 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column46 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression46 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column47 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression47 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column48 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression48 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column49 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression49 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column50 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression50 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column51 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression51 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column52 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression52 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column53 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression53 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column54 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression54 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column55 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression55 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column56 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression56 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column57 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression57 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column58 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression58 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column59 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression59 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column60 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression60 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column61 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression61 = new DevExpress.DataAccess.Sql.ColumnExpression(); DevExpress.DataAccess.Sql.Column column62 = new DevExpress.DataAccess.Sql.Column(); DevExpress.DataAccess.Sql.ColumnExpression columnExpression62 = new DevExpress.DataAccess.Sql.ColumnExpression(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OneTwo)); this.Detail = new DevExpress.XtraReports.UI.DetailBand(); this.xrTable1 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell(); this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand(); this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand(); this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components); this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand(); ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); // // Detail // this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable1 }); this.Detail.HeightF = 25F; this.Detail.Name = "Detail"; this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrTable1 // this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(2.119276E-05F, 0F); this.xrTable1.Name = "xrTable1"; this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow1 }); this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 25F); // // xrTableRow1 // this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell1, this.xrTableCell2, this.xrTableCell3, this.xrTableCell4 }); this.xrTableRow1.Name = "xrTableRow1"; this.xrTableRow1.Weight = 11.5D; // // xrTableCell1 // this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "People.FirstName") }); this.xrTableCell1.Name = "xrTableCell1"; this.xrTableCell1.Text = "xrTableCell1"; this.xrTableCell1.Weight = 0.4D; // // xrTableCell2 // this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "People.Fathername") }); this.xrTableCell2.Name = "xrTableCell2"; this.xrTableCell2.Text = "xrTableCell2"; this.xrTableCell2.Weight = 0.4D; // // xrTableCell3 // this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "People.ExpiryDate") }); this.xrTableCell3.Name = "xrTableCell3"; this.xrTableCell3.Text = "xrTableCell3"; this.xrTableCell3.Weight = 0.4D; // // xrTableCell4 // this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "People.EmergencyTel") }); this.xrTableCell4.Name = "xrTableCell4"; this.xrTableCell4.Text = "xrTableCell4"; this.xrTableCell4.Weight = 0.4D; // // TopMargin // this.TopMargin.HeightF = 75F; this.TopMargin.Name = "TopMargin"; this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // BottomMargin // this.BottomMargin.HeightF = 0F; this.BottomMargin.Name = "BottomMargin"; this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // sqlDataSource1 // this.sqlDataSource1.ConnectionName = "HrContext"; this.sqlDataSource1.Name = "sqlDataSource1"; columnExpression1.ColumnName = "Id"; table1.Name = "People"; columnExpression1.Table = table1; column1.Expression = columnExpression1; columnExpression2.ColumnName = "Title"; columnExpression2.Table = table1; column2.Expression = columnExpression2; columnExpression3.ColumnName = "FirstName"; columnExpression3.Table = table1; column3.Expression = columnExpression3; columnExpression4.ColumnName = "Fathername"; columnExpression4.Table = table1; column4.Expression = columnExpression4; columnExpression5.ColumnName = "GFathername"; columnExpression5.Table = table1; column5.Expression = columnExpression5; columnExpression6.ColumnName = "Familyname"; columnExpression6.Table = table1; column6.Expression = columnExpression6; columnExpression7.ColumnName = "Gender"; columnExpression7.Table = table1; column7.Expression = columnExpression7; columnExpression8.ColumnName = "NationalId"; columnExpression8.Table = table1; column8.Expression = columnExpression8; columnExpression9.ColumnName = "Ssn"; columnExpression9.Table = table1; column9.Expression = columnExpression9; columnExpression10.ColumnName = "JoinDate"; columnExpression10.Table = table1; column10.Expression = columnExpression10; columnExpression11.ColumnName = "StartExpDate"; columnExpression11.Table = table1; column11.Expression = columnExpression11; columnExpression12.ColumnName = "QualificationId"; columnExpression12.Table = table1; column12.Expression = columnExpression12; columnExpression13.ColumnName = "BirthDate"; columnExpression13.Table = table1; column13.Expression = columnExpression13; columnExpression14.ColumnName = "BirthCountry"; columnExpression14.Table = table1; column14.Expression = columnExpression14; columnExpression15.ColumnName = "BirthCity"; columnExpression15.Table = table1; column15.Expression = columnExpression15; columnExpression16.ColumnName = "BirthDstrct"; columnExpression16.Table = table1; column16.Expression = columnExpression16; columnExpression17.ColumnName = "Nationality"; columnExpression17.Table = table1; column17.Expression = columnExpression17; columnExpression18.ColumnName = "MaritalStat"; columnExpression18.Table = table1; column18.Expression = columnExpression18; columnExpression19.ColumnName = "TaxFamlyCnt"; columnExpression19.Table = table1; column19.Expression = columnExpression19; columnExpression20.ColumnName = "BnftFamlyCnt"; columnExpression20.Table = table1; column20.Expression = columnExpression20; columnExpression21.ColumnName = "Religion"; columnExpression21.Table = table1; column21.Expression = columnExpression21; columnExpression22.ColumnName = "AddressId"; columnExpression22.Table = table1; column22.Expression = columnExpression22; columnExpression23.ColumnName = "HoAddressId"; columnExpression23.Table = table1; column23.Expression = columnExpression23; columnExpression24.ColumnName = "Mobile"; columnExpression24.Table = table1; column24.Expression = columnExpression24; columnExpression25.ColumnName = "HomeTel"; columnExpression25.Table = table1; column25.Expression = columnExpression25; columnExpression26.ColumnName = "EmergencyTel"; columnExpression26.Table = table1; column26.Expression = columnExpression26; columnExpression27.ColumnName = "WorkEmail"; columnExpression27.Table = table1; column27.Expression = columnExpression27; columnExpression28.ColumnName = "OtherEmail"; columnExpression28.Table = table1; column28.Expression = columnExpression28; columnExpression29.ColumnName = "MilitaryStat"; columnExpression29.Table = table1; column29.Expression = columnExpression29; columnExpression30.ColumnName = "MilStatDate"; columnExpression30.Table = table1; column30.Expression = columnExpression30; columnExpression31.ColumnName = "MilitaryNo"; columnExpression31.Table = table1; column31.Expression = columnExpression31; columnExpression32.ColumnName = "PassportNo"; columnExpression32.Table = table1; column32.Expression = columnExpression32; columnExpression33.ColumnName = "IssueDate"; columnExpression33.Table = table1; column33.Expression = columnExpression33; columnExpression34.ColumnName = "ExpiryDate"; columnExpression34.Table = table1; column34.Expression = columnExpression34; columnExpression35.ColumnName = "IssuePlace"; columnExpression35.Table = table1; column35.Expression = columnExpression35; columnExpression36.ColumnName = "Profession"; columnExpression36.Table = table1; column36.Expression = columnExpression36; columnExpression37.ColumnName = "KafeelId"; columnExpression37.Table = table1; column37.Expression = columnExpression37; columnExpression38.ColumnName = "MedicalStat"; columnExpression38.Table = table1; column38.Expression = columnExpression38; columnExpression39.ColumnName = "MedStatDate"; columnExpression39.Table = table1; column39.Expression = columnExpression39; columnExpression40.ColumnName = "InspectDate"; columnExpression40.Table = table1; column40.Expression = columnExpression40; columnExpression41.ColumnName = "ProviderId"; columnExpression41.Table = table1; column41.Expression = columnExpression41; columnExpression42.ColumnName = "BloodClass"; columnExpression42.Table = table1; column42.Expression = columnExpression42; columnExpression43.ColumnName = "Recommend"; columnExpression43.Table = table1; column43.Expression = columnExpression43; columnExpression44.ColumnName = "RecommenReson"; columnExpression44.Table = table1; column44.Expression = columnExpression44; columnExpression45.ColumnName = "LocationId"; columnExpression45.Table = table1; column45.Expression = columnExpression45; columnExpression46.ColumnName = "RoomNo"; columnExpression46.Table = table1; column46.Expression = columnExpression46; columnExpression47.ColumnName = "CreatedUser"; columnExpression47.Table = table1; column47.Expression = columnExpression47; columnExpression48.ColumnName = "ModifiedUser"; columnExpression48.Table = table1; column48.Expression = columnExpression48; columnExpression49.ColumnName = "CreatedTime"; columnExpression49.Table = table1; column49.Expression = columnExpression49; columnExpression50.ColumnName = "ModifiedTime"; columnExpression50.Table = table1; column50.Expression = columnExpression50; columnExpression51.ColumnName = "ImageUrl"; columnExpression51.Table = table1; column51.Expression = columnExpression51; columnExpression52.ColumnName = "HasImage"; columnExpression52.Table = table1; column52.Expression = columnExpression52; columnExpression53.ColumnName = "IdIssueDate"; columnExpression53.Table = table1; column53.Expression = columnExpression53; columnExpression54.ColumnName = "VisaNo"; columnExpression54.Table = table1; column54.Expression = columnExpression54; columnExpression55.ColumnName = "MilResDate"; columnExpression55.Table = table1; column55.Expression = columnExpression55; columnExpression56.ColumnName = "Rank"; columnExpression56.Table = table1; column56.Expression = columnExpression56; columnExpression57.ColumnName = "MilCertGrade"; columnExpression57.Table = table1; column57.Expression = columnExpression57; columnExpression58.ColumnName = "WorkTel"; columnExpression58.Table = table1; column58.Expression = columnExpression58; columnExpression59.ColumnName = "SubscripDate"; columnExpression59.Table = table1; column59.Expression = columnExpression59; columnExpression60.ColumnName = "BasicSubAmt"; columnExpression60.Table = table1; column60.Expression = columnExpression60; columnExpression61.ColumnName = "VarSubAmt"; columnExpression61.Table = table1; column61.Expression = columnExpression61; columnExpression62.ColumnName = "TreatCardNo"; columnExpression62.Table = table1; column62.Expression = columnExpression62; selectQuery1.Columns.Add(column1); selectQuery1.Columns.Add(column2); selectQuery1.Columns.Add(column3); selectQuery1.Columns.Add(column4); selectQuery1.Columns.Add(column5); selectQuery1.Columns.Add(column6); selectQuery1.Columns.Add(column7); selectQuery1.Columns.Add(column8); selectQuery1.Columns.Add(column9); selectQuery1.Columns.Add(column10); selectQuery1.Columns.Add(column11); selectQuery1.Columns.Add(column12); selectQuery1.Columns.Add(column13); selectQuery1.Columns.Add(column14); selectQuery1.Columns.Add(column15); selectQuery1.Columns.Add(column16); selectQuery1.Columns.Add(column17); selectQuery1.Columns.Add(column18); selectQuery1.Columns.Add(column19); selectQuery1.Columns.Add(column20); selectQuery1.Columns.Add(column21); selectQuery1.Columns.Add(column22); selectQuery1.Columns.Add(column23); selectQuery1.Columns.Add(column24); selectQuery1.Columns.Add(column25); selectQuery1.Columns.Add(column26); selectQuery1.Columns.Add(column27); selectQuery1.Columns.Add(column28); selectQuery1.Columns.Add(column29); selectQuery1.Columns.Add(column30); selectQuery1.Columns.Add(column31); selectQuery1.Columns.Add(column32); selectQuery1.Columns.Add(column33); selectQuery1.Columns.Add(column34); selectQuery1.Columns.Add(column35); selectQuery1.Columns.Add(column36); selectQuery1.Columns.Add(column37); selectQuery1.Columns.Add(column38); selectQuery1.Columns.Add(column39); selectQuery1.Columns.Add(column40); selectQuery1.Columns.Add(column41); selectQuery1.Columns.Add(column42); selectQuery1.Columns.Add(column43); selectQuery1.Columns.Add(column44); selectQuery1.Columns.Add(column45); selectQuery1.Columns.Add(column46); selectQuery1.Columns.Add(column47); selectQuery1.Columns.Add(column48); selectQuery1.Columns.Add(column49); selectQuery1.Columns.Add(column50); selectQuery1.Columns.Add(column51); selectQuery1.Columns.Add(column52); selectQuery1.Columns.Add(column53); selectQuery1.Columns.Add(column54); selectQuery1.Columns.Add(column55); selectQuery1.Columns.Add(column56); selectQuery1.Columns.Add(column57); selectQuery1.Columns.Add(column58); selectQuery1.Columns.Add(column59); selectQuery1.Columns.Add(column60); selectQuery1.Columns.Add(column61); selectQuery1.Columns.Add(column62); selectQuery1.MetaSerializable = "<Meta X=\"20\" Y=\"20\" Width=\"100\" Height=\"1607\" />"; selectQuery1.Name = "People"; selectQuery1.Tables.Add(table1); this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] { selectQuery1 }); this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable"); // // PageHeader // this.PageHeader.HeightF = 25F; this.PageHeader.Name = "PageHeader"; // // OneTwo // this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { this.PageHeader }); this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] { this.sqlDataSource1 }); this.DataMember = "People"; this.DataSource = this.sqlDataSource1; this.Version = "17.1"; this.Controls.SetChildIndex(this.PageHeader, 0); ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { string resourceFileName = "rptBanHang.resx"; DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary(); DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary(); DevExpress.XtraReports.UI.XRSummary xrSummary3 = new DevExpress.XtraReports.UI.XRSummary(); DevExpress.XtraPrinting.BarCode.QRCodeGenerator qrCodeGenerator1 = new DevExpress.XtraPrinting.BarCode.QRCodeGenerator(); this.Detail = new DevExpress.XtraReports.UI.DetailBand(); this.xrTable2 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell(); this.colHangHoa = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell(); this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand(); this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand(); this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand(); this.xrTable4 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell(); this.header = new DevExpress.XtraReports.UI.XRSubreport(); this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel(); this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand(); this.xrTable7 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow8 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTable1 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell(); this.formattingRule1 = new DevExpress.XtraReports.UI.FormattingRule(); this.dsBaoCaoBanHang1 = new dsBaoCaoBanHang(); this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand(); this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel(); this.xrTable3 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrSum = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableRow7 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell(); this.sdfsdfsdf = new DevExpress.XtraReports.UI.XRTableCell(); this.xrDiscount01 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableRow11 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell48 = new DevExpress.XtraReports.UI.XRTableCell(); this.thanhtienafterdis01 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTable6 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell(); this.lbchu = new DevExpress.XtraReports.UI.XRLabel(); this.xrLine1 = new DevExpress.XtraReports.UI.XRLine(); this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox(); this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); this.xrBarCode1 = new DevExpress.XtraReports.UI.XRBarCode(); this.pTongTien = new DevExpress.XtraReports.UI.CalculatedField(); this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand(); this.sale_InvoiceToPrintTableAdapter1 = new dsBaoCaoBanHangTableAdapters.sale_InvoiceToPrintTableAdapter(); this.Thanhtien = new DevExpress.XtraReports.UI.CalculatedField(); this.percentDiscount1 = new DevExpress.XtraReports.UI.CalculatedField(); this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand(); this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel(); this.xrPictureBox4 = new DevExpress.XtraReports.UI.XRPictureBox(); this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel(); this.xrPictureBox5 = new DevExpress.XtraReports.UI.XRPictureBox(); this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell(); ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dsBaoCaoBanHang1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); // // Detail // this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable2}); this.Detail.Font = new System.Drawing.Font("Times New Roman", 9F); this.Detail.HeightF = 30F; this.Detail.Name = "Detail"; this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.Detail.StylePriority.UseFont = false; this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrTable2 // this.xrTable2.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid; this.xrTable2.Borders = DevExpress.XtraPrinting.BorderSide.Bottom; this.xrTable2.BorderWidth = 1F; this.xrTable2.Font = new System.Drawing.Font("MS Reference Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); this.xrTable2.Name = "xrTable2"; this.xrTable2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 5, 5, 100F); this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow2}); this.xrTable2.SizeF = new System.Drawing.SizeF(748.96F, 30F); this.xrTable2.StylePriority.UseBorderDashStyle = false; this.xrTable2.StylePriority.UseBorders = false; this.xrTable2.StylePriority.UseBorderWidth = false; this.xrTable2.StylePriority.UseFont = false; this.xrTable2.StylePriority.UsePadding = false; this.xrTable2.StylePriority.UseTextAlignment = false; this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrTableRow2 // this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell7, this.colHangHoa, this.xrTableCell11, this.xrTableCell30, this.xrTableCell31}); this.xrTableRow2.Name = "xrTableRow2"; this.xrTableRow2.Weight = 1D; // // xrTableCell7 // this.xrTableCell7.Borders = DevExpress.XtraPrinting.BorderSide.Bottom; this.xrTableCell7.Name = "xrTableCell7"; this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F); this.xrTableCell7.StylePriority.UseBorders = false; this.xrTableCell7.StylePriority.UsePadding = false; this.xrTableCell7.StylePriority.UseTextAlignment = false; this.xrTableCell7.Text = "STT"; this.xrTableCell7.Weight = 0.36458328247070315D; this.xrTableCell7.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell7_BeforePrint); // // colHangHoa // this.colHangHoa.Borders = DevExpress.XtraPrinting.BorderSide.Bottom; this.colHangHoa.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.productname")}); this.colHangHoa.Name = "colHangHoa"; this.colHangHoa.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F); this.colHangHoa.StylePriority.UseBorders = false; this.colHangHoa.StylePriority.UsePadding = false; this.colHangHoa.StylePriority.UseTextAlignment = false; this.colHangHoa.Text = "colHangHoa"; this.colHangHoa.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; this.colHangHoa.Weight = 4.052847185033353D; // // xrTableCell11 // this.xrTableCell11.Borders = DevExpress.XtraPrinting.BorderSide.Bottom; this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.CurrentPrice", "{0:n0}")}); this.xrTableCell11.Name = "xrTableCell11"; this.xrTableCell11.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F); this.xrTableCell11.StylePriority.UseBorders = false; this.xrTableCell11.StylePriority.UsePadding = false; this.xrTableCell11.StylePriority.UseTextAlignment = false; xrSummary1.FormatString = "{0:0.00 VND}"; this.xrTableCell11.Summary = xrSummary1; this.xrTableCell11.Text = "xrTableCell11"; this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrTableCell11.Weight = 0.99829627768477114D; // // xrTableCell30 // this.xrTableCell30.Borders = DevExpress.XtraPrinting.BorderSide.Bottom; this.xrTableCell30.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Quantity", "{0:n0}")}); this.xrTableCell30.Name = "xrTableCell30"; this.xrTableCell30.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F); this.xrTableCell30.StylePriority.UseBorders = false; this.xrTableCell30.StylePriority.UsePadding = false; this.xrTableCell30.StylePriority.UseTextAlignment = false; this.xrTableCell30.Text = "xrTableCell30"; this.xrTableCell30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrTableCell30.Weight = 0.782191345631486D; // // xrTableCell31 // this.xrTableCell31.Borders = DevExpress.XtraPrinting.BorderSide.Bottom; this.xrTableCell31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Total", "{0:n0}")}); this.xrTableCell31.Name = "xrTableCell31"; this.xrTableCell31.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F); this.xrTableCell31.StylePriority.UseBorders = false; this.xrTableCell31.StylePriority.UsePadding = false; this.xrTableCell31.StylePriority.UseTextAlignment = false; this.xrTableCell31.Text = "xrTableCell31"; this.xrTableCell31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrTableCell31.Weight = 0.97617918250893376D; // // TopMargin // this.TopMargin.HeightF = 0F; this.TopMargin.Name = "TopMargin"; this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // BottomMargin // this.BottomMargin.HeightF = 14F; this.BottomMargin.Name = "BottomMargin"; this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // PageHeader // this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable4}); this.PageHeader.HeightF = 25F; this.PageHeader.Name = "PageHeader"; this.PageHeader.PrintOn = DevExpress.XtraReports.UI.PrintOnPages.NotWithReportHeader; // // xrTable4 // this.xrTable4.BackColor = System.Drawing.Color.Snow; this.xrTable4.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTable4.BorderWidth = 1F; this.xrTable4.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); this.xrTable4.Name = "xrTable4"; this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow4}); this.xrTable4.SizeF = new System.Drawing.SizeF(748.96F, 25F); this.xrTable4.StylePriority.UseBackColor = false; this.xrTable4.StylePriority.UseBorders = false; this.xrTable4.StylePriority.UseBorderWidth = false; this.xrTable4.StylePriority.UseFont = false; this.xrTable4.StylePriority.UseTextAlignment = false; this.xrTable4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrTableRow4 // this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell3, this.xrTableCell13, this.xrTableCell14, this.xrTableCell16, this.xrTableCell19}); this.xrTableRow4.Name = "xrTableRow4"; this.xrTableRow4.Weight = 1D; // // xrTableCell3 // this.xrTableCell3.Borders = DevExpress.XtraPrinting.BorderSide.Bottom; this.xrTableCell3.Name = "xrTableCell3"; this.xrTableCell3.StylePriority.UseBorders = false; this.xrTableCell3.StylePriority.UseTextAlignment = false; this.xrTableCell3.Text = "STT"; this.xrTableCell3.Weight = 0.36560020791428305D; // // xrTableCell13 // this.xrTableCell13.Borders = DevExpress.XtraPrinting.BorderSide.Bottom; this.xrTableCell13.Name = "xrTableCell13"; this.xrTableCell13.StylePriority.UseBorders = false; this.xrTableCell13.Text = "Tên Hàng Hoá"; this.xrTableCell13.Weight = 4.0641524463652621D; // // xrTableCell14 // this.xrTableCell14.Borders = DevExpress.XtraPrinting.BorderSide.Bottom; this.xrTableCell14.Name = "xrTableCell14"; this.xrTableCell14.StylePriority.UseBorders = false; this.xrTableCell14.Text = "Đơn giá"; this.xrTableCell14.Weight = 1.0010809425008556D; // // xrTableCell16 // this.xrTableCell16.Borders = DevExpress.XtraPrinting.BorderSide.Bottom; this.xrTableCell16.Multiline = true; this.xrTableCell16.Name = "xrTableCell16"; this.xrTableCell16.StylePriority.UseBorders = false; this.xrTableCell16.StylePriority.UseTextAlignment = false; this.xrTableCell16.Text = "Số lượng\r\n"; this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell16.Weight = 0.78437319053638133D; // // xrTableCell19 // this.xrTableCell19.Borders = DevExpress.XtraPrinting.BorderSide.Bottom; this.xrTableCell19.Name = "xrTableCell19"; this.xrTableCell19.StylePriority.UseBorders = false; this.xrTableCell19.Text = "Thành tiền"; this.xrTableCell19.Weight = 0.97890222513473879D; // // header // this.header.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); this.header.Name = "header"; this.header.SizeF = new System.Drawing.SizeF(750F, 29.625F); // // xrLabel10 // this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.InvoiceNo", "Mã đơn : {0}")}); this.xrLabel10.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Italic); this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(1.04173F, 75.54163F); this.xrLabel10.Name = "xrLabel10"; this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel10.SizeF = new System.Drawing.SizeF(738.9999F, 26.41667F); this.xrLabel10.StylePriority.UseFont = false; this.xrLabel10.StylePriority.UseTextAlignment = false; this.xrLabel10.Text = "xrLabel10"; this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrLabel13 // this.xrLabel13.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold); this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(1.04173F, 32.74995F); this.xrLabel13.Name = "xrLabel13"; this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel13.SizeF = new System.Drawing.SizeF(748.9583F, 42.79168F); this.xrLabel13.StylePriority.UseFont = false; this.xrLabel13.StylePriority.UseTextAlignment = false; this.xrLabel13.Text = "HOÁ ĐƠN BÁN HÀNG"; this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrLabel17 // this.xrLabel17.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(1.04173F, 173.75F); this.xrLabel17.Name = "xrLabel17"; this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel17.SizeF = new System.Drawing.SizeF(69.79163F, 16F); this.xrLabel17.StylePriority.UseFont = false; this.xrLabel17.Text = "Ghi chú: "; // // GroupHeader2 // this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] { new DevExpress.XtraReports.UI.GroupField("TenKhachHang", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)}); this.GroupHeader2.HeightF = 0F; this.GroupHeader2.Name = "GroupHeader2"; // // xrTable7 // this.xrTable7.Font = new System.Drawing.Font("Verdana", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrTable7.LocationFloat = new DevExpress.Utils.PointFloat(7.249959F, 101.9583F); this.xrTable7.Name = "xrTable7"; this.xrTable7.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 4, 4, 100F); this.xrTable7.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow8, this.xrTableRow9}); this.xrTable7.SizeF = new System.Drawing.SizeF(741.7084F, 54.75F); this.xrTable7.StylePriority.UseFont = false; this.xrTable7.StylePriority.UsePadding = false; this.xrTable7.StylePriority.UseTextAlignment = false; this.xrTable7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; // // xrTableRow8 // this.xrTableRow8.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell6, this.xrTableCell23, this.xrTableCell20, this.xrTableCell18, this.xrTableCell25, this.xrTableCell24}); this.xrTableRow8.Name = "xrTableRow8"; this.xrTableRow8.Weight = 1D; // // xrTableCell6 // this.xrTableCell6.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold); this.xrTableCell6.Name = "xrTableCell6"; this.xrTableCell6.StylePriority.UseFont = false; this.xrTableCell6.StylePriority.UseTextAlignment = false; this.xrTableCell6.Text = "Khách hàng: "; this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; this.xrTableCell6.Weight = 1.0520836686849815D; // // xrTableCell23 // this.xrTableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Customer")}); this.xrTableCell23.Font = new System.Drawing.Font("Verdana", 10F); this.xrTableCell23.Name = "xrTableCell23"; this.xrTableCell23.StylePriority.UseFont = false; this.xrTableCell23.Text = "xrTableCell23"; this.xrTableCell23.Weight = 2.5880258821406894D; // // xrTableCell20 // this.xrTableCell20.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold); this.xrTableCell20.Name = "xrTableCell20"; this.xrTableCell20.StylePriority.UseFont = false; this.xrTableCell20.Text = "Ngày :"; this.xrTableCell20.Weight = 0.5894757719221223D; // // xrTableCell18 // this.xrTableCell18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.CurrentDate", "{0:dd/MM/yyyy}")}); this.xrTableCell18.Font = new System.Drawing.Font("Verdana", 10F); this.xrTableCell18.Name = "xrTableCell18"; this.xrTableCell18.StylePriority.UseFont = false; this.xrTableCell18.Weight = 1.0417734816221154D; // // xrTableCell25 // this.xrTableCell25.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold); this.xrTableCell25.Name = "xrTableCell25"; this.xrTableCell25.StylePriority.UseFont = false; this.xrTableCell25.StylePriority.UseTextAlignment = false; this.xrTableCell25.Text = "Điện thoại:"; this.xrTableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; this.xrTableCell25.Weight = 0.90503245148400147D; // // xrTableCell24 // this.xrTableCell24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Phone")}); this.xrTableCell24.Font = new System.Drawing.Font("Verdana", 10F); this.xrTableCell24.Name = "xrTableCell24"; this.xrTableCell24.StylePriority.UseFont = false; this.xrTableCell24.Text = "xrTableCell24"; this.xrTableCell24.Weight = 1.2406931607105067D; // // xrTableRow9 // this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell26, this.xrTableCell27}); this.xrTableRow9.Name = "xrTableRow9"; this.xrTableRow9.Weight = 1D; // // xrTableCell26 // this.xrTableCell26.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold); this.xrTableCell26.Name = "xrTableCell26"; this.xrTableCell26.StylePriority.UseFont = false; this.xrTableCell26.Text = "Địa chỉ : "; this.xrTableCell26.Weight = 0.73958367866282337D; // // xrTableCell27 // this.xrTableCell27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.CustomerAddress")}); this.xrTableCell27.Font = new System.Drawing.Font("Verdana", 10F); this.xrTableCell27.Multiline = true; this.xrTableCell27.Name = "xrTableCell27"; this.xrTableCell27.StylePriority.UseFont = false; this.xrTableCell27.Weight = 6.6775007379015943D; // // xrTable1 // this.xrTable1.BackColor = System.Drawing.Color.Snow; this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTable1.BorderWidth = 1F; this.xrTable1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 183.4722F); this.xrTable1.Name = "xrTable1"; this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow1}); this.xrTable1.SizeF = new System.Drawing.SizeF(748.9583F, 25F); this.xrTable1.StylePriority.UseBackColor = false; this.xrTable1.StylePriority.UseBorders = false; this.xrTable1.StylePriority.UseBorderWidth = false; this.xrTable1.StylePriority.UseFont = false; this.xrTable1.StylePriority.UseTextAlignment = false; this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrTableRow1 // this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell1, this.xrTableCell2, this.xrTableCell4, this.xrTableCell21, this.xrTableCell5}); this.xrTableRow1.Name = "xrTableRow1"; this.xrTableRow1.Weight = 1D; // // xrTableCell1 // this.xrTableCell1.Borders = DevExpress.XtraPrinting.BorderSide.Bottom; this.xrTableCell1.Name = "xrTableCell1"; this.xrTableCell1.StylePriority.UseBorders = false; this.xrTableCell1.StylePriority.UseTextAlignment = false; this.xrTableCell1.Text = "STT"; this.xrTableCell1.Weight = 0.36560020791428305D; // // xrTableCell2 // this.xrTableCell2.Borders = DevExpress.XtraPrinting.BorderSide.Bottom; this.xrTableCell2.Name = "xrTableCell2"; this.xrTableCell2.StylePriority.UseBorders = false; this.xrTableCell2.Text = "Tên Hàng Hoá"; this.xrTableCell2.Weight = 4.0641554790407382D; // // xrTableCell4 // this.xrTableCell4.Borders = DevExpress.XtraPrinting.BorderSide.Bottom; this.xrTableCell4.Name = "xrTableCell4"; this.xrTableCell4.StylePriority.UseBorders = false; this.xrTableCell4.Text = "Đơn giá"; this.xrTableCell4.Weight = 1.0011300565736081D; // // xrTableCell21 // this.xrTableCell21.Borders = DevExpress.XtraPrinting.BorderSide.Bottom; this.xrTableCell21.Multiline = true; this.xrTableCell21.Name = "xrTableCell21"; this.xrTableCell21.StylePriority.UseBorders = false; this.xrTableCell21.StylePriority.UseTextAlignment = false; this.xrTableCell21.Text = "Số lượng\r\n"; this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell21.Weight = 0.78432104378815293D; // // xrTableCell5 // this.xrTableCell5.Borders = DevExpress.XtraPrinting.BorderSide.Bottom; this.xrTableCell5.Name = "xrTableCell5"; this.xrTableCell5.StylePriority.UseBorders = false; this.xrTableCell5.Text = "Thành tiền"; this.xrTableCell5.Weight = 0.97895618222477876D; // // formattingRule1 // this.formattingRule1.DataMember = null; // // // this.formattingRule1.Formatting.BackColor = System.Drawing.Color.Gray; this.formattingRule1.Formatting.Padding = new DevExpress.XtraPrinting.PaddingInfo(50, 50, 50, 50, 100F); this.formattingRule1.Name = "formattingRule1"; // // dsBaoCaoBanHang1 // this.dsBaoCaoBanHang1.DataSetName = "dsBaoCaoBanHang"; this.dsBaoCaoBanHang1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; // // GroupFooter1 // this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrLabel4, this.xrTable3, this.xrTable6, this.xrLabel17}); this.GroupFooter1.HeightF = 192.4583F; this.GroupFooter1.Name = "GroupFooter1"; // // xrLabel4 // this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Notes")}); this.xrLabel4.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Italic); this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(70.83334F, 173.75F); this.xrLabel4.Name = "xrLabel4"; this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel4.SizeF = new System.Drawing.SizeF(329.0094F, 16F); this.xrLabel4.StylePriority.UseFont = false; // // xrTable3 // this.xrTable3.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid; this.xrTable3.Borders = DevExpress.XtraPrinting.BorderSide.Bottom; this.xrTable3.BorderWidth = 1F; this.xrTable3.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); this.xrTable3.Name = "xrTable3"; this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow3, this.xrTableRow5, this.xrTableRow7, this.xrTableRow10, this.xrTableRow11}); this.xrTable3.SizeF = new System.Drawing.SizeF(749F, 124.1666F); this.xrTable3.StylePriority.UseBorderDashStyle = false; this.xrTable3.StylePriority.UseBorders = false; this.xrTable3.StylePriority.UseBorderWidth = false; this.xrTable3.StylePriority.UseFont = false; this.xrTable3.StylePriority.UseTextAlignment = false; this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrTableRow3 // this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell12, this.xrTableCell10, this.xrSum}); this.xrTableRow3.Name = "xrTableRow3"; this.xrTableRow3.Weight = 1D; // // xrTableCell12 // this.xrTableCell12.Borders = DevExpress.XtraPrinting.BorderSide.None; this.xrTableCell12.Name = "xrTableCell12"; this.xrTableCell12.StylePriority.UseBorders = false; this.xrTableCell12.Weight = 4.6116583633422845D; // // xrTableCell10 // this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTableCell10.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)))); this.xrTableCell10.Name = "xrTableCell10"; this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F); this.xrTableCell10.StylePriority.UseBorders = false; this.xrTableCell10.StylePriority.UseFont = false; this.xrTableCell10.StylePriority.UsePadding = false; this.xrTableCell10.StylePriority.UseTextAlignment = false; this.xrTableCell10.Text = "Tổng cộng"; this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrTableCell10.Weight = 1.4052649307250975D; // // xrSum // this.xrSum.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrSum.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.FinalTotal", "{0:n0}")}); this.xrSum.Font = new System.Drawing.Font("Verdana", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)))); this.xrSum.Name = "xrSum"; this.xrSum.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 8, 0, 0, 100F); this.xrSum.StylePriority.UseBorders = false; this.xrSum.StylePriority.UseFont = false; this.xrSum.StylePriority.UsePadding = false; this.xrSum.StylePriority.UseTextAlignment = false; xrSummary2.FormatString = "{0:n0}"; this.xrSum.Summary = xrSummary2; this.xrSum.Text = "xrSum"; this.xrSum.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrSum.Weight = 1.4730767059326171D; // // xrTableRow5 // this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell22, this.xrTableCell28, this.xrTableCell29}); this.xrTableRow5.Name = "xrTableRow5"; this.xrTableRow5.Weight = 1D; // // xrTableCell22 // this.xrTableCell22.Borders = DevExpress.XtraPrinting.BorderSide.None; this.xrTableCell22.Name = "xrTableCell22"; this.xrTableCell22.StylePriority.UseBorders = false; this.xrTableCell22.Weight = 4.6116583633422845D; // // xrTableCell28 // this.xrTableCell28.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTableCell28.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)))); this.xrTableCell28.Name = "xrTableCell28"; this.xrTableCell28.StylePriority.UseBorders = false; this.xrTableCell28.StylePriority.UseFont = false; this.xrTableCell28.StylePriority.UseTextAlignment = false; this.xrTableCell28.Text = "Chiết khấu 1"; this.xrTableCell28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrTableCell28.Weight = 1.4052649307250975D; // // xrTableCell29 // this.xrTableCell29.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTableCell29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Discount", "{0:n0}")}); this.xrTableCell29.Font = new System.Drawing.Font("Verdana", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)))); this.xrTableCell29.Name = "xrTableCell29"; this.xrTableCell29.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 8, 0, 0, 100F); this.xrTableCell29.StylePriority.UseBorders = false; this.xrTableCell29.StylePriority.UseFont = false; this.xrTableCell29.StylePriority.UsePadding = false; this.xrTableCell29.StylePriority.UseTextAlignment = false; this.xrTableCell29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrTableCell29.Weight = 1.4730767059326171D; // // xrTableRow7 // this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell32, this.xrTableCell33, this.xrTableCell34}); this.xrTableRow7.Name = "xrTableRow7"; this.xrTableRow7.Weight = 1D; // // xrTableCell32 // this.xrTableCell32.Borders = DevExpress.XtraPrinting.BorderSide.None; this.xrTableCell32.Name = "xrTableCell32"; this.xrTableCell32.StylePriority.UseBorders = false; this.xrTableCell32.Weight = 4.6116583633422845D; // // xrTableCell33 // this.xrTableCell33.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTableCell33.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)))); this.xrTableCell33.Name = "xrTableCell33"; this.xrTableCell33.StylePriority.UseBorders = false; this.xrTableCell33.StylePriority.UseFont = false; this.xrTableCell33.StylePriority.UseTextAlignment = false; this.xrTableCell33.Text = "Chiết khấu 2"; this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrTableCell33.Weight = 1.4052649307250975D; // // xrTableRow10 // this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell15, this.sdfsdfsdf, this.xrDiscount01}); this.xrTableRow10.Name = "xrTableRow10"; this.xrTableRow10.Weight = 1D; // // xrTableCell15 // this.xrTableCell15.Borders = DevExpress.XtraPrinting.BorderSide.None; this.xrTableCell15.Name = "xrTableCell15"; this.xrTableCell15.StylePriority.UseBorders = false; this.xrTableCell15.Weight = 4.6116586875915528D; // // sdfsdfsdf // this.sdfsdfsdf.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); this.sdfsdfsdf.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)))); this.sdfsdfsdf.Multiline = true; this.sdfsdfsdf.Name = "sdfsdfsdf"; this.sdfsdfsdf.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F); this.sdfsdfsdf.StylePriority.UseBorders = false; this.sdfsdfsdf.StylePriority.UseFont = false; this.sdfsdfsdf.StylePriority.UsePadding = false; this.sdfsdfsdf.StylePriority.UseTextAlignment = false; this.sdfsdfsdf.Text = "Phí giao hàng\r\n"; this.sdfsdfsdf.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.sdfsdfsdf.Weight = 1.4052652549743652D; // // xrDiscount01 // this.xrDiscount01.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrDiscount01.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.ShipFees", "{0:n0}")}); this.xrDiscount01.Font = new System.Drawing.Font("Verdana", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)))); this.xrDiscount01.Name = "xrDiscount01"; this.xrDiscount01.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 8, 0, 0, 100F); this.xrDiscount01.StylePriority.UseBorders = false; this.xrDiscount01.StylePriority.UseFont = false; this.xrDiscount01.StylePriority.UsePadding = false; this.xrDiscount01.StylePriority.UseTextAlignment = false; this.xrDiscount01.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrDiscount01.Weight = 1.473076057434082D; // // xrTableRow11 // this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell17, this.xrTableCell48, this.thanhtienafterdis01}); this.xrTableRow11.Name = "xrTableRow11"; this.xrTableRow11.Weight = 1D; // // xrTableCell17 // this.xrTableCell17.Borders = DevExpress.XtraPrinting.BorderSide.None; this.xrTableCell17.Name = "xrTableCell17"; this.xrTableCell17.StylePriority.UseBorders = false; this.xrTableCell17.Weight = 4.6116583824157713D; // // xrTableCell48 // this.xrTableCell48.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTableCell48.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)))); this.xrTableCell48.Name = "xrTableCell48"; this.xrTableCell48.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F); this.xrTableCell48.StylePriority.UseBorders = false; this.xrTableCell48.StylePriority.UseFont = false; this.xrTableCell48.StylePriority.UsePadding = false; this.xrTableCell48.StylePriority.UseTextAlignment = false; this.xrTableCell48.Text = "Thành tiền"; this.xrTableCell48.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrTableCell48.Weight = 1.4052649497985839D; // // thanhtienafterdis01 // this.thanhtienafterdis01.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); this.thanhtienafterdis01.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Payment", "{0:n0}")}); this.thanhtienafterdis01.Font = new System.Drawing.Font("Verdana", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)))); this.thanhtienafterdis01.Name = "thanhtienafterdis01"; this.thanhtienafterdis01.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 8, 0, 0, 100F); this.thanhtienafterdis01.StylePriority.UseBorders = false; this.thanhtienafterdis01.StylePriority.UseFont = false; this.thanhtienafterdis01.StylePriority.UsePadding = false; this.thanhtienafterdis01.StylePriority.UseTextAlignment = false; this.thanhtienafterdis01.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.thanhtienafterdis01.Weight = 1.4730766677856444D; this.thanhtienafterdis01.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.thanhtienafterdis01_BeforePrint); // // xrTable6 // this.xrTable6.Borders = DevExpress.XtraPrinting.BorderSide.None; this.xrTable6.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrTable6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 137.6666F); this.xrTable6.Name = "xrTable6"; this.xrTable6.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow6}); this.xrTable6.SizeF = new System.Drawing.SizeF(750F, 20F); this.xrTable6.StylePriority.UseBorders = false; this.xrTable6.StylePriority.UseFont = false; this.xrTable6.StylePriority.UseTextAlignment = false; this.xrTable6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrTableRow6 // this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell8, this.xrTableCell9}); this.xrTableRow6.Name = "xrTableRow6"; this.xrTableRow6.Weight = 1D; // // xrTableCell8 // this.xrTableCell8.Font = new System.Drawing.Font("Arial", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)))); this.xrTableCell8.Name = "xrTableCell8"; this.xrTableCell8.StylePriority.UseFont = false; this.xrTableCell8.StylePriority.UseTextAlignment = false; this.xrTableCell8.Text = "Tổng tiền (bằng chữ):"; this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; this.xrTableCell8.Weight = 1.4999997049967446D; // // xrTableCell9 // this.xrTableCell9.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.lbchu}); this.xrTableCell9.Font = new System.Drawing.Font("Times New Roman", 9F); this.xrTableCell9.Name = "xrTableCell9"; this.xrTableCell9.StylePriority.UseFont = false; this.xrTableCell9.StylePriority.UseTextAlignment = false; xrSummary3.FormatString = "{0:0.00 VND}"; this.xrTableCell9.Summary = xrSummary3; this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; this.xrTableCell9.Weight = 5.0000002950032547D; // // lbchu // this.lbchu.Font = new System.Drawing.Font("Arial", 12F); this.lbchu.LocationFloat = new DevExpress.Utils.PointFloat(2.499835F, 0F); this.lbchu.Name = "lbchu"; this.lbchu.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.lbchu.SizeF = new System.Drawing.SizeF(573.4233F, 20F); this.lbchu.StylePriority.UseFont = false; this.lbchu.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.lbchu_BeforePrint); // // xrLine1 // this.xrLine1.BorderWidth = 5F; this.xrLine1.LineStyle = System.Drawing.Drawing2D.DashStyle.Dash; this.xrLine1.LineWidth = 2; this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 3.000005F); this.xrLine1.Name = "xrLine1"; this.xrLine1.SizeF = new System.Drawing.SizeF(750.0001F, 11.54169F); this.xrLine1.StylePriority.UseBorderWidth = false; // // xrPictureBox1 // this.xrPictureBox1.ImageUrl = "~\\img\\logohdk.png"; this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(239.5835F, 24.54169F); this.xrPictureBox1.Name = "xrPictureBox1"; this.xrPictureBox1.SizeF = new System.Drawing.SizeF(171.875F, 61.49998F); this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.Squeeze; // // xrLabel5 // this.xrLabel5.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Italic); this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(239.5835F, 115.2917F); this.xrLabel5.Name = "xrLabel5"; this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel5.SizeF = new System.Drawing.SizeF(480.514F, 31.33333F); this.xrLabel5.StylePriority.UseFont = false; this.xrLabel5.StylePriority.UseTextAlignment = false; this.xrLabel5.Text = "Mã giảm giá bên có thời hạn từ 01-05-2015 đến ngày 30-05-2015."; this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrLabel3 // this.xrLabel3.Font = new System.Drawing.Font("Verdana", 10F); this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(239.5835F, 86.04166F); this.xrLabel3.Name = "xrLabel3"; this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel3.SizeF = new System.Drawing.SizeF(480.514F, 18.83333F); this.xrLabel3.StylePriority.UseFont = false; this.xrLabel3.StylePriority.UseTextAlignment = false; this.xrLabel3.Text = "TẶNG BẠN MÃ GIẢM GIÁ 10% CHO LẦN MUA HÀNG TIẾP THEO"; this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrLabel1 // this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 22F, System.Drawing.FontStyle.Bold); this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(419.7918F, 36.20841F); this.xrLabel1.Name = "xrLabel1"; this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel1.SizeF = new System.Drawing.SizeF(240.6251F, 36.37494F); this.xrLabel1.StylePriority.UseFont = false; this.xrLabel1.StylePriority.UseTextAlignment = false; this.xrLabel1.Text = "CẢM ƠN BẠN !"; this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrBarCode1 // this.xrBarCode1.AutoModule = true; this.xrBarCode1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.DashDotDot; this.xrBarCode1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrBarCode1.Font = new System.Drawing.Font("Microsoft YaHei", 16F, System.Drawing.FontStyle.Bold); this.xrBarCode1.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; this.xrBarCode1.FormattingRules.Add(this.formattingRule1); this.xrBarCode1.LocationFloat = new DevExpress.Utils.PointFloat(23.95846F, 24.54169F); this.xrBarCode1.Module = 8F; this.xrBarCode1.Name = "xrBarCode1"; this.xrBarCode1.Padding = new DevExpress.XtraPrinting.PaddingInfo(20, 10, 20, 10, 100F); this.xrBarCode1.SizeF = new System.Drawing.SizeF(196.8751F, 215.7501F); this.xrBarCode1.StylePriority.UseBorderDashStyle = false; this.xrBarCode1.StylePriority.UseBorders = false; this.xrBarCode1.StylePriority.UseFont = false; this.xrBarCode1.StylePriority.UseForeColor = false; this.xrBarCode1.StylePriority.UsePadding = false; this.xrBarCode1.StylePriority.UseTextAlignment = false; qrCodeGenerator1.ErrorCorrectionLevel = DevExpress.XtraPrinting.BarCode.QRCodeErrorCorrectionLevel.M; qrCodeGenerator1.Version = DevExpress.XtraPrinting.BarCode.QRCodeVersion.Version1; this.xrBarCode1.Symbology = qrCodeGenerator1; this.xrBarCode1.Text = "GGHKBD"; this.xrBarCode1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // pTongTien // this.pTongTien.Expression = "[TongTien]+[Thue]+[ShipFees]-[GiamGia]"; this.pTongTien.Name = "pTongTien"; // // ReportHeader // this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.header, this.xrLabel10, this.xrLabel13, this.xrTable7, this.xrTable1}); this.ReportHeader.HeightF = 208.4722F; this.ReportHeader.Name = "ReportHeader"; // // sale_InvoiceToPrintTableAdapter1 // this.sale_InvoiceToPrintTableAdapter1.ClearBeforeFill = true; // // Thanhtien // this.Thanhtien.Expression = "[sale_InvoiceToPrint.FinalTotal] - [sale_InvoiceToPrint.ShipFees]"; this.Thanhtien.Name = "Thanhtien"; // // percentDiscount1 // this.percentDiscount1.Expression = "[sale_InvoiceToPrint.ShipFees]/[sale_InvoiceToPrint.FinalTotal]*100"; this.percentDiscount1.Name = "percentDiscount1"; // // PageFooter // this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrLabel11, this.xrPictureBox4, this.xrLabel2, this.xrPictureBox5, this.xrLine1, this.xrBarCode1, this.xrPictureBox1, this.xrLabel1, this.xrLabel3, this.xrLabel5}); this.PageFooter.HeightF = 245.8333F; this.PageFooter.Name = "PageFooter"; // // xrLabel11 // this.xrLabel11.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Underline); this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(279.4574F, 182.3125F); this.xrLabel11.Name = "xrLabel11"; this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel11.SizeF = new System.Drawing.SizeF(181.7084F, 23F); this.xrLabel11.StylePriority.UseFont = false; this.xrLabel11.StylePriority.UseTextAlignment = false; this.xrLabel11.Text = "www.hongdiepkhang.com"; this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrPictureBox4 // this.xrPictureBox4.ImageUrl = "~\\images\\icon-webapp.png"; this.xrPictureBox4.LocationFloat = new DevExpress.Utils.PointFloat(254.4574F, 181.3125F); this.xrPictureBox4.Name = "xrPictureBox4"; this.xrPictureBox4.SizeF = new System.Drawing.SizeF(24F, 24F); this.xrPictureBox4.Sizing = DevExpress.XtraPrinting.ImageSizeMode.Squeeze; // // xrLabel2 // this.xrLabel2.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Underline); this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(495.0408F, 182.3125F); this.xrLabel2.Name = "xrLabel2"; this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel2.SizeF = new System.Drawing.SizeF(211.515F, 23F); this.xrLabel2.StylePriority.UseFont = false; this.xrLabel2.StylePriority.UseTextAlignment = false; this.xrLabel2.Text = "facebook.com/hongdiepkhang"; this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrPictureBox5 // this.xrPictureBox5.ImageUrl = "~\\images\\circle-social_facebook_outline_stroke-128.png"; this.xrPictureBox5.LocationFloat = new DevExpress.Utils.PointFloat(468.0409F, 180.3125F); this.xrPictureBox5.Name = "xrPictureBox5"; this.xrPictureBox5.SizeF = new System.Drawing.SizeF(24F, 24F); this.xrPictureBox5.Sizing = DevExpress.XtraPrinting.ImageSizeMode.Squeeze; // // xrTableCell34 // this.xrTableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTableCell34.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Discount2", "{0:n0}")}); this.xrTableCell34.Font = new System.Drawing.Font("Verdana", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)))); this.xrTableCell34.Name = "xrTableCell34"; this.xrTableCell34.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 8, 0, 0, 100F); this.xrTableCell34.StylePriority.UseBorders = false; this.xrTableCell34.StylePriority.UseFont = false; this.xrTableCell34.StylePriority.UsePadding = false; this.xrTableCell34.StylePriority.UseTextAlignment = false; this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrTableCell34.Weight = 1.4730767059326171D; // // rptBanHang // this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { this.Detail, this.TopMargin, this.BottomMargin, this.PageHeader, this.GroupHeader2, this.GroupFooter1, this.ReportHeader, this.PageFooter}); this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] { this.pTongTien, this.Thanhtien, this.percentDiscount1}); this.DataAdapter = this.sale_InvoiceToPrintTableAdapter1; this.DataMember = "sale_InvoiceToPrint"; this.DataSource = this.dsBaoCaoBanHang1; this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] { this.formattingRule1}); this.Margins = new System.Drawing.Printing.Margins(49, 51, 0, 14); this.Version = "14.1"; ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dsBaoCaoBanHang1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { string resourceFileName = "XRPrintInvoice.resx"; DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary(); this.Detail = new DevExpress.XtraReports.UI.DetailBand(); this.xrTable2 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell(); this.GrandTotal = new DevExpress.XtraReports.Parameters.Parameter(); this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand(); this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell(); this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand(); this.lblDuplicate = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel(); this.SPName = new DevExpress.XtraReports.Parameters.Parameter(); this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel(); this.CustomerName = new DevExpress.XtraReports.Parameters.Parameter(); this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel(); this.CustomerCode = new DevExpress.XtraReports.Parameters.Parameter(); this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel(); this.PaymentType = new DevExpress.XtraReports.Parameters.Parameter(); this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel(); this.InvDate = new DevExpress.XtraReports.Parameters.Parameter(); this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel(); this.InvoiceNumber = new DevExpress.XtraReports.Parameters.Parameter(); this.InvoiceId = new DevExpress.XtraReports.Parameters.Parameter(); this.AmmountDue = new DevExpress.XtraReports.Parameters.Parameter(); this.DueAmmount = new DevExpress.XtraReports.Parameters.Parameter(); this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand(); this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel(); this.TotalPaid = new DevExpress.XtraReports.Parameters.Parameter(); this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel(); this.xrControlStyle1 = new DevExpress.XtraReports.UI.XRControlStyle(); this.dsPrintInvoice1 = new DsPrintInvoice(); this.SPCode = new DevExpress.XtraReports.Parameters.Parameter(); this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand(); this.lblNote = new DevExpress.XtraReports.UI.XRLabel(); this.xrPageInfo1 = new DevExpress.XtraReports.UI.XRPageInfo(); this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand(); this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand(); ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dsPrintInvoice1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); // // Detail // this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable2}); this.Detail.Dpi = 254F; this.Detail.HeightF = 61F; this.Detail.Name = "Detail"; this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F); this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrTable2 // this.xrTable2.BorderColor = System.Drawing.Color.Transparent; this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTable2.Dpi = 254F; this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(5F, 0F); this.xrTable2.Name = "xrTable2"; this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow2}); this.xrTable2.SizeF = new System.Drawing.SizeF(2238F, 61F); this.xrTable2.StylePriority.UseBorderColor = false; this.xrTable2.StylePriority.UseBorders = false; this.xrTable2.StylePriority.UseFont = false; // // xrTableRow2 // this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell4, this.xrTableCell5, this.xrTableCell6, this.xrTableCell10, this.xrTableCell12}); this.xrTableRow2.Dpi = 254F; this.xrTableRow2.Name = "xrTableRow2"; this.xrTableRow2.Weight = 1; // // xrTableCell4 // this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Detail_Sel_Report.ItemCode")}); this.xrTableCell4.Dpi = 254F; this.xrTableCell4.Font = new System.Drawing.Font("Times New Roman", 11.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrTableCell4.Name = "xrTableCell4"; this.xrTableCell4.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F); this.xrTableCell4.StylePriority.UseFont = false; this.xrTableCell4.StylePriority.UseTextAlignment = false; this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; this.xrTableCell4.Weight = 0.083109919571045576; // // xrTableCell5 // this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Detail_Sel_Report.ItemDescription")}); this.xrTableCell5.Dpi = 254F; this.xrTableCell5.Font = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrTableCell5.Name = "xrTableCell5"; this.xrTableCell5.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F); this.xrTableCell5.StylePriority.UseFont = false; this.xrTableCell5.StylePriority.UseTextAlignment = false; this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; this.xrTableCell5.Weight = 0.57327971403038425; // // xrTableCell6 // this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Detail_Sel_Report.Quantity")}); this.xrTableCell6.Dpi = 254F; this.xrTableCell6.Font = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrTableCell6.Name = "xrTableCell6"; this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F); this.xrTableCell6.StylePriority.UseFont = false; this.xrTableCell6.StylePriority.UseTextAlignment = false; this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; this.xrTableCell6.Weight = 0.055406613047363718; // // xrTableCell10 // this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Detail_Sel_Report.Price", "{0:0.00}")}); this.xrTableCell10.Dpi = 254F; this.xrTableCell10.Font = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrTableCell10.Name = "xrTableCell10"; this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F); this.xrTableCell10.StylePriority.UseFont = false; this.xrTableCell10.StylePriority.UseTextAlignment = false; this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomRight; this.xrTableCell10.Weight = 0.13717605004468275; // // xrTableCell12 // this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTableCell12.CanShrink = true; this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Detail_Sel_Report.TotalPrice", "{0:0.00}")}); this.xrTableCell12.Dpi = 254F; this.xrTableCell12.Font = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrTableCell12.Name = "xrTableCell12"; this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F); this.xrTableCell12.StylePriority.UseBorders = false; this.xrTableCell12.StylePriority.UseFont = false; this.xrTableCell12.StylePriority.UseTextAlignment = false; this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomRight; this.xrTableCell12.Weight = 0.15102770330652368; // // GrandTotal // this.GrandTotal.Name = "GrandTotal"; this.GrandTotal.Type = typeof(decimal); this.GrandTotal.Value = 0; // // PageHeader // this.PageHeader.Dpi = 254F; this.PageHeader.HeightF = 0F; this.PageHeader.Name = "PageHeader"; this.PageHeader.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F); this.PageHeader.StylePriority.UseTextAlignment = false; this.PageHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; // // xrTableCell9 // this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Sel_Report.Has Line Item.Quantity")}); this.xrTableCell9.Name = "xrTableCell9"; this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F); this.xrTableCell9.Weight = 0; // // xrTableCell8 // this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "vw_Invoice_Sel_Report.Has Line Item.Price")}); this.xrTableCell8.Name = "xrTableCell8"; this.xrTableCell8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F); this.xrTableCell8.Weight = 0; // // ReportHeader // this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.lblDuplicate, this.xrLabel8, this.xrLabel11, this.xrLabel7, this.xrLabel6, this.xrLabel5, this.xrLabel4}); this.ReportHeader.Dpi = 254F; this.ReportHeader.HeightF = 638F; this.ReportHeader.Name = "ReportHeader"; // // lblDuplicate // this.lblDuplicate.BackColor = System.Drawing.Color.Transparent; this.lblDuplicate.Dpi = 254F; this.lblDuplicate.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F); this.lblDuplicate.LocationFloat = new DevExpress.Utils.PointFloat(1270F, 445F); this.lblDuplicate.Name = "lblDuplicate"; this.lblDuplicate.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F); this.lblDuplicate.SizeF = new System.Drawing.SizeF(297.9999F, 58.41995F); this.lblDuplicate.StylePriority.UseBackColor = false; this.lblDuplicate.StylePriority.UseFont = false; this.lblDuplicate.Text = "DUPLICATE"; this.lblDuplicate.Visible = false; // // xrLabel8 // this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding(this.SPName, "Text", "")}); this.xrLabel8.Dpi = 254F; this.xrLabel8.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(1270F, 339F); this.xrLabel8.Name = "xrLabel8"; this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F); this.xrLabel8.SizeF = new System.Drawing.SizeF(254F, 64F); this.xrLabel8.StylePriority.UseFont = false; this.xrLabel8.Text = "xrLabel8"; // // SPName // this.SPName.Name = "SPName"; this.SPName.Value = ""; // // xrLabel11 // this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding(this.CustomerName, "Text", "")}); this.xrLabel11.Dpi = 254F; this.xrLabel11.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(100F, 234F); this.xrLabel11.Multiline = true; this.xrLabel11.Name = "xrLabel11"; this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F); this.xrLabel11.SizeF = new System.Drawing.SizeF(339F, 64F); this.xrLabel11.StylePriority.UseFont = false; this.xrLabel11.Text = "xrLabel11"; // // CustomerName // this.CustomerName.Name = "CustomerName"; this.CustomerName.Value = ""; // // xrLabel7 // this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding(this.CustomerCode, "Text", "")}); this.xrLabel7.Dpi = 254F; this.xrLabel7.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(100F, 444F); this.xrLabel7.Name = "xrLabel7"; this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F); this.xrLabel7.SizeF = new System.Drawing.SizeF(254F, 64F); this.xrLabel7.StylePriority.UseFont = false; this.xrLabel7.Text = "xrLabel7"; // // CustomerCode // this.CustomerCode.Name = "CustomerCode"; this.CustomerCode.Value = ""; // // xrLabel6 // this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding(this.PaymentType, "Text", "")}); this.xrLabel6.Dpi = 254F; this.xrLabel6.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(1935F, 445F); this.xrLabel6.Name = "xrLabel6"; this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F); this.xrLabel6.SizeF = new System.Drawing.SizeF(254F, 64F); this.xrLabel6.StylePriority.UseFont = false; this.xrLabel6.Text = "xrLabel6"; // // PaymentType // this.PaymentType.Name = "PaymentType"; this.PaymentType.Value = ""; // // xrLabel5 // this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding(this.InvDate, "Text", "{0:dd-MMM-yyyy}")}); this.xrLabel5.Dpi = 254F; this.xrLabel5.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(1935F, 234F); this.xrLabel5.Name = "xrLabel5"; this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F); this.xrLabel5.SizeF = new System.Drawing.SizeF(347F, 64F); this.xrLabel5.StylePriority.UseFont = false; xrSummary1.FormatString = "dd/MMM/yyyy{0}"; this.xrLabel5.Summary = xrSummary1; this.xrLabel5.Text = "xrLabel5"; // // InvDate // this.InvDate.Name = "InvDate"; this.InvDate.Type = typeof(System.DateTime); this.InvDate.Value = new System.DateTime(((long)(0))); // // xrLabel4 // this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding(this.InvoiceNumber, "Text", "")}); this.xrLabel4.Dpi = 254F; this.xrLabel4.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(1935F, 339F); this.xrLabel4.Name = "xrLabel4"; this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F); this.xrLabel4.SizeF = new System.Drawing.SizeF(361F, 64F); this.xrLabel4.StylePriority.UseFont = false; this.xrLabel4.Text = "xrLabel4"; // // InvoiceNumber // this.InvoiceNumber.Name = "InvoiceNumber"; this.InvoiceNumber.Value = ""; // // InvoiceId // this.InvoiceId.Name = "InvoiceId"; this.InvoiceId.Type = typeof(int); this.InvoiceId.Value = 0; // // AmmountDue // this.AmmountDue.Name = "AmmountDue"; this.AmmountDue.Type = typeof(decimal); this.AmmountDue.Value = 0; // // DueAmmount // this.DueAmmount.Name = "DueAmmount"; this.DueAmmount.Type = typeof(decimal); this.DueAmmount.Value = 0; // // ReportFooter // this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrLabel1, this.xrLabel3, this.xrLabel14, this.xrLabel17, this.xrLabel12, this.xrLabel2}); this.ReportFooter.Dpi = 254F; this.ReportFooter.HeightF = 274F; this.ReportFooter.Name = "ReportFooter"; this.ReportFooter.PrintAtBottom = true; // // xrLabel1 // this.xrLabel1.Dpi = 254F; this.xrLabel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(1569F, 130F); this.xrLabel1.Name = "xrLabel1"; this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F); this.xrLabel1.SizeF = new System.Drawing.SizeF(294F, 63F); this.xrLabel1.StylePriority.UseFont = false; this.xrLabel1.Text = "Amount"; // // xrLabel3 // this.xrLabel3.Dpi = 254F; this.xrLabel3.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(1469F, 66F); this.xrLabel3.Name = "xrLabel3"; this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F); this.xrLabel3.SizeF = new System.Drawing.SizeF(397F, 58F); this.xrLabel3.StylePriority.UseFont = false; this.xrLabel3.Text = "Recieved Amount"; // // xrLabel14 // this.xrLabel14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding(this.DueAmmount, "Text", "")}); this.xrLabel14.Dpi = 254F; this.xrLabel14.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrLabel14.ForeColor = System.Drawing.Color.Maroon; this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(1900F, 133F); this.xrLabel14.Name = "xrLabel14"; this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F); this.xrLabel14.SizeF = new System.Drawing.SizeF(346F, 64F); this.xrLabel14.StylePriority.UseFont = false; this.xrLabel14.StylePriority.UseForeColor = false; this.xrLabel14.StylePriority.UseTextAlignment = false; this.xrLabel14.Text = "xrLabel14"; this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; // // xrLabel17 // this.xrLabel17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding(this.TotalPaid, "Text", "")}); this.xrLabel17.Dpi = 254F; this.xrLabel17.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(1900F, 67F); this.xrLabel17.Name = "xrLabel17"; this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F); this.xrLabel17.SizeF = new System.Drawing.SizeF(346F, 64F); this.xrLabel17.StylePriority.UseFont = false; this.xrLabel17.StylePriority.UseTextAlignment = false; this.xrLabel17.Text = "xrLabel17"; this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; // // TotalPaid // this.TotalPaid.Name = "TotalPaid"; this.TotalPaid.Type = typeof(decimal); this.TotalPaid.Value = 0; // // xrLabel12 // this.xrLabel12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding(this.GrandTotal, "Text", "")}); this.xrLabel12.Dpi = 254F; this.xrLabel12.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(1900F, 210F); this.xrLabel12.Name = "xrLabel12"; this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F); this.xrLabel12.SizeF = new System.Drawing.SizeF(346F, 64F); this.xrLabel12.StylePriority.UseFont = false; this.xrLabel12.StylePriority.UseTextAlignment = false; this.xrLabel12.Text = "xrLabel12"; this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; // // xrLabel2 // this.xrLabel2.Dpi = 254F; this.xrLabel2.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(1468F, 130F); this.xrLabel2.Name = "xrLabel2"; this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F); this.xrLabel2.SizeF = new System.Drawing.SizeF(100F, 63F); this.xrLabel2.StylePriority.UseFont = false; this.xrLabel2.Text = "Due"; // // xrControlStyle1 // this.xrControlStyle1.BorderColor = System.Drawing.SystemColors.Desktop; this.xrControlStyle1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrControlStyle1.Name = "xrControlStyle1"; // // dsPrintInvoice1 // this.dsPrintInvoice1.DataSetName = "DsPrintInvoice"; this.dsPrintInvoice1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; // // SPCode // this.SPCode.Name = "SPCode"; this.SPCode.Value = ""; // // PageFooter // this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.lblNote, this.xrPageInfo1}); this.PageFooter.Dpi = 254F; this.PageFooter.HeightF = 65.00002F; this.PageFooter.Name = "PageFooter"; this.PageFooter.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 254F); this.PageFooter.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // lblNote // this.lblNote.Dpi = 254F; this.lblNote.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold); this.lblNote.LocationFloat = new DevExpress.Utils.PointFloat(0F, 5.579924F); this.lblNote.Name = "lblNote"; this.lblNote.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F); this.lblNote.SizeF = new System.Drawing.SizeF(1246.188F, 58.42F); this.lblNote.StylePriority.UseFont = false; this.lblNote.Text = "Cash returns are not accepted. This invoice should be submitted for any returns."; // // xrPageInfo1 // this.xrPageInfo1.Dpi = 254F; this.xrPageInfo1.Font = new System.Drawing.Font("Times New Roman", 11F); this.xrPageInfo1.Format = "Page {0} of {1}"; this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(1989F, 0F); this.xrPageInfo1.Name = "xrPageInfo1"; this.xrPageInfo1.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 254F); this.xrPageInfo1.SizeF = new System.Drawing.SizeF(254F, 64F); this.xrPageInfo1.StylePriority.UseFont = false; // // topMarginBand1 // this.topMarginBand1.Dpi = 254F; this.topMarginBand1.HeightF = 5F; this.topMarginBand1.Name = "topMarginBand1"; // // bottomMarginBand1 // this.bottomMarginBand1.Dpi = 254F; this.bottomMarginBand1.HeightF = 5F; this.bottomMarginBand1.Name = "bottomMarginBand1"; // // XRPrintInvoice // this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { this.Detail, this.PageHeader, this.ReportHeader, this.ReportFooter, this.PageFooter, this.topMarginBand1, this.bottomMarginBand1}); this.DataMember = "vw_Invoice_Detail_Sel_Report"; this.DataSource = this.dsPrintInvoice1; this.Dpi = 254F; this.Margins = new System.Drawing.Printing.Margins(5, 5, 5, 5); this.PageHeight = 2000; this.PageWidth = 2317; this.PaperKind = System.Drawing.Printing.PaperKind.Custom; this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] { this.InvoiceId, this.InvoiceNumber, this.InvDate, this.CustomerCode, this.CustomerName, this.GrandTotal, this.AmmountDue, this.PaymentType, this.DueAmmount, this.TotalPaid, this.SPCode, this.SPName}); this.ReportUnit = DevExpress.XtraReports.UI.ReportUnit.TenthsOfAMillimeter; this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] { this.xrControlStyle1}); this.Version = "11.1"; ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dsPrintInvoice1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); }
private void InitializeComponent() { this.dtl = new DevExpress.XtraReports.UI.DetailBand(); this.xrTable1 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell(); this.ph = new DevExpress.XtraReports.UI.PageHeaderBand(); this.xlblReportHeader = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); this.xrPageInfo = new DevExpress.XtraReports.UI.XRPageInfo(); this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand(); this.xlblTimeRange = new DevExpress.XtraReports.UI.XRLabel(); this.xlblMemo = new DevExpress.XtraReports.UI.XRLabel(); ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); // // dtl // this.dtl.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable1}); this.dtl.Font = new System.Drawing.Font("標楷體", 9.75F); this.dtl.Height = 744; this.dtl.Name = "dtl"; this.dtl.ParentStyleUsing.UseFont = false; // // xrTable1 // this.xrTable1.BorderColor = System.Drawing.SystemColors.WindowText; this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTable1.Location = new System.Drawing.Point(17, 17); this.xrTable1.Name = "xrTable1"; this.xrTable1.ParentStyleUsing.UseBackColor = false; this.xrTable1.ParentStyleUsing.UseBorderColor = false; this.xrTable1.ParentStyleUsing.UseBorders = false; this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow1, this.xrTableRow2, this.xrTableRow3, this.xrTableRow4, this.xrTableRow6, this.xrTableRow5}); this.xrTable1.Size = new System.Drawing.Size(758, 727); // // xrTableRow1 // this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell1, this.xrTableCell2}); this.xrTableRow1.Name = "xrTableRow1"; this.xrTableRow1.Size = new System.Drawing.Size(758, 30); // // xrTableCell1 // this.xrTableCell1.Font = new System.Drawing.Font("標楷體", 12F); this.xrTableCell1.Location = new System.Drawing.Point(0, 0); this.xrTableCell1.Name = "xrTableCell1"; this.xrTableCell1.ParentStyleUsing.UseFont = false; this.xrTableCell1.Size = new System.Drawing.Size(379, 30); this.xrTableCell1.Text = "日期:"; // // xrTableCell2 // this.xrTableCell2.Font = new System.Drawing.Font("標楷體", 12F); this.xrTableCell2.Location = new System.Drawing.Point(379, 0); this.xrTableCell2.Name = "xrTableCell2"; this.xrTableCell2.ParentStyleUsing.UseFont = false; this.xrTableCell2.Size = new System.Drawing.Size(379, 30); this.xrTableCell2.Text = "時間:"; // // xrTableRow2 // this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell3}); this.xrTableRow2.Name = "xrTableRow2"; this.xrTableRow2.Size = new System.Drawing.Size(758, 63); // // xrTableCell3 // this.xrTableCell3.Font = new System.Drawing.Font("標楷體", 12F); this.xrTableCell3.Location = new System.Drawing.Point(0, 0); this.xrTableCell3.Multiline = true; this.xrTableCell3.Name = "xrTableCell3"; this.xrTableCell3.ParentStyleUsing.UseFont = false; this.xrTableCell3.Size = new System.Drawing.Size(758, 63); this.xrTableCell3.Text = "播報內容:\r\n1.事故"; // // xrTableRow3 // this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell5}); this.xrTableRow3.Name = "xrTableRow3"; this.xrTableRow3.Size = new System.Drawing.Size(758, 84); // // xrTableCell5 // this.xrTableCell5.Font = new System.Drawing.Font("標楷體", 12F); this.xrTableCell5.Location = new System.Drawing.Point(0, 0); this.xrTableCell5.Multiline = true; this.xrTableCell5.Name = "xrTableCell5"; this.xrTableCell5.ParentStyleUsing.UseFont = false; this.xrTableCell5.Size = new System.Drawing.Size(758, 84); this.xrTableCell5.Text = "\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n"; // // xrTableRow4 // this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell4}); this.xrTableRow4.Name = "xrTableRow4"; this.xrTableRow4.Size = new System.Drawing.Size(758, 398); // // xrTableCell4 // this.xrTableCell4.Font = new System.Drawing.Font("標楷體", 12F); this.xrTableCell4.Location = new System.Drawing.Point(0, 0); this.xrTableCell4.Name = "xrTableCell4"; this.xrTableCell4.ParentStyleUsing.UseFont = false; this.xrTableCell4.Size = new System.Drawing.Size(758, 300); this.xrTableCell4.Text = "3.施工(國道1號 國道3號 國道4號 國道6號)"; // // xrTableRow6 // this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell7}); this.xrTableRow6.Name = "xrTableRow6"; this.xrTableRow6.Size = new System.Drawing.Size(758, 76); // // xrTableCell7 // this.xrTableCell7.Font = new System.Drawing.Font("標楷體", 12F); this.xrTableCell7.Location = new System.Drawing.Point(0, 0); this.xrTableCell7.Multiline = true; this.xrTableCell7.Name = "xrTableCell7"; this.xrTableCell7.ParentStyleUsing.UseFont = false; this.xrTableCell7.Size = new System.Drawing.Size(758, 76); this.xrTableCell7.Text = "4.其他相關宣導\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n"; // // xrTableRow5 // this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell6}); this.xrTableRow5.Name = "xrTableRow5"; this.xrTableRow5.Size = new System.Drawing.Size(758, 76); // // xrTableCell6 // this.xrTableCell6.Font = new System.Drawing.Font("標楷體", 12F); this.xrTableCell6.Location = new System.Drawing.Point(0, 0); this.xrTableCell6.Multiline = true; this.xrTableCell6.Name = "xrTableCell6"; this.xrTableCell6.ParentStyleUsing.UseFont = false; this.xrTableCell6.Size = new System.Drawing.Size(758, 76); this.xrTableCell6.Text = "以上路況 資訊,由高速公路局中區工程處交控中心提供,祝您行車平安。"; // // ph // this.ph.Font = new System.Drawing.Font("標楷體", 9.75F); this.ph.Height = 0; this.ph.Name = "ph"; this.ph.ParentStyleUsing.UseFont = false; // // xlblReportHeader // this.xlblReportHeader.BackColor = System.Drawing.Color.Empty; this.xlblReportHeader.BorderColor = System.Drawing.SystemColors.Control; this.xlblReportHeader.Font = new System.Drawing.Font("標楷體", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xlblReportHeader.ForeColor = System.Drawing.SystemColors.Desktop; this.xlblReportHeader.Location = new System.Drawing.Point(83, 42); this.xlblReportHeader.Name = "xlblReportHeader"; this.xlblReportHeader.ParentStyleUsing.UseBackColor = false; this.xlblReportHeader.ParentStyleUsing.UseBorderColor = false; this.xlblReportHeader.ParentStyleUsing.UseFont = false; this.xlblReportHeader.ParentStyleUsing.UseForeColor = false; this.xlblReportHeader.Size = new System.Drawing.Size(659, 33); this.xlblReportHeader.Text = "交通部台灣區國道高速公路中區工程處交控中心"; this.xlblReportHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrLabel1 // this.xrLabel1.Font = new System.Drawing.Font("標楷體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrLabel1.ForeColor = System.Drawing.SystemColors.Desktop; this.xrLabel1.Location = new System.Drawing.Point(967, 108); this.xrLabel1.Name = "xrLabel1"; this.xrLabel1.ParentStyleUsing.UseFont = false; this.xrLabel1.ParentStyleUsing.UseForeColor = false; this.xrLabel1.Size = new System.Drawing.Size(108, 25); this.xrLabel1.Text = "頁次:"; this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; // // xrPageInfo // this.xrPageInfo.Font = new System.Drawing.Font("標楷體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrPageInfo.ForeColor = System.Drawing.SystemColors.Desktop; this.xrPageInfo.Location = new System.Drawing.Point(1075, 108); this.xrPageInfo.Name = "xrPageInfo"; this.xrPageInfo.ParentStyleUsing.UseFont = false; this.xrPageInfo.ParentStyleUsing.UseForeColor = false; this.xrPageInfo.Size = new System.Drawing.Size(50, 25); this.xrPageInfo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; // // TopMargin // this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xlblTimeRange, this.xrPageInfo, this.xrLabel1, this.xlblMemo, this.xlblReportHeader}); this.TopMargin.Font = new System.Drawing.Font("標楷體", 9.75F); this.TopMargin.Height = 142; this.TopMargin.Name = "TopMargin"; this.TopMargin.ParentStyleUsing.UseFont = false; // // xlblTimeRange // this.xlblTimeRange.Font = new System.Drawing.Font("標楷體", 14F); this.xlblTimeRange.ForeColor = System.Drawing.SystemColors.Desktop; this.xlblTimeRange.Location = new System.Drawing.Point(175, 92); this.xlblTimeRange.Name = "xlblTimeRange"; this.xlblTimeRange.ParentStyleUsing.UseFont = false; this.xlblTimeRange.ParentStyleUsing.UseForeColor = false; this.xlblTimeRange.Size = new System.Drawing.Size(408, 25); this.xlblTimeRange.Text = " 每日定時路況簡報新聞稿草稿"; this.xlblTimeRange.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; // // xlblMemo // this.xlblMemo.Font = new System.Drawing.Font("標楷體", 9.75F); this.xlblMemo.ForeColor = System.Drawing.SystemColors.Desktop; this.xlblMemo.Location = new System.Drawing.Point(967, 83); this.xlblMemo.Name = "xlblMemo"; this.xlblMemo.ParentStyleUsing.UseFont = false; this.xlblMemo.ParentStyleUsing.UseForeColor = false; this.xlblMemo.Size = new System.Drawing.Size(158, 25); this.xlblMemo.Text = "中區-RPT_DATA_06"; this.xlblMemo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; // // clsNewsPaper // this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { this.dtl, this.ph, this.TopMargin}); this.Margins = new System.Drawing.Printing.Margins(20, 20, 142, 75); this.PageHeight = 1169; this.PageWidth = 827; this.PaperKind = System.Drawing.Printing.PaperKind.A4; ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); }
private void InitializeComponent() { XRSummary xrSummary1 = new XRSummary(); XRSummary xrSummary2 = new XRSummary(); Detail = new DetailBand(); xrLabel21 = new XRLabel(); xrLabel20 = new XRLabel(); xrLabel19 = new XRLabel(); xrLabel18 = new XRLabel(); xrLabel26 = new XRLabel(); TopMargin = new TopMarginBand(); labelcompany = new XRLabel(); xrLabel1 = new XRLabel(); BottomMargin = new BottomMarginBand(); xrLabel2 = new XRLabel(); xrLabel3 = new XRLabel(); xrLabel4 = new XRLabel(); xrLabel5 = new XRLabel(); PageHeader = new PageHeaderBand(); xrLine2 = new XRLine(); xrLine1 = new XRLine(); xrLabel32 = new XRLabel(); lbldoctor = new XRLabel(); xrLabel23 = new XRLabel(); xrLabel22 = new XRLabel(); xrLabel15 = new XRLabel(); xrLabel29 = new XRLabel(); xrLabel30 = new XRLabel(); xrLabel31 = new XRLabel(); xrLabel16 = new XRLabel(); xrLabel17 = new XRLabel(); xrLabel10 = new XRLabel(); xrLabel9 = new XRLabel(); xrLabel6 = new XRLabel(); xrLabel8 = new XRLabel(); xrLabel7 = new XRLabel(); ReportFooter = new ReportFooterBand(); xrLine3 = new XRLine(); xrLabel34 = new XRLabel(); xrLabel33 = new XRLabel(); patdisc = new XRLabel(); compdiscamt = new XRLabel(); xrLabel25 = new XRLabel(); lbldiscount = new XRLabel(); xrLabel13 = new XRLabel(); lblpatshare = new XRLabel(); xrLabel11 = new XRLabel(); xrLabel24 = new XRLabel(); xrCrossBandBox1 = new XRCrossBandBox(); ((ISupportInitialize)(this)).BeginInit(); // // Detail // Detail.Controls.AddRange(new XRControl[] { xrLabel21, xrLabel20, xrLabel19, xrLabel18, xrLabel26}); Detail.HeightF = 20F; Detail.KeepTogether = true; Detail.Name = "Detail"; Detail.Padding = new PaddingInfo(0, 0, 0, 0, 100F); Detail.TextAlignment = TextAlignment.TopLeft; // // xrLabel21 // xrLabel21.DataBindings.AddRange(new[] { new XRBinding("Text", null, "SalesInvList.LINETOTAL", "{0:n2}")}); xrLabel21.LocationFloat = new PointFloat(625.0834F, 0F); xrLabel21.Name = "xrLabel21"; xrLabel21.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel21.SizeF = new SizeF(72.91669F, 20F); xrLabel21.StylePriority.UseTextAlignment = false; xrLabel21.Text = "xrLabel21"; xrLabel21.TextAlignment = TextAlignment.MiddleRight; // // xrLabel20 // xrLabel20.DataBindings.AddRange(new[] { new XRBinding("Text", null, "SalesInvList.INVRATE", "{0:n2}")}); xrLabel20.LocationFloat = new PointFloat(566.1246F, 0F); xrLabel20.Name = "xrLabel20"; xrLabel20.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel20.SizeF = new SizeF(54.16656F, 20F); xrLabel20.StylePriority.UseTextAlignment = false; xrLabel20.Text = "xrLabel20"; xrLabel20.TextAlignment = TextAlignment.MiddleRight; // // xrLabel19 // xrLabel19.DataBindings.AddRange(new[] { new XRBinding("Text", null, "SalesInvList.QTY", "{0:#,#}")}); xrLabel19.LocationFloat = new PointFloat(515.2913F, 0F); xrLabel19.Name = "xrLabel19"; xrLabel19.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel19.SizeF = new SizeF(46.62515F, 20F); xrLabel19.StylePriority.UseTextAlignment = false; xrLabel19.Text = "[SalesInvList.QTY]"; xrLabel19.TextAlignment = TextAlignment.MiddleCenter; // // xrLabel18 // xrLabel18.DataBindings.AddRange(new[] { new XRBinding("Text", null, "SalesInvList.ITEMNAME")}); xrLabel18.LocationFloat = new PointFloat(31.54163F, 0F); xrLabel18.Name = "xrLabel18"; xrLabel18.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel18.SizeF = new SizeF(470.0833F, 20F); xrLabel18.StylePriority.UseTextAlignment = false; xrLabel18.Text = "xrLabel18"; xrLabel18.TextAlignment = TextAlignment.MiddleLeft; // // xrLabel26 // xrLabel26.LocationFloat = new PointFloat(2.083333F, 0F); xrLabel26.Name = "xrLabel26"; xrLabel26.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel26.SizeF = new SizeF(26.33333F, 20F); xrLabel26.StylePriority.UseTextAlignment = false; xrSummary1.Func = SummaryFunc.RecordNumber; xrSummary1.Running = SummaryRunning.Report; xrLabel26.Summary = xrSummary1; xrLabel26.Text = "xrLabel26"; xrLabel26.TextAlignment = TextAlignment.MiddleCenter; // // TopMargin // TopMargin.Controls.AddRange(new XRControl[] { labelcompany, xrLabel1}); TopMargin.HeightF = 69F; TopMargin.Name = "TopMargin"; TopMargin.Padding = new PaddingInfo(0, 0, 0, 0, 100F); TopMargin.TextAlignment = TextAlignment.TopLeft; // // labelcompany // labelcompany.Font = new Font("Tahoma", 12F, FontStyle.Bold); labelcompany.LocationFloat = new PointFloat(85.41666F, 15.25F); labelcompany.Name = "labelcompany"; labelcompany.Padding = new PaddingInfo(2, 2, 0, 0, 100F); labelcompany.SizeF = new SizeF(534.8745F, 25.5F); labelcompany.StylePriority.UseFont = false; labelcompany.StylePriority.UseTextAlignment = false; labelcompany.Text = "labelcompany"; labelcompany.TextAlignment = TextAlignment.MiddleCenter; // // xrLabel1 // xrLabel1.Borders = ((BorderSide.Left | BorderSide.Top) | BorderSide.Right) | BorderSide.Bottom; xrLabel1.Font = new Font("Tahoma", 9.75F, FontStyle.Bold, GraphicsUnit.Point, 0); xrLabel1.LocationFloat = new PointFloat(256.1667F, 43.75F); xrLabel1.Name = "xrLabel1"; xrLabel1.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel1.SizeF = new SizeF(182.7082F, 23.75F); xrLabel1.StylePriority.UseBorders = false; xrLabel1.StylePriority.UseFont = false; xrLabel1.StylePriority.UseTextAlignment = false; xrLabel1.Text = "Sales Invoice"; xrLabel1.TextAlignment = TextAlignment.MiddleCenter; // // BottomMargin // BottomMargin.HeightF = 25F; BottomMargin.Name = "BottomMargin"; BottomMargin.Padding = new PaddingInfo(0, 0, 0, 0, 100F); BottomMargin.TextAlignment = TextAlignment.TopLeft; // // xrLabel2 // xrLabel2.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0); xrLabel2.LocationFloat = new PointFloat(455.6246F, 6F); xrLabel2.Name = "xrLabel2"; xrLabel2.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel2.SizeF = new SizeF(87.5F, 18F); xrLabel2.StylePriority.UseFont = false; xrLabel2.StylePriority.UseTextAlignment = false; xrLabel2.Text = "Invoice No. :"; xrLabel2.TextAlignment = TextAlignment.MiddleLeft; // // xrLabel3 // xrLabel3.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0); xrLabel3.LocationFloat = new PointFloat(455.6246F, 30.00002F); xrLabel3.Name = "xrLabel3"; xrLabel3.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel3.SizeF = new SizeF(87.5F, 18F); xrLabel3.StylePriority.UseFont = false; xrLabel3.StylePriority.UseTextAlignment = false; xrLabel3.Text = "Date :"; xrLabel3.TextAlignment = TextAlignment.MiddleLeft; // // xrLabel4 // xrLabel4.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0); xrLabel4.LocationFloat = new PointFloat(5.124998F, 6.00001F); xrLabel4.Name = "xrLabel4"; xrLabel4.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel4.SizeF = new SizeF(129.4583F, 18F); xrLabel4.StylePriority.UseFont = false; xrLabel4.StylePriority.UseTextAlignment = false; xrLabel4.Text = "Customer name :"; xrLabel4.TextAlignment = TextAlignment.MiddleLeft; // // xrLabel5 // xrLabel5.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0); xrLabel5.LocationFloat = new PointFloat(5.000003F, 30.00002F); xrLabel5.Name = "xrLabel5"; xrLabel5.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel5.SizeF = new SizeF(129.5833F, 18F); xrLabel5.StylePriority.UseFont = false; xrLabel5.StylePriority.UseTextAlignment = false; xrLabel5.Text = "Doctor :"; xrLabel5.TextAlignment = TextAlignment.MiddleLeft; // // PageHeader // PageHeader.Controls.AddRange(new XRControl[] { xrLine2, xrLine1, xrLabel32, lbldoctor, xrLabel23, xrLabel22, xrLabel4, xrLabel15, xrLabel5, xrLabel29, xrLabel30, xrLabel31, xrLabel3, xrLabel2, xrLabel16, xrLabel17, xrLabel10, xrLabel9, xrLabel6, xrLabel8, xrLabel7}); PageHeader.HeightF = 112.4167F; PageHeader.Name = "PageHeader"; // // xrLine2 // xrLine2.LocationFloat = new PointFloat(3.208333F, 110.4167F); xrLine2.Name = "xrLine2"; xrLine2.SizeF = new SizeF(700.6667F, 2F); // // xrLine1 // xrLine1.LocationFloat = new PointFloat(3.333333F, 86.54166F); xrLine1.Name = "xrLine1"; xrLine1.SizeF = new SizeF(699.3334F, 2F); // // xrLabel32 // xrLabel32.DataBindings.AddRange(new[] { new XRBinding("Text", null, "SalesInvList.CARDNO")}); xrLabel32.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0); xrLabel32.LocationFloat = new PointFloat(543.1246F, 54.00003F); xrLabel32.Name = "xrLabel32"; xrLabel32.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel32.SizeF = new SizeF(154.9586F, 18F); xrLabel32.StylePriority.UseFont = false; xrLabel32.StylePriority.UseTextAlignment = false; xrLabel32.Text = "xrLabel32"; xrLabel32.TextAlignment = TextAlignment.MiddleLeft; // // lbldoctor // lbldoctor.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0); lbldoctor.LocationFloat = new PointFloat(134.5833F, 30F); lbldoctor.Name = "lbldoctor"; lbldoctor.Padding = new PaddingInfo(2, 2, 0, 0, 100F); lbldoctor.SizeF = new SizeF(291.6667F, 18F); lbldoctor.StylePriority.UseFont = false; lbldoctor.StylePriority.UseTextAlignment = false; lbldoctor.Text = "lbldoctorname"; lbldoctor.TextAlignment = TextAlignment.MiddleLeft; // // xrLabel23 // xrLabel23.DataBindings.AddRange(new[] { new XRBinding("Text", null, "SalesInvList.GRADE")}); xrLabel23.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0); xrLabel23.LocationFloat = new PointFloat(327.3748F, 54.00003F); xrLabel23.Name = "xrLabel23"; xrLabel23.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel23.SizeF = new SizeF(122.2498F, 18F); xrLabel23.StylePriority.UseFont = false; xrLabel23.StylePriority.UseTextAlignment = false; xrLabel23.Text = "xrLabel23"; xrLabel23.TextAlignment = TextAlignment.MiddleLeft; xrLabel23.Visible = false; // // xrLabel22 // xrLabel22.DataBindings.AddRange(new[] { new XRBinding("Text", null, "SalesInvList.CARDID")}); xrLabel22.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0); xrLabel22.LocationFloat = new PointFloat(134.5833F, 54.00001F); xrLabel22.Name = "xrLabel22"; xrLabel22.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel22.SizeF = new SizeF(142.9167F, 18F); xrLabel22.StylePriority.UseFont = false; xrLabel22.StylePriority.UseTextAlignment = false; xrLabel22.Text = "xrLabel22"; xrLabel22.TextAlignment = TextAlignment.MiddleLeft; // // xrLabel15 // xrLabel15.DataBindings.AddRange(new[] { new XRBinding("Text", null, "SalesInvList.CUSTNAME")}); xrLabel15.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0); xrLabel15.LocationFloat = new PointFloat(134.5833F, 5.999994F); xrLabel15.Name = "xrLabel15"; xrLabel15.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel15.SizeF = new SizeF(291.6667F, 18F); xrLabel15.StylePriority.UseFont = false; xrLabel15.StylePriority.UseTextAlignment = false; xrLabel15.Text = "xrLabel15"; xrLabel15.TextAlignment = TextAlignment.MiddleLeft; // // xrLabel29 // xrLabel29.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0); xrLabel29.LocationFloat = new PointFloat(455.6246F, 54.00003F); xrLabel29.Name = "xrLabel29"; xrLabel29.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel29.SizeF = new SizeF(87.5F, 18F); xrLabel29.StylePriority.UseFont = false; xrLabel29.StylePriority.UseTextAlignment = false; xrLabel29.Text = "Policy No. :"; xrLabel29.TextAlignment = TextAlignment.MiddleLeft; // // xrLabel30 // xrLabel30.Font = new Font("Tahoma", 9.75F); xrLabel30.LocationFloat = new PointFloat(280.5832F, 54.00003F); xrLabel30.Name = "xrLabel30"; xrLabel30.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel30.SizeF = new SizeF(46.79153F, 18F); xrLabel30.StylePriority.UseFont = false; xrLabel30.StylePriority.UseTextAlignment = false; xrLabel30.Text = "Class :"; xrLabel30.TextAlignment = TextAlignment.MiddleLeft; xrLabel30.Visible = false; // // xrLabel31 // xrLabel31.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0); xrLabel31.LocationFloat = new PointFloat(4.166667F, 54.00003F); xrLabel31.Name = "xrLabel31"; xrLabel31.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel31.SizeF = new SizeF(130.4166F, 18F); xrLabel31.StylePriority.UseFont = false; xrLabel31.StylePriority.UseTextAlignment = false; xrLabel31.Text = "Member Id / File No. :"; xrLabel31.TextAlignment = TextAlignment.MiddleLeft; // // xrLabel16 // xrLabel16.DataBindings.AddRange(new[] { new XRBinding("Text", null, "SalesInvList.SINVNO")}); xrLabel16.Font = new Font("Tahoma", 9F, FontStyle.Bold, GraphicsUnit.Point, 0); xrLabel16.LocationFloat = new PointFloat(543.1246F, 6.00001F); xrLabel16.Name = "xrLabel16"; xrLabel16.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel16.SizeF = new SizeF(154.8755F, 18F); xrLabel16.StylePriority.UseFont = false; xrLabel16.StylePriority.UseTextAlignment = false; xrLabel16.Text = "xrLabel16"; xrLabel16.TextAlignment = TextAlignment.MiddleLeft; // // xrLabel17 // xrLabel17.DataBindings.AddRange(new[] { new XRBinding("Text", null, "SalesInvList.TRANDATE")}); xrLabel17.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0); xrLabel17.LocationFloat = new PointFloat(543.1246F, 30.00002F); xrLabel17.Name = "xrLabel17"; xrLabel17.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel17.SizeF = new SizeF(153.8754F, 18F); xrLabel17.StylePriority.UseFont = false; xrLabel17.StylePriority.UseTextAlignment = false; xrLabel17.Text = "xrLabel17"; xrLabel17.TextAlignment = TextAlignment.MiddleLeft; // // xrLabel10 // xrLabel10.Font = new Font("Tahoma", 9F, FontStyle.Bold); xrLabel10.LocationFloat = new PointFloat(625.0833F, 88.54166F); xrLabel10.Name = "xrLabel10"; xrLabel10.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel10.SizeF = new SizeF(72.91669F, 19.79166F); xrLabel10.StylePriority.UseFont = false; xrLabel10.StylePriority.UseTextAlignment = false; xrLabel10.Text = "Total"; xrLabel10.TextAlignment = TextAlignment.MiddleCenter; // // xrLabel9 // xrLabel9.Font = new Font("Tahoma", 9F, FontStyle.Bold); xrLabel9.LocationFloat = new PointFloat(568.1246F, 88.54166F); xrLabel9.Name = "xrLabel9"; xrLabel9.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel9.SizeF = new SizeF(52.16663F, 19.79166F); xrLabel9.StylePriority.UseFont = false; xrLabel9.StylePriority.UseTextAlignment = false; xrLabel9.Text = "Price"; xrLabel9.TextAlignment = TextAlignment.MiddleCenter; // // xrLabel6 // xrLabel6.Font = new Font("Tahoma", 9F, FontStyle.Bold); xrLabel6.LocationFloat = new PointFloat(4.083333F, 88.62505F); xrLabel6.Name = "xrLabel6"; xrLabel6.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel6.SizeF = new SizeF(26.33333F, 19.79166F); xrLabel6.StylePriority.UseFont = false; xrLabel6.StylePriority.UseTextAlignment = false; xrLabel6.Text = "S #"; xrLabel6.TextAlignment = TextAlignment.MiddleLeft; // // xrLabel8 // xrLabel8.Font = new Font("Tahoma", 9F, FontStyle.Bold); xrLabel8.LocationFloat = new PointFloat(518.1666F, 88.54166F); xrLabel8.Name = "xrLabel8"; xrLabel8.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel8.SizeF = new SizeF(43.75009F, 19.79166F); xrLabel8.StylePriority.UseFont = false; xrLabel8.StylePriority.UseTextAlignment = false; xrLabel8.Text = "Qty"; xrLabel8.TextAlignment = TextAlignment.MiddleCenter; // // xrLabel7 // xrLabel7.Font = new Font("Tahoma", 9F, FontStyle.Bold); xrLabel7.LocationFloat = new PointFloat(31.54163F, 88.62505F); xrLabel7.Name = "xrLabel7"; xrLabel7.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel7.SizeF = new SizeF(470.0833F, 19.79167F); xrLabel7.StylePriority.UseFont = false; xrLabel7.StylePriority.UseTextAlignment = false; xrLabel7.Text = "Item name"; xrLabel7.TextAlignment = TextAlignment.MiddleCenter; // // ReportFooter // ReportFooter.Controls.AddRange(new XRControl[] { xrLine3, xrLabel34, xrLabel33, patdisc, compdiscamt, xrLabel25, lbldiscount, xrLabel13, lblpatshare, xrLabel11, xrLabel24}); ReportFooter.Font = new Font("Tahoma", 9F); ReportFooter.HeightF = 81.25003F; ReportFooter.KeepTogether = true; ReportFooter.Name = "ReportFooter"; ReportFooter.StylePriority.UseFont = false; // // xrLine3 // xrLine3.LocationFloat = new PointFloat(3.25F, 0F); xrLine3.Name = "xrLine3"; xrLine3.SizeF = new SizeF(699.5833F, 2.083333F); // // xrLabel34 // xrLabel34.DataBindings.AddRange(new[] { new XRBinding("Text", null, "SalesInvList.CUSTOMERFIXDISC", "{0:#.00}")}); xrLabel34.Font = new Font("Tahoma", 9F, FontStyle.Bold, GraphicsUnit.Point, 0); xrLabel34.LocationFloat = new PointFloat(451.5833F, 20.83333F); xrLabel34.Name = "xrLabel34"; xrLabel34.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel34.SizeF = new SizeF(60.25003F, 18F); xrLabel34.StylePriority.UseFont = false; xrLabel34.StylePriority.UseTextAlignment = false; xrLabel34.Text = "xrLabel34"; xrLabel34.TextAlignment = TextAlignment.MiddleRight; // // xrLabel33 // xrLabel33.DataBindings.AddRange(new[] { new XRBinding("Text", null, "SalesInvList.CARDDISC", "{0:n2}")}); xrLabel33.Font = new Font("Tahoma", 9F, FontStyle.Bold, GraphicsUnit.Point, 0); xrLabel33.LocationFloat = new PointFloat(420.9164F, 41.41665F); xrLabel33.Name = "xrLabel33"; xrLabel33.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel33.SizeF = new SizeF(60.25003F, 18F); xrLabel33.StylePriority.UseFont = false; xrLabel33.StylePriority.UseTextAlignment = false; xrLabel33.Text = "xrLabel33"; xrLabel33.TextAlignment = TextAlignment.MiddleRight; // // patdisc // patdisc.LocationFloat = new PointFloat(598.75F, 41.62499F); patdisc.Name = "patdisc"; patdisc.Padding = new PaddingInfo(2, 2, 0, 0, 100F); patdisc.SizeF = new SizeF(95.37476F, 17.79165F); patdisc.StylePriority.UseTextAlignment = false; patdisc.TextAlignment = TextAlignment.MiddleRight; // // compdiscamt // compdiscamt.LocationFloat = new PointFloat(598.75F, 20.62499F); compdiscamt.Name = "compdiscamt"; compdiscamt.Padding = new PaddingInfo(2, 2, 0, 0, 100F); compdiscamt.SizeF = new SizeF(96.24994F, 21F); compdiscamt.StylePriority.UseTextAlignment = false; compdiscamt.TextAlignment = TextAlignment.MiddleRight; // // xrLabel25 // xrLabel25.DataBindings.AddRange(new[] { new XRBinding("Text", null, "SalesInvList.NETAMT", "{0:n2}")}); xrLabel25.LocationFloat = new PointFloat(598.7499F, 0F); xrLabel25.Name = "xrLabel25"; xrLabel25.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel25.SizeF = new SizeF(98.24994F, 20F); xrLabel25.StylePriority.UseTextAlignment = false; xrLabel25.Text = "xrLabel25"; xrLabel25.TextAlignment = TextAlignment.MiddleRight; // // lbldiscount // lbldiscount.Font = new Font("Tahoma", 9F, FontStyle.Bold); lbldiscount.LocationFloat = new PointFloat(511.8333F, 20.83333F); lbldiscount.Name = "lbldiscount"; lbldiscount.Padding = new PaddingInfo(2, 2, 0, 0, 100F); lbldiscount.SizeF = new SizeF(86.91678F, 21F); lbldiscount.StylePriority.UseFont = false; lbldiscount.StylePriority.UseTextAlignment = false; lbldiscount.Text = "% Discount : "; lbldiscount.TextAlignment = TextAlignment.MiddleLeft; // // xrLabel13 // xrLabel13.Font = new Font("Tahoma", 9F, FontStyle.Bold); xrLabel13.LocationFloat = new PointFloat(509.8332F, 60.41667F); xrLabel13.Name = "xrLabel13"; xrLabel13.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel13.SizeF = new SizeF(87.91675F, 18.79166F); xrLabel13.StylePriority.UseFont = false; xrLabel13.StylePriority.UseTextAlignment = false; xrLabel13.Text = "Net Amount :"; xrLabel13.TextAlignment = TextAlignment.MiddleLeft; // // lblpatshare // lblpatshare.Font = new Font("Tahoma", 9F, FontStyle.Bold); lblpatshare.LocationFloat = new PointFloat(481.9999F, 40.625F); lblpatshare.Name = "lblpatshare"; lblpatshare.Padding = new PaddingInfo(2, 2, 0, 0, 100F); lblpatshare.SizeF = new SizeF(116.7501F, 19.79167F); lblpatshare.StylePriority.UseFont = false; lblpatshare.StylePriority.UseTextAlignment = false; lblpatshare.Text = "% Patient Share :"; lblpatshare.TextAlignment = TextAlignment.MiddleLeft; // // xrLabel11 // xrLabel11.Font = new Font("Tahoma", 9F, FontStyle.Bold); xrLabel11.LocationFloat = new PointFloat(528.5831F, 0.2083461F); xrLabel11.Name = "xrLabel11"; xrLabel11.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel11.SizeF = new SizeF(70.16687F, 19.79166F); xrLabel11.StylePriority.UseFont = false; xrLabel11.StylePriority.UseTextAlignment = false; xrLabel11.Text = "Sub total :"; xrLabel11.TextAlignment = TextAlignment.MiddleLeft; // // xrLabel24 // xrLabel24.DataBindings.AddRange(new[] { new XRBinding("Text", null, "SalesInvList.CREDITAMT", "{0:#.00}")}); xrLabel24.Font = new Font("Tahoma", 9F, FontStyle.Bold, GraphicsUnit.Point, 0); xrLabel24.LocationFloat = new PointFloat(598.7499F, 59.54167F); xrLabel24.Name = "xrLabel24"; xrLabel24.Padding = new PaddingInfo(2, 2, 0, 0, 100F); xrLabel24.SizeF = new SizeF(94.24994F, 19.625F); xrLabel24.StylePriority.UseFont = false; xrLabel24.StylePriority.UseTextAlignment = false; xrSummary2.FormatString = "{0:n2}"; xrLabel24.Summary = xrSummary2; xrLabel24.Text = "xrLabel24"; xrLabel24.TextAlignment = TextAlignment.MiddleRight; // // xrCrossBandBox1 // xrCrossBandBox1.BorderWidth = 1F; xrCrossBandBox1.EndBand = PageHeader; xrCrossBandBox1.EndPointFloat = new PointFloat(2.083333F, 82.29166F); xrCrossBandBox1.LocationFloat = new PointFloat(2.083333F, 0F); xrCrossBandBox1.Name = "xrCrossBandBox1"; xrCrossBandBox1.StartBand = PageHeader; xrCrossBandBox1.StartPointFloat = new PointFloat(2.083333F, 0F); xrCrossBandBox1.WidthF = 704.1667F; // // RptSalesInsurance // Bands.AddRange(new Band[] { Detail, TopMargin, BottomMargin, PageHeader, ReportFooter}); CrossBandControls.AddRange(new XRCrossBandControl[] { xrCrossBandBox1}); Margins = new Margins(54, 66, 69, 25); PageHeight = 1169; PageWidth = 827; PaperKind = PaperKind.A4; ShowPrintMarginsWarning = false; SnapToGrid = false; Version = "14.1"; ((ISupportInitialize)(this)).EndInit(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { string resourceFileName = "TvListReport.resx"; System.Resources.ResourceManager resources = global::Resources.TvListReport.ResourceManager; this.components = new System.ComponentModel.Container(); DevExpress.DataAccess.Sql.TableQuery tableQuery1 = new DevExpress.DataAccess.Sql.TableQuery(); DevExpress.DataAccess.Sql.RelationInfo relationInfo1 = new DevExpress.DataAccess.Sql.RelationInfo(); DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo1 = new DevExpress.DataAccess.Sql.RelationColumnInfo(); DevExpress.DataAccess.Sql.RelationInfo relationInfo2 = new DevExpress.DataAccess.Sql.RelationInfo(); DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo2 = new DevExpress.DataAccess.Sql.RelationColumnInfo(); DevExpress.DataAccess.Sql.RelationInfo relationInfo3 = new DevExpress.DataAccess.Sql.RelationInfo(); DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo3 = new DevExpress.DataAccess.Sql.RelationColumnInfo(); DevExpress.DataAccess.Sql.RelationInfo relationInfo4 = new DevExpress.DataAccess.Sql.RelationInfo(); DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo4 = new DevExpress.DataAccess.Sql.RelationColumnInfo(); DevExpress.DataAccess.Sql.RelationInfo relationInfo5 = new DevExpress.DataAccess.Sql.RelationInfo(); DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo5 = new DevExpress.DataAccess.Sql.RelationColumnInfo(); DevExpress.DataAccess.Sql.TableInfo tableInfo1 = new DevExpress.DataAccess.Sql.TableInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo1 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo2 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo3 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.TableInfo tableInfo2 = new DevExpress.DataAccess.Sql.TableInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo4 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo5 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo6 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.TableInfo tableInfo3 = new DevExpress.DataAccess.Sql.TableInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo7 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo8 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo9 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo10 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.TableInfo tableInfo4 = new DevExpress.DataAccess.Sql.TableInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo11 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo12 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.TableInfo tableInfo5 = new DevExpress.DataAccess.Sql.TableInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo13 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo14 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo15 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo16 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo17 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo18 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.TableInfo tableInfo6 = new DevExpress.DataAccess.Sql.TableInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo19 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.DataAccess.Sql.ColumnInfo columnInfo20 = new DevExpress.DataAccess.Sql.ColumnInfo(); DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings(); this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(); this.Detail = new DevExpress.XtraReports.UI.DetailBand(); this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel(); this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand(); this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand(); this.Title = new DevExpress.XtraReports.UI.XRControlStyle(); this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle(); this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle(); this.DataField = new DevExpress.XtraReports.UI.XRControlStyle(); this.Sinav_id = new DevExpress.XtraReports.Parameters.Parameter(); this.radialMenu1 = new DevExpress.XtraBars.Ribbon.RadialMenu(this.components); this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand(); this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel16 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel(); ((System.ComponentModel.ISupportInitialize)(this.radialMenu1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); // // sqlDataSource1 // this.sqlDataSource1.ConnectionName = "Tu_SinavConnectionString"; this.sqlDataSource1.Name = "sqlDataSource1"; tableQuery1.Name = "ogr_sinav_derslik"; relationColumnInfo1.NestedKeyColumn = "derslik_id"; relationColumnInfo1.ParentKeyColumn = "derslik_id"; relationInfo1.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] { relationColumnInfo1}); relationInfo1.NestedTable = "Derslik"; relationInfo1.ParentTable = "ogr_sinav_derslik"; relationColumnInfo2.NestedKeyColumn = "ogr_no"; relationColumnInfo2.ParentKeyColumn = "ogr_no"; relationInfo2.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] { relationColumnInfo2}); relationInfo2.NestedTable = "Ogrenci"; relationInfo2.ParentTable = "ogr_sinav_derslik"; relationColumnInfo3.NestedKeyColumn = "bolum_id"; relationColumnInfo3.ParentKeyColumn = "bolum_id"; relationInfo3.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] { relationColumnInfo3}); relationInfo3.NestedTable = "Bolumler"; relationInfo3.ParentTable = "Ogrenci"; relationColumnInfo4.NestedKeyColumn = "Sinav_id"; relationColumnInfo4.ParentKeyColumn = "Sinav_id"; relationInfo4.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] { relationColumnInfo4}); relationInfo4.NestedTable = "Sinavlar"; relationInfo4.ParentTable = "ogr_sinav_derslik"; relationColumnInfo5.NestedKeyColumn = "ders_id"; relationColumnInfo5.ParentKeyColumn = "ders_id"; relationInfo5.KeyColumns.AddRange(new DevExpress.DataAccess.Sql.RelationColumnInfo[] { relationColumnInfo5}); relationInfo5.NestedTable = "Dersler"; relationInfo5.ParentTable = "Sinavlar"; tableQuery1.Relations.AddRange(new DevExpress.DataAccess.Sql.RelationInfo[] { relationInfo1, relationInfo2, relationInfo3, relationInfo4, relationInfo5}); tableInfo1.Name = "ogr_sinav_derslik"; columnInfo1.Name = "ogr_no"; columnInfo2.Name = "Sinav_id"; columnInfo3.Name = "derslik_id"; tableInfo1.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] { columnInfo1, columnInfo2, columnInfo3}); tableInfo2.Name = "Derslik"; columnInfo4.Alias = "Derslik_derslik_id"; columnInfo4.Name = "derslik_id"; columnInfo5.Name = "derslik_adi"; columnInfo6.Name = "derslik_kapasite"; tableInfo2.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] { columnInfo4, columnInfo5, columnInfo6}); tableInfo3.Name = "Ogrenci"; columnInfo7.Alias = "Ogrenci_ogr_no"; columnInfo7.Name = "ogr_no"; columnInfo8.Name = "ogr_adi"; columnInfo9.Name = "ogr_soyadi"; columnInfo10.Name = "bolum_id"; tableInfo3.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] { columnInfo7, columnInfo8, columnInfo9, columnInfo10}); tableInfo4.Name = "Bolumler"; columnInfo11.Alias = "Bolumler_bolum_id"; columnInfo11.Name = "bolum_id"; columnInfo12.Name = "bolum_adi"; tableInfo4.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] { columnInfo11, columnInfo12}); tableInfo5.Name = "Sinavlar"; columnInfo13.Alias = "Sinavlar_Sinav_id"; columnInfo13.Name = "Sinav_id"; columnInfo14.Name = "ders_id"; columnInfo15.Name = "tarih"; columnInfo16.Name = "sinav_tur"; columnInfo17.Name = "yapilis_tur"; columnInfo18.Name = "sinav_saati"; tableInfo5.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] { columnInfo13, columnInfo14, columnInfo15, columnInfo16, columnInfo17, columnInfo18}); tableInfo6.Name = "Dersler"; columnInfo19.Alias = "Dersler_ders_id"; columnInfo19.Name = "ders_id"; columnInfo20.Name = "ders_adi"; tableInfo6.SelectedColumns.AddRange(new DevExpress.DataAccess.Sql.ColumnInfo[] { columnInfo19, columnInfo20}); tableQuery1.Tables.AddRange(new DevExpress.DataAccess.Sql.TableInfo[] { tableInfo1, tableInfo2, tableInfo3, tableInfo4, tableInfo5, tableInfo6}); this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] { tableQuery1}); this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable"); // // Detail // this.Detail.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrLabel2, this.xrLabel1, this.xrLabel3, this.xrLabel4}); this.Detail.Font = new System.Drawing.Font("Times New Roman", 18F); this.Detail.HeightF = 39.91667F; this.Detail.MultiColumn.ColumnCount = 3; this.Detail.MultiColumn.ColumnSpacing = 2F; this.Detail.MultiColumn.ColumnWidth = 570F; this.Detail.MultiColumn.Mode = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnWidth; this.Detail.Name = "Detail"; this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.Detail.StylePriority.UseBorders = false; this.Detail.StylePriority.UseFont = false; this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrLabel2 // this.xrLabel2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrLabel2.CanGrow = false; this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.ogr_no")}); this.xrLabel2.Font = new System.Drawing.Font("Times New Roman", 18F); this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(10F, 0F); this.xrLabel2.Name = "xrLabel2"; this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel2.SizeF = new System.Drawing.SizeF(147.3188F, 39.91667F); this.xrLabel2.StylePriority.UseBorders = false; this.xrLabel2.StylePriority.UseFont = false; this.xrLabel2.StylePriority.UsePadding = false; this.xrLabel2.StylePriority.UseTextAlignment = false; this.xrLabel2.Text = "xrLabel2"; this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrLabel1 // this.xrLabel1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid; this.xrLabel1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrLabel1.CanGrow = false; this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.derslik_adi")}); this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 18F); this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(453.1249F, 0F); this.xrLabel1.Name = "xrLabel1"; this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel1.SizeF = new System.Drawing.SizeF(118.125F, 39.91667F); this.xrLabel1.StylePriority.UseBorderDashStyle = false; this.xrLabel1.StylePriority.UseBorders = false; this.xrLabel1.StylePriority.UseFont = false; this.xrLabel1.Text = "xrLabel1"; // // xrLabel3 // this.xrLabel3.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid; this.xrLabel3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrLabel3.CanGrow = false; this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.ogr_adi")}); this.xrLabel3.Font = new System.Drawing.Font("Times New Roman", 18F); this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(157.3187F, 0F); this.xrLabel3.Name = "xrLabel3"; this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel3.SizeF = new System.Drawing.SizeF(140.2303F, 39.91667F); this.xrLabel3.StylePriority.UseBorderDashStyle = false; this.xrLabel3.StylePriority.UseBorders = false; this.xrLabel3.StylePriority.UseFont = false; this.xrLabel3.StylePriority.UsePadding = false; this.xrLabel3.StylePriority.UseTextAlignment = false; this.xrLabel3.Text = "xrLabel3"; this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrLabel4 // this.xrLabel4.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrLabel4.CanGrow = false; this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.ogr_soyadi")}); this.xrLabel4.Font = new System.Drawing.Font("Times New Roman", 18F); this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(297.5491F, 0F); this.xrLabel4.Name = "xrLabel4"; this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel4.SizeF = new System.Drawing.SizeF(155.5759F, 39.91667F); this.xrLabel4.StylePriority.UseBorders = false; this.xrLabel4.StylePriority.UseFont = false; this.xrLabel4.StylePriority.UsePadding = false; this.xrLabel4.StylePriority.UseTextAlignment = false; this.xrLabel4.Text = "xrLabel4"; this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // TopMargin // this.TopMargin.HeightF = 0F; this.TopMargin.Name = "TopMargin"; this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // BottomMargin // this.BottomMargin.HeightF = 0F; this.BottomMargin.Name = "BottomMargin"; this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // Title // this.Title.BackColor = System.Drawing.Color.Transparent; this.Title.BorderColor = System.Drawing.Color.Black; this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None; this.Title.BorderWidth = 1F; this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold); this.Title.ForeColor = System.Drawing.Color.Maroon; this.Title.Name = "Title"; // // FieldCaption // this.FieldCaption.BackColor = System.Drawing.Color.Transparent; this.FieldCaption.BorderColor = System.Drawing.Color.Black; this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None; this.FieldCaption.BorderWidth = 1F; this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); this.FieldCaption.ForeColor = System.Drawing.Color.Maroon; this.FieldCaption.Name = "FieldCaption"; // // PageInfo // this.PageInfo.BackColor = System.Drawing.Color.Transparent; this.PageInfo.BorderColor = System.Drawing.Color.Black; this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None; this.PageInfo.BorderWidth = 1F; this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold); this.PageInfo.ForeColor = System.Drawing.Color.Black; this.PageInfo.Name = "PageInfo"; // // DataField // this.DataField.BackColor = System.Drawing.Color.Transparent; this.DataField.BorderColor = System.Drawing.Color.Black; this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None; this.DataField.BorderWidth = 1F; this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F); this.DataField.ForeColor = System.Drawing.Color.Black; this.DataField.Name = "DataField"; this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); // // Sinav_id // this.Sinav_id.Description = "Sinav_id"; dynamicListLookUpSettings1.DataAdapter = null; dynamicListLookUpSettings1.DataMember = null; dynamicListLookUpSettings1.DataSource = this.sqlDataSource1; dynamicListLookUpSettings1.DisplayMember = "ogr_sinav_derslik.Sinav_id"; dynamicListLookUpSettings1.FilterString = null; dynamicListLookUpSettings1.ValueMember = null; this.Sinav_id.LookUpSettings = dynamicListLookUpSettings1; this.Sinav_id.Name = "Sinav_id"; this.Sinav_id.Type = typeof(int); this.Sinav_id.ValueInfo = "0"; this.Sinav_id.Visible = false; // // radialMenu1 // this.radialMenu1.Name = "radialMenu1"; // // PageHeader // this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrLabel17, this.xrLabel16, this.xrLabel15, this.xrLabel14, this.xrLabel8, this.xrLabel7, this.xrLabel6, this.xrLabel5, this.xrLabel9, this.xrLabel13, this.xrLabel12, this.xrLabel11, this.xrLabel10}); this.PageHeader.HeightF = 100F; this.PageHeader.Name = "PageHeader"; // // xrLabel17 // this.xrLabel17.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrLabel17.CanGrow = false; this.xrLabel17.Font = new System.Drawing.Font("Times New Roman", 16F); this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(1442.139F, 60.08333F); this.xrLabel17.Name = "xrLabel17"; this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel17.SizeF = new System.Drawing.SizeF(155.5757F, 39.91666F); this.xrLabel17.StylePriority.UseBorders = false; this.xrLabel17.StylePriority.UseFont = false; this.xrLabel17.StylePriority.UsePadding = false; this.xrLabel17.StylePriority.UseTextAlignment = false; this.xrLabel17.Text = "Soyadı"; this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrLabel16 // this.xrLabel16.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid; this.xrLabel16.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrLabel16.CanGrow = false; this.xrLabel16.Font = new System.Drawing.Font("Times New Roman", 16F); this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(1302.495F, 60.08333F); this.xrLabel16.Name = "xrLabel16"; this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel16.SizeF = new System.Drawing.SizeF(139.6445F, 39.91666F); this.xrLabel16.StylePriority.UseBorderDashStyle = false; this.xrLabel16.StylePriority.UseBorders = false; this.xrLabel16.StylePriority.UseFont = false; this.xrLabel16.StylePriority.UsePadding = false; this.xrLabel16.StylePriority.UseTextAlignment = false; this.xrLabel16.Text = "Adı"; this.xrLabel16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrLabel15 // this.xrLabel15.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrLabel15.CanGrow = false; this.xrLabel15.Font = new System.Drawing.Font("Times New Roman", 13F); this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(1154.363F, 60.08333F); this.xrLabel15.Name = "xrLabel15"; this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel15.SizeF = new System.Drawing.SizeF(148.1322F, 39.91667F); this.xrLabel15.StylePriority.UseBorders = false; this.xrLabel15.StylePriority.UseFont = false; this.xrLabel15.StylePriority.UsePadding = false; this.xrLabel15.StylePriority.UseTextAlignment = false; this.xrLabel15.Text = "Öğrenci Numarası"; this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrLabel14 // this.xrLabel14.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid; this.xrLabel14.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrLabel14.CanGrow = false; this.xrLabel14.Font = new System.Drawing.Font("Times New Roman", 16F); this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(1597.715F, 60.08333F); this.xrLabel14.Name = "xrLabel14"; this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel14.SizeF = new System.Drawing.SizeF(118.125F, 39.91666F); this.xrLabel14.StylePriority.UseBorderDashStyle = false; this.xrLabel14.StylePriority.UseBorders = false; this.xrLabel14.StylePriority.UseFont = false; this.xrLabel14.Text = "Derslik"; // // xrLabel8 // this.xrLabel8.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid; this.xrLabel8.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrLabel8.CanGrow = false; this.xrLabel8.Font = new System.Drawing.Font("Times New Roman", 16F); this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(453.1251F, 60.08333F); this.xrLabel8.Name = "xrLabel8"; this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel8.SizeF = new System.Drawing.SizeF(118.125F, 39.91667F); this.xrLabel8.StylePriority.UseBorderDashStyle = false; this.xrLabel8.StylePriority.UseBorders = false; this.xrLabel8.StylePriority.UseFont = false; this.xrLabel8.Text = "Derslik"; // // xrLabel7 // this.xrLabel7.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrLabel7.CanGrow = false; this.xrLabel7.Font = new System.Drawing.Font("Times New Roman", 13F); this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(10F, 60.08333F); this.xrLabel7.Name = "xrLabel7"; this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel7.SizeF = new System.Drawing.SizeF(147.3188F, 39.91667F); this.xrLabel7.StylePriority.UseBorders = false; this.xrLabel7.StylePriority.UseFont = false; this.xrLabel7.StylePriority.UsePadding = false; this.xrLabel7.StylePriority.UseTextAlignment = false; this.xrLabel7.Text = "Öğrenci Numarası"; this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrLabel6 // this.xrLabel6.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid; this.xrLabel6.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrLabel6.CanGrow = false; this.xrLabel6.Font = new System.Drawing.Font("Times New Roman", 16F); this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(157.3186F, 60.08333F); this.xrLabel6.Name = "xrLabel6"; this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel6.SizeF = new System.Drawing.SizeF(140.2303F, 39.91667F); this.xrLabel6.StylePriority.UseBorderDashStyle = false; this.xrLabel6.StylePriority.UseBorders = false; this.xrLabel6.StylePriority.UseFont = false; this.xrLabel6.StylePriority.UsePadding = false; this.xrLabel6.StylePriority.UseTextAlignment = false; this.xrLabel6.Text = "Adı"; this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrLabel5 // this.xrLabel5.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrLabel5.CanGrow = false; this.xrLabel5.Font = new System.Drawing.Font("Times New Roman", 16F); this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(297.5491F, 60.08333F); this.xrLabel5.Name = "xrLabel5"; this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel5.SizeF = new System.Drawing.SizeF(155.5759F, 39.91667F); this.xrLabel5.StylePriority.UseBorders = false; this.xrLabel5.StylePriority.UseFont = false; this.xrLabel5.StylePriority.UsePadding = false; this.xrLabel5.StylePriority.UseTextAlignment = false; this.xrLabel5.Text = "Soyadı"; this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrLabel9 // this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "ogr_sinav_derslik.ders_adi")}); this.xrLabel9.Font = new System.Drawing.Font("Times New Roman", 25F); this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(0F, 2.094022F); this.xrLabel9.Name = "xrLabel9"; this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel9.SizeF = new System.Drawing.SizeF(453.1249F, 47.02353F); this.xrLabel9.StylePriority.UseFont = false; // // xrLabel13 // this.xrLabel13.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrLabel13.CanGrow = false; this.xrLabel13.Font = new System.Drawing.Font("Times New Roman", 16F); this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(870.3422F, 60.08333F); this.xrLabel13.Name = "xrLabel13"; this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel13.SizeF = new System.Drawing.SizeF(155.5759F, 39.91667F); this.xrLabel13.StylePriority.UseBorders = false; this.xrLabel13.StylePriority.UseFont = false; this.xrLabel13.StylePriority.UsePadding = false; this.xrLabel13.StylePriority.UseTextAlignment = false; this.xrLabel13.Text = "Soyadı"; this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrLabel12 // this.xrLabel12.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid; this.xrLabel12.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrLabel12.CanGrow = false; this.xrLabel12.Font = new System.Drawing.Font("Times New Roman", 16F); this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(730.1115F, 60.08333F); this.xrLabel12.Name = "xrLabel12"; this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel12.SizeF = new System.Drawing.SizeF(140.2303F, 39.91667F); this.xrLabel12.StylePriority.UseBorderDashStyle = false; this.xrLabel12.StylePriority.UseBorders = false; this.xrLabel12.StylePriority.UseFont = false; this.xrLabel12.StylePriority.UsePadding = false; this.xrLabel12.StylePriority.UseTextAlignment = false; this.xrLabel12.Text = "Adı"; this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrLabel11 // this.xrLabel11.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrLabel11.CanGrow = false; this.xrLabel11.Font = new System.Drawing.Font("Times New Roman", 13F); this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(582.793F, 60.08333F); this.xrLabel11.Name = "xrLabel11"; this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel11.SizeF = new System.Drawing.SizeF(147.3188F, 39.91667F); this.xrLabel11.StylePriority.UseBorders = false; this.xrLabel11.StylePriority.UseFont = false; this.xrLabel11.StylePriority.UsePadding = false; this.xrLabel11.StylePriority.UseTextAlignment = false; this.xrLabel11.Text = "Öğrenci Numarası"; this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrLabel10 // this.xrLabel10.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid; this.xrLabel10.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrLabel10.CanGrow = false; this.xrLabel10.Font = new System.Drawing.Font("Times New Roman", 16F); this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(1025.918F, 60.08333F); this.xrLabel10.Name = "xrLabel10"; this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel10.SizeF = new System.Drawing.SizeF(118.125F, 39.91667F); this.xrLabel10.StylePriority.UseBorderDashStyle = false; this.xrLabel10.StylePriority.UseBorders = false; this.xrLabel10.StylePriority.UseFont = false; this.xrLabel10.Text = "Derslik"; // // TvListReportcs // this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { this.Detail, this.TopMargin, this.BottomMargin, this.PageHeader}); this.ComponentStorage.Add(this.sqlDataSource1); this.DataMember = "ogr_sinav_derslik"; this.DataSource = this.sqlDataSource1; this.ExportOptions.Image.ExportMode = DevExpress.XtraPrinting.ImageExportMode.DifferentFiles; this.ExportOptions.Xls.ExportMode = DevExpress.XtraPrinting.XlsExportMode.DifferentFiles; this.FilterString = "[Sinav_id] = ?Sinav_id"; this.Margins = new System.Drawing.Printing.Margins(100, 100, 0, 0); this.PageHeight = 1080; this.PageWidth = 1920; this.PaperKind = System.Drawing.Printing.PaperKind.Custom; this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] { this.Sinav_id}); this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] { this.Title, this.FieldCaption, this.PageInfo, this.DataField}); this.Version = "14.2"; ((System.ComponentModel.ISupportInitialize)(this.radialMenu1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); DevExpress.DataAccess.Sql.StoredProcQuery storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery(); DevExpress.DataAccess.Sql.QueryParameter queryParameter1 = new DevExpress.DataAccess.Sql.QueryParameter(); DevExpress.DataAccess.Sql.QueryParameter queryParameter2 = new DevExpress.DataAccess.Sql.QueryParameter(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RptReporteAsistencia)); this.Detail = new DevExpress.XtraReports.UI.DetailBand(); this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel20 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel22 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel23 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel24 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel25 = new DevExpress.XtraReports.UI.XRLabel(); this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand(); this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand(); this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components); this.groupHeaderBand2 = new DevExpress.XtraReports.UI.GroupHeaderBand(); this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel(); this.pageFooterBand1 = new DevExpress.XtraReports.UI.PageFooterBand(); this.xrLine2 = new DevExpress.XtraReports.UI.XRLine(); this.xrPageInfo1 = new DevExpress.XtraReports.UI.XRPageInfo(); this.xrPageInfo2 = new DevExpress.XtraReports.UI.XRPageInfo(); this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand(); this.Title = new DevExpress.XtraReports.UI.XRControlStyle(); this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle(); this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle(); this.DataField = new DevExpress.XtraReports.UI.XRControlStyle(); this.pEvento = new DevExpress.XtraReports.Parameters.Parameter(); this.pTipo = new DevExpress.XtraReports.Parameters.Parameter(); this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand(); this.xrLine3 = new DevExpress.XtraReports.UI.XRLine(); this.xrLine4 = new DevExpress.XtraReports.UI.XRLine(); this.xrLabel27 = new DevExpress.XtraReports.UI.XRLabel(); ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); // // Detail // this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrLabel15, this.xrLabel17, this.xrLabel19, this.xrLabel20, this.xrLabel22, this.xrLabel23, this.xrLabel24, this.xrLabel25}); this.Detail.HeightF = 23F; this.Detail.Name = "Detail"; this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.Detail.StyleName = "DataField"; this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrLabel15 // this.xrLabel15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.Confirmado")}); this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(616.8115F, 0F); this.xrLabel15.Name = "xrLabel15"; this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel15.SizeF = new System.Drawing.SizeF(84.2738F, 15F); this.xrLabel15.StylePriority.UseTextAlignment = false; this.xrLabel15.Text = "xrLabel15"; this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrLabel17 // this.xrLabel17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.Estado")}); this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(701.0853F, 0F); this.xrLabel17.Name = "xrLabel17"; this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel17.SizeF = new System.Drawing.SizeF(87.28574F, 15F); this.xrLabel17.StylePriority.UseTextAlignment = false; this.xrLabel17.Text = "xrLabel17"; this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrLabel19 // this.xrLabel19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.FechaAsistencia", "{0:H:mm:ss}")}); this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(502.3314F, 0F); this.xrLabel19.Name = "xrLabel19"; this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel19.SizeF = new System.Drawing.SizeF(114.4802F, 15F); this.xrLabel19.StylePriority.UseTextAlignment = false; this.xrLabel19.Text = "xrLabel19"; this.xrLabel19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrLabel20 // this.xrLabel20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.IdAsociado")}); this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(6.000002F, 0F); this.xrLabel20.Name = "xrLabel20"; this.xrLabel20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel20.SizeF = new System.Drawing.SizeF(71.17064F, 15F); this.xrLabel20.Text = "xrLabel20"; // // xrLabel22 // this.xrLabel22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.Nombre")}); this.xrLabel22.LocationFloat = new DevExpress.Utils.PointFloat(77.17071F, 0F); this.xrLabel22.Name = "xrLabel22"; this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel22.SizeF = new System.Drawing.SizeF(241.8293F, 15F); this.xrLabel22.Text = "xrLabel22"; // // xrLabel23 // this.xrLabel23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.NumeroCedula")}); this.xrLabel23.LocationFloat = new DevExpress.Utils.PointFloat(319.0001F, 0F); this.xrLabel23.Name = "xrLabel23"; this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel23.SizeF = new System.Drawing.SizeF(93.54164F, 15F); this.xrLabel23.StylePriority.UseTextAlignment = false; this.xrLabel23.Text = "xrLabel23"; this.xrLabel23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrLabel24 // this.xrLabel24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.Presente")}); this.xrLabel24.LocationFloat = new DevExpress.Utils.PointFloat(788.371F, 0F); this.xrLabel24.Name = "xrLabel24"; this.xrLabel24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel24.SizeF = new System.Drawing.SizeF(61.62891F, 15F); this.xrLabel24.StylePriority.UseTextAlignment = false; this.xrLabel24.Text = "xrLabel24"; this.xrLabel24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrLabel25 // this.xrLabel25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sp_Reportes_Read.Telefono")}); this.xrLabel25.LocationFloat = new DevExpress.Utils.PointFloat(412.5417F, 0F); this.xrLabel25.Name = "xrLabel25"; this.xrLabel25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel25.SizeF = new System.Drawing.SizeF(89.78967F, 15F); this.xrLabel25.StylePriority.UseTextAlignment = false; this.xrLabel25.Text = "xrLabel25"; this.xrLabel25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // TopMargin // this.TopMargin.HeightF = 71.875F; this.TopMargin.Name = "TopMargin"; this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // BottomMargin // this.BottomMargin.HeightF = 100F; this.BottomMargin.Name = "BottomMargin"; this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // sqlDataSource1 // this.sqlDataSource1.ConnectionName = "DBEventos"; this.sqlDataSource1.Name = "sqlDataSource1"; storedProcQuery1.Name = "sp_Reportes_Read"; queryParameter1.Name = "@IdEvento"; queryParameter1.Type = typeof(DevExpress.DataAccess.Expression); queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.pEvento]", typeof(int)); queryParameter2.Name = "@Tipo"; queryParameter2.Type = typeof(DevExpress.DataAccess.Expression); queryParameter2.Value = new DevExpress.DataAccess.Expression("[Parameters.pTipo]", typeof(string)); storedProcQuery1.Parameters.Add(queryParameter1); storedProcQuery1.Parameters.Add(queryParameter2); storedProcQuery1.StoredProcName = "sp_Reportes_Read"; this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] { storedProcQuery1}); this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable"); // // groupHeaderBand2 // this.groupHeaderBand2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrLabel3, this.xrLabel5, this.xrLabel7, this.xrLabel8, this.xrLabel10, this.xrLabel11, this.xrLabel12, this.xrLabel13}); this.groupHeaderBand2.HeightF = 39.37499F; this.groupHeaderBand2.Name = "groupHeaderBand2"; this.groupHeaderBand2.StyleName = "FieldCaption"; // // xrLabel3 // this.xrLabel3.BackColor = System.Drawing.Color.Blue; this.xrLabel3.ForeColor = System.Drawing.Color.White; this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(616.8114F, 5.999994F); this.xrLabel3.Name = "xrLabel3"; this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel3.SizeF = new System.Drawing.SizeF(84.2738F, 20F); this.xrLabel3.StylePriority.UseBackColor = false; this.xrLabel3.StylePriority.UseForeColor = false; this.xrLabel3.StylePriority.UseTextAlignment = false; this.xrLabel3.Text = "Confirmado"; this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrLabel5 // this.xrLabel5.BackColor = System.Drawing.Color.Blue; this.xrLabel5.ForeColor = System.Drawing.Color.White; this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(701.0852F, 5.999994F); this.xrLabel5.Name = "xrLabel5"; this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel5.SizeF = new System.Drawing.SizeF(87.28574F, 20F); this.xrLabel5.StylePriority.UseBackColor = false; this.xrLabel5.StylePriority.UseForeColor = false; this.xrLabel5.StylePriority.UseTextAlignment = false; this.xrLabel5.Text = "Estado"; this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrLabel7 // this.xrLabel7.BackColor = System.Drawing.Color.Blue; this.xrLabel7.ForeColor = System.Drawing.Color.White; this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(502.3314F, 5.999994F); this.xrLabel7.Name = "xrLabel7"; this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel7.SizeF = new System.Drawing.SizeF(114.4801F, 20F); this.xrLabel7.StylePriority.UseBackColor = false; this.xrLabel7.StylePriority.UseForeColor = false; this.xrLabel7.StylePriority.UseTextAlignment = false; this.xrLabel7.Text = "Hora Asistencia"; this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrLabel8 // this.xrLabel8.BackColor = System.Drawing.Color.Blue; this.xrLabel8.ForeColor = System.Drawing.Color.White; this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(6.000002F, 5.999994F); this.xrLabel8.Name = "xrLabel8"; this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel8.SizeF = new System.Drawing.SizeF(71.17064F, 20F); this.xrLabel8.StylePriority.UseBackColor = false; this.xrLabel8.StylePriority.UseForeColor = false; this.xrLabel8.StylePriority.UseTextAlignment = false; this.xrLabel8.Text = "Id"; this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrLabel10 // this.xrLabel10.BackColor = System.Drawing.Color.Blue; this.xrLabel10.ForeColor = System.Drawing.Color.White; this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(77.17064F, 6.00001F); this.xrLabel10.Name = "xrLabel10"; this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel10.SizeF = new System.Drawing.SizeF(241.8294F, 20F); this.xrLabel10.StylePriority.UseBackColor = false; this.xrLabel10.StylePriority.UseForeColor = false; this.xrLabel10.StylePriority.UseTextAlignment = false; this.xrLabel10.Text = "Nombre"; this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrLabel11 // this.xrLabel11.BackColor = System.Drawing.Color.Blue; this.xrLabel11.ForeColor = System.Drawing.Color.White; this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(319F, 5.999994F); this.xrLabel11.Name = "xrLabel11"; this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel11.SizeF = new System.Drawing.SizeF(93.54164F, 20F); this.xrLabel11.StylePriority.UseBackColor = false; this.xrLabel11.StylePriority.UseForeColor = false; this.xrLabel11.StylePriority.UseTextAlignment = false; this.xrLabel11.Text = "Cédula"; this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrLabel12 // this.xrLabel12.BackColor = System.Drawing.Color.Blue; this.xrLabel12.ForeColor = System.Drawing.Color.White; this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(788.371F, 5.999994F); this.xrLabel12.Name = "xrLabel12"; this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel12.SizeF = new System.Drawing.SizeF(61.62897F, 20F); this.xrLabel12.StylePriority.UseBackColor = false; this.xrLabel12.StylePriority.UseForeColor = false; this.xrLabel12.StylePriority.UseTextAlignment = false; this.xrLabel12.Text = "Presente"; this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrLabel13 // this.xrLabel13.BackColor = System.Drawing.Color.Blue; this.xrLabel13.ForeColor = System.Drawing.Color.White; this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(412.5417F, 6.00001F); this.xrLabel13.Name = "xrLabel13"; this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel13.SizeF = new System.Drawing.SizeF(89.78967F, 20F); this.xrLabel13.StylePriority.UseBackColor = false; this.xrLabel13.StylePriority.UseForeColor = false; this.xrLabel13.StylePriority.UseTextAlignment = false; this.xrLabel13.Text = "Teléfono"; this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // pageFooterBand1 // this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrLine2, this.xrPageInfo1, this.xrPageInfo2}); this.pageFooterBand1.HeightF = 31F; this.pageFooterBand1.Name = "pageFooterBand1"; // // xrLine2 // this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(6.000002F, 0F); this.xrLine2.Name = "xrLine2"; this.xrLine2.SizeF = new System.Drawing.SizeF(844F, 8F); // // xrPageInfo1 // this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 8F); this.xrPageInfo1.Name = "xrPageInfo1"; this.xrPageInfo1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrPageInfo1.PageInfo = DevExpress.XtraPrinting.PageInfo.DateTime; this.xrPageInfo1.SizeF = new System.Drawing.SizeF(313F, 23F); this.xrPageInfo1.StyleName = "PageInfo"; // // xrPageInfo2 // this.xrPageInfo2.Format = "Página {0} de {1}"; this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(536.9999F, 8F); this.xrPageInfo2.Name = "xrPageInfo2"; this.xrPageInfo2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrPageInfo2.SizeF = new System.Drawing.SizeF(313F, 23F); this.xrPageInfo2.StyleName = "PageInfo"; this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; // // reportHeaderBand1 // this.reportHeaderBand1.HeightF = 78.08336F; this.reportHeaderBand1.Name = "reportHeaderBand1"; // // Title // this.Title.BackColor = System.Drawing.Color.Transparent; this.Title.BorderColor = System.Drawing.Color.Black; this.Title.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid; this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None; this.Title.BorderWidth = 1F; this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)))); this.Title.ForeColor = System.Drawing.Color.Navy; this.Title.Name = "Title"; // // FieldCaption // this.FieldCaption.BackColor = System.Drawing.Color.Transparent; this.FieldCaption.BorderColor = System.Drawing.Color.Black; this.FieldCaption.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid; this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None; this.FieldCaption.BorderWidth = 1F; this.FieldCaption.Font = new System.Drawing.Font("Times New Roman", 11F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)))); this.FieldCaption.ForeColor = System.Drawing.Color.Navy; this.FieldCaption.Name = "FieldCaption"; // // PageInfo // this.PageInfo.BackColor = System.Drawing.Color.Transparent; this.PageInfo.BorderColor = System.Drawing.Color.Black; this.PageInfo.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid; this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None; this.PageInfo.BorderWidth = 1F; this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)))); this.PageInfo.ForeColor = System.Drawing.Color.Navy; this.PageInfo.Name = "PageInfo"; // // DataField // this.DataField.BackColor = System.Drawing.Color.Transparent; this.DataField.BorderColor = System.Drawing.Color.Black; this.DataField.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid; this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None; this.DataField.BorderWidth = 1F; this.DataField.Font = new System.Drawing.Font("Arial", 8F); this.DataField.ForeColor = System.Drawing.Color.Black; this.DataField.Name = "DataField"; // // pEvento // this.pEvento.Description = "Seleccione un evento"; this.pEvento.Name = "pEvento"; this.pEvento.Type = typeof(int); this.pEvento.ValueInfo = "0"; this.pEvento.Visible = false; // // pTipo // this.pTipo.Description = "Seleccione un tipo"; this.pTipo.Name = "pTipo"; this.pTipo.Visible = false; // // PageHeader // this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrLine3, this.xrLine4, this.xrLabel27}); this.PageHeader.HeightF = 60.41667F; this.PageHeader.Name = "PageHeader"; // // xrLine3 // this.xrLine3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 58.41667F); this.xrLine3.Name = "xrLine3"; this.xrLine3.SizeF = new System.Drawing.SizeF(843.9999F, 2F); // // xrLine4 // this.xrLine4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); this.xrLine4.Name = "xrLine4"; this.xrLine4.SizeF = new System.Drawing.SizeF(843.9999F, 16.00001F); // // xrLabel27 // this.xrLabel27.BackColor = System.Drawing.Color.Blue; this.xrLabel27.Font = new System.Drawing.Font("Times New Roman", 20F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)))); this.xrLabel27.ForeColor = System.Drawing.Color.White; this.xrLabel27.LocationFloat = new DevExpress.Utils.PointFloat(0F, 16.00001F); this.xrLabel27.Name = "xrLabel27"; this.xrLabel27.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel27.SizeF = new System.Drawing.SizeF(843.9999F, 34.16666F); this.xrLabel27.StyleName = "Title"; this.xrLabel27.StylePriority.UseBackColor = false; this.xrLabel27.StylePriority.UseFont = false; this.xrLabel27.StylePriority.UseForeColor = false; this.xrLabel27.StylePriority.UseTextAlignment = false; this.xrLabel27.Text = "REPORTE DE ASISTENCIA"; this.xrLabel27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // RptReporteAsistencia // this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { this.Detail, this.TopMargin, this.BottomMargin, this.groupHeaderBand2, this.pageFooterBand1, this.reportHeaderBand1, this.PageHeader}); this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] { this.sqlDataSource1}); this.DataMember = "sp_Reportes_Read"; this.DataSource = this.sqlDataSource1; this.Margins = new System.Drawing.Printing.Margins(0, 0, 72, 100); this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] { this.pEvento, this.pTipo}); this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] { this.Title, this.FieldCaption, this.PageInfo, this.DataField}); this.Version = "15.2"; ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { string resourceFileName = "rp_austfeed_BaoCaoNVKyHDThoiVu.resx"; System.Resources.ResourceManager resources = global::Resources.rp_austfeed_BaoCaoNVKyHDThoiVu.ResourceManager; this.Detail = new DevExpress.XtraReports.UI.DetailBand(); this.xrTable2 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell(); this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand(); this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand(); this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand(); this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox(); this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand(); this.xrTable1 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell(); this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand(); this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel(); ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); // // Detail // this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable2 }); this.Detail.HeightF = 37.29166F; this.Detail.Name = "Detail"; this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrTable2 // this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 12F); this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(9.536743E-05F, 0F); this.xrTable2.Name = "xrTable2"; this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow2 }); this.xrTable2.SizeF = new System.Drawing.SizeF(968.9999F, 37.29166F); this.xrTable2.StylePriority.UseBorders = false; this.xrTable2.StylePriority.UseFont = false; this.xrTable2.StylePriority.UseTextAlignment = false; this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrTableRow2 // this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell7, this.xrTableCell8, this.xrTableCell9, this.xrTableCell10, this.xrTableCell11, this.xrTableCell12 }); this.xrTableRow2.Name = "xrTableRow2"; this.xrTableRow2.Weight = 1D; // // xrTableCell7 // this.xrTableCell7.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrTableCell7.Name = "xrTableCell7"; this.xrTableCell7.StylePriority.UseFont = false; this.xrTableCell7.StylePriority.UseTextAlignment = false; this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell7.Weight = 0.32541128637820549D; this.xrTableCell7.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrTableCell7_BeforePrint); // // xrTableCell8 // this.xrTableCell8.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrTableCell8.Name = "xrTableCell8"; this.xrTableCell8.StylePriority.UseFont = false; this.xrTableCell8.Weight = 0.55575865200515961D; // // xrTableCell9 // this.xrTableCell9.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrTableCell9.Name = "xrTableCell9"; this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F); this.xrTableCell9.StylePriority.UseFont = false; this.xrTableCell9.StylePriority.UsePadding = false; this.xrTableCell9.StylePriority.UseTextAlignment = false; this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify; this.xrTableCell9.Weight = 2.15173650677963D; // // xrTableCell10 // this.xrTableCell10.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrTableCell10.Name = "xrTableCell10"; this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F); this.xrTableCell10.StylePriority.UseFont = false; this.xrTableCell10.StylePriority.UsePadding = false; this.xrTableCell10.StylePriority.UseTextAlignment = false; this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify; this.xrTableCell10.Weight = 0.65813452697487185D; // // xrTableCell11 // this.xrTableCell11.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrTableCell11.Name = "xrTableCell11"; this.xrTableCell11.StylePriority.UseFont = false; this.xrTableCell11.Weight = 0.71846397383912053D; // // xrTableCell12 // this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTableCell12.Name = "xrTableCell12"; this.xrTableCell12.StylePriority.UseBorders = false; this.xrTableCell12.Weight = 0.69235949228458438D; // // TopMargin // this.TopMargin.HeightF = 91F; this.TopMargin.Name = "TopMargin"; this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // BottomMargin // this.BottomMargin.Name = "BottomMargin"; this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // ReportHeader // this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrPictureBox1, this.xrLabel3, this.xrLabel2, this.xrLabel1 }); this.ReportHeader.HeightF = 166F; this.ReportHeader.Name = "ReportHeader"; // // xrPictureBox1 // this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image"))); this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 3.041649F); this.xrPictureBox1.Name = "xrPictureBox1"; this.xrPictureBox1.SizeF = new System.Drawing.SizeF(129.1667F, 42.79167F); // // xrLabel3 // this.xrLabel3.Font = new System.Drawing.Font("Times New Roman", 12F); this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 106F); this.xrLabel3.Name = "xrLabel3"; this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel3.SizeF = new System.Drawing.SizeF(969F, 22.99999F); this.xrLabel3.StylePriority.UseFont = false; this.xrLabel3.StylePriority.UseTextAlignment = false; this.xrLabel3.Text = "Ngày báo cáo........................................."; this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrLabel2 // this.xrLabel2.Font = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold); this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 68.83335F); this.xrLabel2.Name = "xrLabel2"; this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel2.SizeF = new System.Drawing.SizeF(969F, 37.16666F); this.xrLabel2.StylePriority.UseFont = false; this.xrLabel2.StylePriority.UseTextAlignment = false; this.xrLabel2.Text = "BÁO CÁO NHÂN VIÊN HƯỞNG KÝ HỢP ĐỒNG THỜI VỤ"; this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrLabel1 // this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold); this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(9.536743E-05F, 45.83333F); this.xrLabel1.Name = "xrLabel1"; this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel1.SizeF = new System.Drawing.SizeF(259.375F, 23F); this.xrLabel1.StylePriority.UseFont = false; this.xrLabel1.Text = "CÔNG TY AUSTFEED VIỆT NAM"; // // PageHeader // this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable1 }); this.PageHeader.HeightF = 45F; this.PageHeader.Name = "PageHeader"; // // xrTable1 // this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); this.xrTable1.Name = "xrTable1"; this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow1 }); this.xrTable1.SizeF = new System.Drawing.SizeF(969F, 45F); this.xrTable1.StylePriority.UseBorders = false; this.xrTable1.StylePriority.UseFont = false; this.xrTable1.StylePriority.UseTextAlignment = false; this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrTableRow1 // this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell1, this.xrTableCell2, this.xrTableCell3, this.xrTableCell6, this.xrTableCell5, this.xrTableCell4 }); this.xrTableRow1.Name = "xrTableRow1"; this.xrTableRow1.Weight = 1D; // // xrTableCell1 // this.xrTableCell1.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrTableCell1.Name = "xrTableCell1"; this.xrTableCell1.StylePriority.UseFont = false; this.xrTableCell1.StylePriority.UseTextAlignment = false; this.xrTableCell1.Text = "STT"; this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell1.Weight = 0.32541128637820549D; // // xrTableCell2 // this.xrTableCell2.Name = "xrTableCell2"; this.xrTableCell2.Text = "Mã nhân viên"; this.xrTableCell2.Weight = 0.55575865200515961D; // // xrTableCell3 // this.xrTableCell3.Name = "xrTableCell3"; this.xrTableCell3.Text = "Họ và tên"; this.xrTableCell3.Weight = 2.1517374842395385D; // // xrTableCell6 // this.xrTableCell6.Name = "xrTableCell6"; this.xrTableCell6.Text = "Chức vụ"; this.xrTableCell6.Weight = 0.65813444222341067D; // // xrTableCell5 // this.xrTableCell5.Name = "xrTableCell5"; this.xrTableCell5.Text = "Ngày ký HĐ"; this.xrTableCell5.Weight = 0.71846436655124013D; // // xrTableCell4 // this.xrTableCell4.Name = "xrTableCell4"; this.xrTableCell4.Text = "Ngày kết thúc HĐ"; this.xrTableCell4.Weight = 0.69235949228458438D; // // ReportFooter // this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrLabel7, this.xrLabel5, this.xrLabel4, this.xrLabel9, this.xrLabel8, this.xrLabel6, this.xrLabel10 }); this.ReportFooter.HeightF = 194F; this.ReportFooter.Name = "ReportFooter"; // // xrLabel7 // this.xrLabel7.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(336.4583F, 113.5417F); this.xrLabel7.Name = "xrLabel7"; this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel7.SizeF = new System.Drawing.SizeF(204.1667F, 23.00001F); this.xrLabel7.StylePriority.UseFont = false; this.xrLabel7.StylePriority.UseTextAlignment = false; this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrLabel5 // this.xrLabel5.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(61.80564F, 113.5417F); this.xrLabel5.Name = "xrLabel5"; this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel5.SizeF = new System.Drawing.SizeF(151.0417F, 23.00001F); this.xrLabel5.StylePriority.UseFont = false; this.xrLabel5.StylePriority.UseTextAlignment = false; this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrLabel4 // this.xrLabel4.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(52.08333F, 51.04167F); this.xrLabel4.Name = "xrLabel4"; this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel4.SizeF = new System.Drawing.SizeF(201.0417F, 31.33334F); this.xrLabel4.StylePriority.UseFont = false; this.xrLabel4.StylePriority.UseTextAlignment = false; this.xrLabel4.Text = "Người lập"; this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrLabel9 // this.xrLabel9.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(714.5833F, 51.04167F); this.xrLabel9.Name = "xrLabel9"; this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel9.SizeF = new System.Drawing.SizeF(201.0417F, 31.33334F); this.xrLabel9.StylePriority.UseFont = false; this.xrLabel9.StylePriority.UseTextAlignment = false; this.xrLabel9.Text = "Trưởng phòng HCNS"; this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrLabel8 // this.xrLabel8.Font = new System.Drawing.Font("Times New Roman", 12F); this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(639.5833F, 26.04167F); this.xrLabel8.Name = "xrLabel8"; this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel8.SizeF = new System.Drawing.SizeF(326.0417F, 23F); this.xrLabel8.StylePriority.UseFont = false; this.xrLabel8.Text = "Hưng Yên,ngày.........tháng............năm..........."; // // xrLabel6 // this.xrLabel6.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(352.0833F, 51.04167F); this.xrLabel6.Name = "xrLabel6"; this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel6.SizeF = new System.Drawing.SizeF(201.0417F, 31.33334F); this.xrLabel6.StylePriority.UseFont = false; this.xrLabel6.StylePriority.UseTextAlignment = false; this.xrLabel6.Text = "Kế toán trưởng"; this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrLabel10 // this.xrLabel10.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(714.5833F, 113.5417F); this.xrLabel10.Name = "xrLabel10"; this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel10.SizeF = new System.Drawing.SizeF(201.0417F, 23F); this.xrLabel10.StylePriority.UseFont = false; this.xrLabel10.StylePriority.UseTextAlignment = false; this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // rp_austfeed_BaoCaoNVKyHDThoiVu // this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { this.Detail, this.TopMargin, this.BottomMargin, this.ReportHeader, this.PageHeader, this.ReportFooter }); this.Landscape = true; this.Margins = new System.Drawing.Printing.Margins(100, 100, 91, 100); this.PageHeight = 827; this.PageWidth = 1169; this.PaperKind = System.Drawing.Printing.PaperKind.A4; this.Version = "10.1"; ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { string resourceFileName = "rptMultiInvoicesToPrint.resx"; DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary(); DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary(); DevExpress.XtraReports.UI.XRSummary xrSummary3 = new DevExpress.XtraReports.UI.XRSummary(); this.Detail = new DevExpress.XtraReports.UI.DetailBand(); this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel(); this.xrTable7 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow8 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTable1 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell(); this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand(); this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand(); this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand(); this.header = new DevExpress.XtraReports.UI.XRSubreport(); this.xrTable2 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrOrderNum = new DevExpress.XtraReports.UI.XRTableCell(); this.colHangHoa = new DevExpress.XtraReports.UI.XRTableCell(); this.colDonVi = new DevExpress.XtraReports.UI.XRTableCell(); this.colSoLuong = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel(); this.xrTable3 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrSum = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrPercent = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrDiscount = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrPayment = new DevExpress.XtraReports.UI.XRTableCell(); this.xrLabel20 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel(); this.xrTable6 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell(); this.lbchu = new DevExpress.XtraReports.UI.XRLabel(); this.GroupFooter2 = new DevExpress.XtraReports.UI.GroupFooterBand(); this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); this.xrPageBreak1 = new DevExpress.XtraReports.UI.XRPageBreak(); this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel(); this.dsMultiInvoicesToPrint1 = new dsMultiInvoicesToPrint(); this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand(); this.Detail1 = new DevExpress.XtraReports.UI.DetailBand(); this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand(); this.GroupFooter3 = new DevExpress.XtraReports.UI.GroupFooterBand(); this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell(); this.invoicesSelectByWhereTableAdapter1 = new dsMultiInvoicesToPrintTableAdapters.InvoicesSelectByWhereTableAdapter(); this.productsInInvoicesSelectByWhereTableAdapter1 = new dsMultiInvoicesToPrintTableAdapters.ProductsInInvoicesSelectByWhereTableAdapter(); ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dsMultiInvoicesToPrint1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); // // Detail // this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrLabel10, this.xrLabel13, this.xrTable7, this.header}); this.Detail.HeightF = 106.2084F; this.Detail.Name = "Detail"; this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // xrLabel10 // this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoiceNo", "Số: {0}")}); this.xrLabel10.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)))); this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(2.041523F, 27.50006F); this.xrLabel10.Name = "xrLabel10"; this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel10.SizeF = new System.Drawing.SizeF(738.9999F, 16F); this.xrLabel10.StylePriority.UseFont = false; this.xrLabel10.StylePriority.UseTextAlignment = false; this.xrLabel10.Text = "xrLabel10"; this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; // // xrLabel13 // this.xrLabel13.Font = new System.Drawing.Font("Times New Roman", 12.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(0.9580771F, 43.50004F); this.xrLabel13.Name = "xrLabel13"; this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel13.SizeF = new System.Drawing.SizeF(746.9168F, 20F); this.xrLabel13.StylePriority.UseFont = false; this.xrLabel13.StylePriority.UseTextAlignment = false; this.xrLabel13.Text = "HOÁ ĐƠN BÁN HÀNG"; this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrTable7 // this.xrTable7.Font = new System.Drawing.Font("Times New Roman", 9F); this.xrTable7.LocationFloat = new DevExpress.Utils.PointFloat(9.999903F, 70.20839F); this.xrTable7.Name = "xrTable7"; this.xrTable7.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow8, this.xrTableRow9}); this.xrTable7.SizeF = new System.Drawing.SizeF(731.7083F, 36F); this.xrTable7.StylePriority.UseFont = false; this.xrTable7.StylePriority.UseTextAlignment = false; this.xrTable7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; // // xrTableRow8 // this.xrTableRow8.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell6, this.xrTableCell23, this.xrTableCell25, this.xrTableCell24, this.xrTableCell7, this.xrTableCell19}); this.xrTableRow8.Name = "xrTableRow8"; this.xrTableRow8.Weight = 1D; // // xrTableCell6 // this.xrTableCell6.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold); this.xrTableCell6.Name = "xrTableCell6"; this.xrTableCell6.StylePriority.UseFont = false; this.xrTableCell6.StylePriority.UseTextAlignment = false; this.xrTableCell6.Text = "Khách hàng: "; this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; this.xrTableCell6.Weight = 0.76041707714783124D; // // xrTableCell23 // this.xrTableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Customer")}); this.xrTableCell23.Name = "xrTableCell23"; this.xrTableCell23.Text = "xrTableCell23"; this.xrTableCell23.Weight = 1.6354165423495146D; // // xrTableCell25 // this.xrTableCell25.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold); this.xrTableCell25.Name = "xrTableCell25"; this.xrTableCell25.StylePriority.UseFont = false; this.xrTableCell25.StylePriority.UseTextAlignment = false; this.xrTableCell25.Text = "Điện thoại:"; this.xrTableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; this.xrTableCell25.Weight = 0.62583404093619488D; // // xrTableCell24 // this.xrTableCell24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Phone")}); this.xrTableCell24.Name = "xrTableCell24"; this.xrTableCell24.Text = "xrTableCell24"; this.xrTableCell24.Weight = 1.1164577939005926D; // // xrTableCell7 // this.xrTableCell7.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold); this.xrTableCell7.Name = "xrTableCell7"; this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F); this.xrTableCell7.StylePriority.UseFont = false; this.xrTableCell7.StylePriority.UsePadding = false; this.xrTableCell7.Text = "Địa chỉ: "; this.xrTableCell7.Weight = 0.51395781087784642D; // // xrTableCell19 // this.xrTableCell19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.CustomerAddress")}); this.xrTableCell19.Name = "xrTableCell19"; this.xrTableCell19.Text = "xrTableCell19"; this.xrTableCell19.Weight = 2.6649996045159052D; // // xrTableRow9 // this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell26, this.xrTableCell27, this.xrTableCell28, this.xrTableCell29}); this.xrTableRow9.Name = "xrTableRow9"; this.xrTableRow9.Weight = 1D; // // xrTableCell26 // this.xrTableCell26.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold); this.xrTableCell26.Name = "xrTableCell26"; this.xrTableCell26.StylePriority.UseFont = false; this.xrTableCell26.Text = "Địa chỉ: "; this.xrTableCell26.Weight = 0.76041707714783124D; // // xrTableCell27 // this.xrTableCell27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.DeliveryAddress")}); this.xrTableCell27.Name = "xrTableCell27"; this.xrTableCell27.Text = "xrTableCell27"; this.xrTableCell27.Weight = 3.377708655696229D; // // xrTableCell28 // this.xrTableCell28.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold); this.xrTableCell28.Name = "xrTableCell28"; this.xrTableCell28.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F); this.xrTableCell28.StylePriority.UseFont = false; this.xrTableCell28.StylePriority.UsePadding = false; this.xrTableCell28.Text = "Ngày: "; this.xrTableCell28.Weight = 0.51395721385922755D; // // xrTableCell29 // this.xrTableCell29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.CurrentDate", "{0:dd/MM/yyyy}")}); this.xrTableCell29.Name = "xrTableCell29"; this.xrTableCell29.Text = "xrTableCell29"; this.xrTableCell29.Weight = 2.664999923024598D; // // xrTable1 // this.xrTable1.BackColor = System.Drawing.Color.Snow; this.xrTable1.BorderColor = System.Drawing.Color.Black; this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTable1.BorderWidth = 1; this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold); this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); this.xrTable1.Name = "xrTable1"; this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow1}); this.xrTable1.SizeF = new System.Drawing.SizeF(749.5835F, 25F); this.xrTable1.StylePriority.UseBackColor = false; this.xrTable1.StylePriority.UseBorderColor = false; this.xrTable1.StylePriority.UseBorders = false; this.xrTable1.StylePriority.UseBorderWidth = false; this.xrTable1.StylePriority.UseFont = false; this.xrTable1.StylePriority.UseTextAlignment = false; this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrTableRow1 // this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell1, this.xrTableCell2, this.xrTableCell22, this.xrTableCell3, this.xrTableCell4, this.xrTableCell21, this.xrTableCell20, this.xrTableCell17, this.xrTableCell5}); this.xrTableRow1.Name = "xrTableRow1"; this.xrTableRow1.Weight = 1D; // // xrTableCell1 // this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTableCell1.Name = "xrTableCell1"; this.xrTableCell1.StylePriority.UseBorders = false; this.xrTableCell1.StylePriority.UseTextAlignment = false; this.xrTableCell1.Text = "STT"; this.xrTableCell1.Weight = 0.36560024648643036D; // // xrTableCell2 // this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTableCell2.Name = "xrTableCell2"; this.xrTableCell2.StylePriority.UseBorders = false; this.xrTableCell2.Text = "Tên Hàng Hoá"; this.xrTableCell2.Weight = 2.3565548083905545D; // // xrTableCell22 // this.xrTableCell22.Name = "xrTableCell22"; this.xrTableCell22.Text = "Trọng lượng"; this.xrTableCell22.Weight = 0.78342919997407734D; // // xrTableCell3 // this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTableCell3.Name = "xrTableCell3"; this.xrTableCell3.StylePriority.UseBorders = false; this.xrTableCell3.Text = "ĐVT"; this.xrTableCell3.Weight = 0.47005750662449247D; // // xrTableCell4 // this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTableCell4.Name = "xrTableCell4"; this.xrTableCell4.StylePriority.UseBorders = false; this.xrTableCell4.Text = "Đơn giá bán"; this.xrTableCell4.Weight = 0.78969598039839828D; // // xrTableCell21 // this.xrTableCell21.Name = "xrTableCell21"; this.xrTableCell21.StylePriority.UseTextAlignment = false; this.xrTableCell21.Text = "Số lượng bán"; this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell21.Weight = 0.85288598746242816D; // // xrTableCell20 // this.xrTableCell20.Name = "xrTableCell20"; this.xrTableCell20.Text = "Tặng"; this.xrTableCell20.Weight = 0.44682014695324773D; // // xrTableCell5 // this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTableCell5.Name = "xrTableCell5"; this.xrTableCell5.StylePriority.UseBorders = false; this.xrTableCell5.Text = "Thành tiền"; this.xrTableCell5.Weight = 1.0048792922737211D; // // TopMargin // this.TopMargin.HeightF = 20F; this.TopMargin.Name = "TopMargin"; this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // BottomMargin // this.BottomMargin.HeightF = 0F; this.BottomMargin.Name = "BottomMargin"; this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // PageHeader // this.PageHeader.HeightF = 5.625057F; this.PageHeader.Name = "PageHeader"; // // header // this.header.LocationFloat = new DevExpress.Utils.PointFloat(2.041523F, 0F); this.header.Name = "header"; this.header.SizeF = new System.Drawing.SizeF(748.9584F, 27.50006F); // // xrTable2 // this.xrTable2.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid; this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTable2.BorderWidth = 1; this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 9F); this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); this.xrTable2.Name = "xrTable2"; this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow2}); this.xrTable2.SizeF = new System.Drawing.SizeF(749.5835F, 20F); this.xrTable2.StylePriority.UseBorderDashStyle = false; this.xrTable2.StylePriority.UseBorders = false; this.xrTable2.StylePriority.UseBorderWidth = false; this.xrTable2.StylePriority.UseFont = false; this.xrTable2.StylePriority.UseTextAlignment = false; this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrTableRow2 // this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrOrderNum, this.colHangHoa, this.colDonVi, this.colSoLuong, this.xrTableCell11, this.xrTableCell30, this.xrTableCell12, this.xrTableCell35, this.xrTableCell31}); this.xrTableRow2.Name = "xrTableRow2"; this.xrTableRow2.Weight = 1D; // // xrOrderNum // this.xrOrderNum.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrOrderNum.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.RowIn" + "dex")}); this.xrOrderNum.Name = "xrOrderNum"; this.xrOrderNum.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F); this.xrOrderNum.StylePriority.UseBorders = false; this.xrOrderNum.StylePriority.UsePadding = false; this.xrOrderNum.StylePriority.UseTextAlignment = false; this.xrOrderNum.Text = "xrOrderNum"; this.xrOrderNum.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrOrderNum.Weight = 0.36458328247070315D; // // colHangHoa // this.colHangHoa.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.colHangHoa.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.produ" + "ctname")}); this.colHangHoa.Name = "colHangHoa"; this.colHangHoa.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F); this.colHangHoa.StylePriority.UseBorders = false; this.colHangHoa.StylePriority.UsePadding = false; this.colHangHoa.StylePriority.UseTextAlignment = false; this.colHangHoa.Text = "colHangHoa"; this.colHangHoa.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; this.colHangHoa.Weight = 2.3499999233670534D; // // colDonVi // this.colDonVi.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.colDonVi.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Style" + "")}); this.colDonVi.Name = "colDonVi"; this.colDonVi.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F); this.colDonVi.StylePriority.UseBorders = false; this.colDonVi.StylePriority.UsePadding = false; this.colDonVi.Text = "colDonVi"; this.colDonVi.Weight = 0.78125038790315038D; // // colSoLuong // this.colSoLuong.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.colSoLuong.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Unit")}); this.colSoLuong.Name = "colSoLuong"; this.colSoLuong.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F); this.colSoLuong.StylePriority.UseBorders = false; this.colSoLuong.StylePriority.UsePadding = false; this.colSoLuong.Text = "colSoLuong"; this.colSoLuong.Weight = 0.46875033858450066D; // // xrTableCell11 // this.xrTableCell11.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Curre" + "ntPrice", "{0:n0}")}); this.xrTableCell11.Name = "xrTableCell11"; this.xrTableCell11.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F); this.xrTableCell11.StylePriority.UseBorders = false; this.xrTableCell11.StylePriority.UsePadding = false; this.xrTableCell11.StylePriority.UseTextAlignment = false; xrSummary1.FormatString = "{0:0.00 VND}"; this.xrTableCell11.Summary = xrSummary1; this.xrTableCell11.Text = "xrTableCell11"; this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrTableCell11.Weight = 0.78749918670705688D; // // xrTableCell30 // this.xrTableCell30.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Quant" + "ity", "{0:n0}")}); this.xrTableCell30.Name = "xrTableCell30"; this.xrTableCell30.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F); this.xrTableCell30.StylePriority.UsePadding = false; this.xrTableCell30.StylePriority.UseTextAlignment = false; this.xrTableCell30.Text = "xrTableCell30"; this.xrTableCell30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrTableCell30.Weight = 0.85051490427718135D; // // xrTableCell12 // this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Bonus" + "", "{0:n0}")}); this.xrTableCell12.Name = "xrTableCell12"; this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F); this.xrTableCell12.StylePriority.UseBorders = false; this.xrTableCell12.StylePriority.UsePadding = false; this.xrTableCell12.StylePriority.UseTextAlignment = false; this.xrTableCell12.Text = "xrTableCell12"; this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrTableCell12.Weight = 0.4455766067495005D; // // xrTableCell31 // this.xrTableCell31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Total" + "", "{0:n0}")}); this.xrTableCell31.Name = "xrTableCell31"; this.xrTableCell31.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F); this.xrTableCell31.StylePriority.UsePadding = false; this.xrTableCell31.StylePriority.UseTextAlignment = false; this.xrTableCell31.Text = "[InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Total]"; this.xrTableCell31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrTableCell31.Weight = 1.0020843341075598D; // // xrLabel4 // this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Notes")}); this.xrLabel4.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Italic); this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(9.041818F, 111.7916F); this.xrLabel4.Name = "xrLabel4"; this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel4.SizeF = new System.Drawing.SizeF(578.4171F, 16F); this.xrLabel4.StylePriority.UseFont = false; this.xrLabel4.Text = "xrLabel4"; // // xrTable3 // this.xrTable3.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid; this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTable3.BorderWidth = 1; this.xrTable3.Font = new System.Drawing.Font("Times New Roman", 9F); this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); this.xrTable3.Name = "xrTable3"; this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow3, this.xrTableRow4, this.xrTableRow5}); this.xrTable3.SizeF = new System.Drawing.SizeF(749.5835F, 60F); this.xrTable3.StylePriority.UseBorderDashStyle = false; this.xrTable3.StylePriority.UseBorders = false; this.xrTable3.StylePriority.UseBorderWidth = false; this.xrTable3.StylePriority.UseFont = false; this.xrTable3.StylePriority.UseTextAlignment = false; this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrTableRow3 // this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell14, this.xrTableCell10, this.xrSum}); this.xrTableRow3.Name = "xrTableRow3"; this.xrTableRow3.Weight = 1D; // // xrTableCell14 // this.xrTableCell14.Name = "xrTableCell14"; this.xrTableCell14.Weight = 5.6337398317540881D; // // xrTableCell10 // this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTableCell10.Name = "xrTableCell10"; this.xrTableCell10.StylePriority.UseBorders = false; this.xrTableCell10.StylePriority.UseTextAlignment = false; this.xrTableCell10.Weight = 0.89610777590259483D; // // xrSum // this.xrSum.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.FinalTotal", "{0:n0}")}); this.xrSum.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)))); this.xrSum.Name = "xrSum"; this.xrSum.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F); this.xrSum.StylePriority.UseFont = false; this.xrSum.StylePriority.UsePadding = false; this.xrSum.StylePriority.UseTextAlignment = false; xrSummary2.FormatString = "{0:n0}"; this.xrSum.Summary = xrSummary2; this.xrSum.Text = "xrSum"; this.xrSum.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrSum.Weight = 1.0076542233980046D; // // xrTableRow4 // this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell18, this.xrPercent, this.xrTableCell13, this.xrDiscount}); this.xrTableRow4.Name = "xrTableRow4"; this.xrTableRow4.Weight = 1D; // // xrTableCell18 // this.xrTableCell18.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold); this.xrTableCell18.Name = "xrTableCell18"; this.xrTableCell18.StylePriority.UseFont = false; this.xrTableCell18.Text = "Chiết khấu:"; this.xrTableCell18.Weight = 4.7784974502941386D; // // xrPercent // this.xrPercent.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)))); this.xrPercent.Name = "xrPercent"; this.xrPercent.StylePriority.UseFont = false; this.xrPercent.StylePriority.UseTextAlignment = false; this.xrPercent.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrPercent.Weight = 0.855243157122188D; this.xrPercent.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrPercent_BeforePrint); // // xrTableCell13 // this.xrTableCell13.Name = "xrTableCell13"; this.xrTableCell13.Weight = 0.89610592194689409D; // // xrDiscount // this.xrDiscount.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Discount", "{0:n0}")}); this.xrDiscount.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)))); this.xrDiscount.Name = "xrDiscount"; this.xrDiscount.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F); this.xrDiscount.StylePriority.UseFont = false; this.xrDiscount.StylePriority.UsePadding = false; this.xrDiscount.StylePriority.UseTextAlignment = false; this.xrDiscount.Text = "xrDiscount"; this.xrDiscount.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrDiscount.Weight = 1.0076553016914669D; // // xrTableRow5 // this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell32, this.xrTableCell36, this.xrTableCell34, this.xrPayment}); this.xrTableRow5.Name = "xrTableRow5"; this.xrTableRow5.Weight = 1D; // // xrTableCell32 // this.xrTableCell32.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold); this.xrTableCell32.Name = "xrTableCell32"; this.xrTableCell32.StylePriority.UseFont = false; this.xrTableCell32.Text = "Số tiền phải thanh toán:"; this.xrTableCell32.Weight = 4.7784974502941386D; // // xrTableCell36 // this.xrTableCell36.Name = "xrTableCell36"; this.xrTableCell36.Weight = 0.85524315712218835D; // // xrTableCell34 // this.xrTableCell34.Name = "xrTableCell34"; this.xrTableCell34.Weight = 0.89610592533963673D; // // xrPayment // this.xrPayment.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Payment", "{0:n0}")}); this.xrPayment.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)))); this.xrPayment.Name = "xrPayment"; this.xrPayment.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F); this.xrPayment.StylePriority.UseFont = false; this.xrPayment.StylePriority.UsePadding = false; this.xrPayment.StylePriority.UseTextAlignment = false; this.xrPayment.Text = "[InvoicesSelectByWhere.Payment]"; this.xrPayment.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrPayment.Weight = 1.0076552982987241D; // // xrLabel20 // this.xrLabel20.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold); this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(592.0837F, 132.7916F); this.xrLabel20.Name = "xrLabel20"; this.xrLabel20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel20.SizeF = new System.Drawing.SizeF(130F, 16F); this.xrLabel20.StylePriority.UseFont = false; this.xrLabel20.StylePriority.UseTextAlignment = false; this.xrLabel20.Text = "Nhân viên bán hàng"; this.xrLabel20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrLabel17 // this.xrLabel17.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold); this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(8.208816F, 91.79157F); this.xrLabel17.Name = "xrLabel17"; this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel17.SizeF = new System.Drawing.SizeF(64.58333F, 16.00001F); this.xrLabel17.StylePriority.UseFont = false; this.xrLabel17.Text = "Ghi chú: "; // // xrLabel5 // this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Seller")}); this.xrLabel5.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold); this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(592.0837F, 192.5001F); this.xrLabel5.Name = "xrLabel5"; this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel5.SizeF = new System.Drawing.SizeF(130F, 16.00002F); this.xrLabel5.StylePriority.UseFont = false; this.xrLabel5.StylePriority.UseTextAlignment = false; this.xrLabel5.Text = "xrLabel5"; this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrLabel3 // this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.SellerPhone")}); this.xrLabel3.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold); this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(593.0836F, 208.5001F); this.xrLabel3.Name = "xrLabel3"; this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel3.SizeF = new System.Drawing.SizeF(129.0001F, 16F); this.xrLabel3.StylePriority.UseFont = false; this.xrLabel3.StylePriority.UseTextAlignment = false; this.xrLabel3.Text = "xrLabel3"; this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrTable6 // this.xrTable6.Borders = DevExpress.XtraPrinting.BorderSide.None; this.xrTable6.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrTable6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 60.00001F); this.xrTable6.Name = "xrTable6"; this.xrTable6.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow6}); this.xrTable6.SizeF = new System.Drawing.SizeF(750F, 20F); this.xrTable6.StylePriority.UseBorders = false; this.xrTable6.StylePriority.UseFont = false; this.xrTable6.StylePriority.UseTextAlignment = false; this.xrTable6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrTableRow6 // this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell8, this.xrTableCell9}); this.xrTableRow6.Name = "xrTableRow6"; this.xrTableRow6.Weight = 1D; // // xrTableCell8 // this.xrTableCell8.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)))); this.xrTableCell8.Name = "xrTableCell8"; this.xrTableCell8.StylePriority.UseFont = false; this.xrTableCell8.StylePriority.UseTextAlignment = false; this.xrTableCell8.Text = "Tổng tiền (bằng chữ):"; this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; this.xrTableCell8.Weight = 1.0847216847737626D; // // xrTableCell9 // this.xrTableCell9.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.lbchu}); this.xrTableCell9.Font = new System.Drawing.Font("Times New Roman", 9F); this.xrTableCell9.Name = "xrTableCell9"; this.xrTableCell9.StylePriority.UseFont = false; this.xrTableCell9.StylePriority.UseTextAlignment = false; xrSummary3.FormatString = "{0:0.00 VND}"; this.xrTableCell9.Summary = xrSummary3; this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; this.xrTableCell9.Weight = 5.4152783152262369D; // // lbchu // this.lbchu.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); this.lbchu.Name = "lbchu"; this.lbchu.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.lbchu.SizeF = new System.Drawing.SizeF(623.7981F, 20F); this.lbchu.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.lbchu_BeforePrint); // // GroupFooter2 // this.GroupFooter2.HeightF = 20.45835F; this.GroupFooter2.Name = "GroupFooter2"; // // xrLabel6 // this.xrLabel6.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold); this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(312.1668F, 132.7916F); this.xrLabel6.Name = "xrLabel6"; this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel6.SizeF = new System.Drawing.SizeF(130F, 16F); this.xrLabel6.StylePriority.UseFont = false; this.xrLabel6.StylePriority.UseTextAlignment = false; this.xrLabel6.Text = "Nhân viên giao hàng"; this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrLabel8 // this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.DeliverPhone")}); this.xrLabel8.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold); this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(312.1668F, 208.5001F); this.xrLabel8.Name = "xrLabel8"; this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel8.SizeF = new System.Drawing.SizeF(130F, 16F); this.xrLabel8.StylePriority.UseFont = false; this.xrLabel8.StylePriority.UseTextAlignment = false; this.xrLabel8.Text = "xrLabel8"; this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrLabel7 // this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Deliver")}); this.xrLabel7.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold); this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(312.1668F, 192.5001F); this.xrLabel7.Name = "xrLabel7"; this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel7.SizeF = new System.Drawing.SizeF(130F, 16F); this.xrLabel7.StylePriority.UseFont = false; this.xrLabel7.StylePriority.UseTextAlignment = false; this.xrLabel7.Text = "xrLabel7"; this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrLabel1 // this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Italic); this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(72.79218F, 91.79156F); this.xrLabel1.Name = "xrLabel1"; this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel1.SizeF = new System.Drawing.SizeF(514.6667F, 16F); this.xrLabel1.StylePriority.UseFont = false; this.xrLabel1.Text = "- Vui lòng kiểm tra kỹ hàng trước khi nhận. Nhân viên bán hàng không được nhận ti" + "ền và hàng hóa."; // // xrPageBreak1 // this.xrPageBreak1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 238F); this.xrPageBreak1.Name = "xrPageBreak1"; // // xrLabel9 // this.xrLabel9.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold); this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(86.0417F, 132.7916F); this.xrLabel9.Name = "xrLabel9"; this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel9.SizeF = new System.Drawing.SizeF(130F, 16F); this.xrLabel9.StylePriority.UseFont = false; this.xrLabel9.StylePriority.UseTextAlignment = false; this.xrLabel9.Text = "Khách hàng"; this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrLabel11 // this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Customer")}); this.xrLabel11.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold); this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(86.0417F, 208.5001F); this.xrLabel11.Name = "xrLabel11"; this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel11.SizeF = new System.Drawing.SizeF(130F, 16F); this.xrLabel11.StylePriority.UseFont = false; this.xrLabel11.StylePriority.UseTextAlignment = false; this.xrLabel11.Text = "xrLabel11"; this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // dsMultiInvoicesToPrint1 // this.dsMultiInvoicesToPrint1.DataSetName = "dsMultiInvoicesToPrint"; this.dsMultiInvoicesToPrint1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; // // DetailReport // this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { this.Detail1, this.GroupHeader2, this.GroupFooter3}); this.DetailReport.DataMember = "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere"; this.DetailReport.DataSource = this.dsMultiInvoicesToPrint1; this.DetailReport.Level = 0; this.DetailReport.Name = "DetailReport"; // // Detail1 // this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable2}); this.Detail1.HeightF = 20F; this.Detail1.Name = "Detail1"; // // GroupHeader2 // this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable1}); this.GroupHeader2.HeightF = 25F; this.GroupHeader2.Name = "GroupHeader2"; // // GroupFooter3 // this.GroupFooter3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable6, this.xrLabel17, this.xrLabel4, this.xrTable3, this.xrLabel20, this.xrLabel3, this.xrLabel5, this.xrPageBreak1, this.xrLabel1, this.xrLabel7, this.xrLabel8, this.xrLabel6, this.xrLabel9, this.xrLabel11}); this.GroupFooter3.HeightF = 250F; this.GroupFooter3.Name = "GroupFooter3"; // // xrTableCell17 // this.xrTableCell17.Name = "xrTableCell17"; this.xrTableCell17.Text = "CK(%)"; this.xrTableCell17.Weight = 0.44682014695324773D; // // xrTableCell35 // this.xrTableCell35.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Disco" + "unt", "{0:n2}")}); this.xrTableCell35.Name = "xrTableCell35"; this.xrTableCell35.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F); this.xrTableCell35.StylePriority.UsePadding = false; this.xrTableCell35.StylePriority.UseTextAlignment = false; this.xrTableCell35.Text = "xrTableCell35"; this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrTableCell35.Weight = 0.4455766067495005D; // // invoicesSelectByWhereTableAdapter1 // this.invoicesSelectByWhereTableAdapter1.ClearBeforeFill = true; // // productsInInvoicesSelectByWhereTableAdapter1 // this.productsInInvoicesSelectByWhereTableAdapter1.ClearBeforeFill = true; // // rptMultiInvoicesToPrint // this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { this.Detail, this.TopMargin, this.BottomMargin, this.PageHeader, this.GroupFooter2, this.DetailReport}); this.DataAdapter = this.productsInInvoicesSelectByWhereTableAdapter1; this.DataMember = "InvoicesSelectByWhere"; this.DataSource = this.dsMultiInvoicesToPrint1; this.Margins = new System.Drawing.Printing.Margins(49, 50, 20, 0); this.Version = "11.1"; ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dsMultiInvoicesToPrint1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { string resourceFileName = "rp_DanhSachQuanNhan.resx"; this.Detail = new DevExpress.XtraReports.UI.DetailBand(); this.xrTable2 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrtstt = new DevExpress.XtraReports.UI.XRTableCell(); this.xrtmanhanvien = new DevExpress.XtraReports.UI.XRTableCell(); this.xrttencbcnv = new DevExpress.XtraReports.UI.XRTableCell(); this.xrt_ngaysinh = new DevExpress.XtraReports.UI.XRTableCell(); this.xrtgioitinh = new DevExpress.XtraReports.UI.XRTableCell(); this.xrt_phongban = new DevExpress.XtraReports.UI.XRTableCell(); this.xrtdienthoai = new DevExpress.XtraReports.UI.XRTableCell(); this.xrt_ngaytgcm = new DevExpress.XtraReports.UI.XRTableCell(); this.xrt_ngaynhapngu = new DevExpress.XtraReports.UI.XRTableCell(); this.xrtngayxuatngu = new DevExpress.XtraReports.UI.XRTableCell(); this.xrttrinhdo = new DevExpress.XtraReports.UI.XRTableCell(); this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand(); this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand(); this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand(); this.xrl_TitleBC = new DevExpress.XtraReports.UI.XRLabel(); this.xrl_ThangBaoCao = new DevExpress.XtraReports.UI.XRLabel(); this.xrl_TenCongTy = new DevExpress.XtraReports.UI.XRLabel(); this.xrl_TenThanhPho = new DevExpress.XtraReports.UI.XRLabel(); this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand(); this.xrTable1 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell(); this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand(); this.xrl_ten3 = new DevExpress.XtraReports.UI.XRLabel(); this.xrl_ten2 = new DevExpress.XtraReports.UI.XRLabel(); this.xrl_ten1 = new DevExpress.XtraReports.UI.XRLabel(); this.xrtngayketxuat = new DevExpress.XtraReports.UI.XRLabel(); this.xrl_footer1 = new DevExpress.XtraReports.UI.XRLabel(); this.xrl_footer3 = new DevExpress.XtraReports.UI.XRLabel(); this.xrl_footer2 = new DevExpress.XtraReports.UI.XRLabel(); this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand(); this.xrTable3 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrl_tenphongban = new DevExpress.XtraReports.UI.XRTableCell(); this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand(); this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand(); this.xrPageInfo1 = new DevExpress.XtraReports.UI.XRPageInfo(); ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); // // Detail // this.Detail.BackColor = System.Drawing.SystemColors.Window; this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable2 }); this.Detail.HeightF = 25.41666F; this.Detail.KeepTogether = true; this.Detail.KeepTogetherWithDetailReports = true; this.Detail.Name = "Detail"; this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.Detail.StylePriority.UseBackColor = false; this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; this.Detail.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint); // // xrTable2 // this.xrTable2.BackColor = System.Drawing.Color.Transparent; this.xrTable2.BorderColor = System.Drawing.SystemColors.ControlLight; this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 10F); this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); this.xrTable2.Name = "xrTable2"; this.xrTable2.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F); this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow2 }); this.xrTable2.SizeF = new System.Drawing.SizeF(1079F, 25.41666F); this.xrTable2.SnapLineMargin = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F); this.xrTable2.StylePriority.UseBackColor = false; this.xrTable2.StylePriority.UseBorderColor = false; this.xrTable2.StylePriority.UseBorders = false; this.xrTable2.StylePriority.UseFont = false; this.xrTable2.StylePriority.UsePadding = false; this.xrTable2.StylePriority.UseTextAlignment = false; this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; // // xrTableRow2 // this.xrTableRow2.BorderColor = System.Drawing.SystemColors.ActiveCaptionText; this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrtstt, this.xrtmanhanvien, this.xrttencbcnv, this.xrt_ngaysinh, this.xrtgioitinh, this.xrt_phongban, this.xrtdienthoai, this.xrt_ngaytgcm, this.xrt_ngaynhapngu, this.xrtngayxuatngu, this.xrttrinhdo }); this.xrTableRow2.Font = new System.Drawing.Font("Times New Roman", 10F); this.xrTableRow2.Name = "xrTableRow2"; this.xrTableRow2.StylePriority.UseBorderColor = false; this.xrTableRow2.StylePriority.UseFont = false; this.xrTableRow2.StylePriority.UseTextAlignment = false; this.xrTableRow2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; this.xrTableRow2.Weight = 1D; // // xrtstt // this.xrtstt.Name = "xrtstt"; this.xrtstt.StylePriority.UseTextAlignment = false; this.xrtstt.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; this.xrtstt.Weight = 0.35416665980020634D; this.xrtstt.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint); // // xrtmanhanvien // this.xrtmanhanvien.Name = "xrtmanhanvien"; this.xrtmanhanvien.StylePriority.UseTextAlignment = false; this.xrtmanhanvien.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrtmanhanvien.Weight = 0.76041679699165521D; // // xrttencbcnv // this.xrttencbcnv.Name = "xrttencbcnv"; this.xrttencbcnv.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F); this.xrttencbcnv.StylePriority.UsePadding = false; this.xrttencbcnv.StylePriority.UseTextAlignment = false; this.xrttencbcnv.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; this.xrttencbcnv.Weight = 1.0729163556250356D; // // xrt_ngaysinh // this.xrt_ngaysinh.Name = "xrt_ngaysinh"; this.xrt_ngaysinh.StylePriority.UseTextAlignment = false; this.xrt_ngaysinh.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrt_ngaysinh.Weight = 0.83267535518836278D; // // xrtgioitinh // this.xrtgioitinh.Name = "xrtgioitinh"; this.xrtgioitinh.StylePriority.UseTextAlignment = false; this.xrtgioitinh.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrtgioitinh.Weight = 0.5063168712866859D; // // xrt_phongban // this.xrt_phongban.Name = "xrt_phongban"; this.xrt_phongban.StylePriority.UseTextAlignment = false; this.xrt_phongban.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; this.xrt_phongban.Weight = 1.9895274984836242D; // // xrtdienthoai // this.xrtdienthoai.Name = "xrtdienthoai"; this.xrtdienthoai.StylePriority.UseTextAlignment = false; this.xrtdienthoai.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrtdienthoai.Weight = 0.89065751237141466D; // // xrt_ngaytgcm // this.xrt_ngaytgcm.Name = "xrt_ngaytgcm"; this.xrt_ngaytgcm.StylePriority.UseTextAlignment = false; this.xrt_ngaytgcm.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrt_ngaytgcm.Weight = 1.0160425818067729D; // // xrt_ngaynhapngu // this.xrt_ngaynhapngu.Name = "xrt_ngaynhapngu"; this.xrt_ngaynhapngu.Weight = 1.1016931797543934D; // // xrtngayxuatngu // this.xrtngayxuatngu.Name = "xrtngayxuatngu"; this.xrtngayxuatngu.StylePriority.UseTextAlignment = false; this.xrtngayxuatngu.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrtngayxuatngu.Weight = 1.007945653392321D; // // xrttrinhdo // this.xrttrinhdo.Name = "xrttrinhdo"; this.xrttrinhdo.StylePriority.UseTextAlignment = false; this.xrttrinhdo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; this.xrttrinhdo.Weight = 1.2576361436661903D; // // TopMargin // this.TopMargin.BackColor = System.Drawing.Color.Gray; this.TopMargin.HeightF = 48F; this.TopMargin.Name = "TopMargin"; this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.TopMargin.StylePriority.UseBackColor = false; this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // BottomMargin // this.BottomMargin.HeightF = 49F; this.BottomMargin.Name = "BottomMargin"; this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // ReportHeader // this.ReportHeader.BackColor = System.Drawing.Color.Transparent; this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrl_TitleBC, this.xrl_ThangBaoCao, this.xrl_TenCongTy, this.xrl_TenThanhPho }); this.ReportHeader.HeightF = 110.5F; this.ReportHeader.Name = "ReportHeader"; this.ReportHeader.StylePriority.UseBackColor = false; // // xrl_TitleBC // this.xrl_TitleBC.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrl_TitleBC.LocationFloat = new DevExpress.Utils.PointFloat(0F, 54.5F); this.xrl_TitleBC.Name = "xrl_TitleBC"; this.xrl_TitleBC.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrl_TitleBC.SizeF = new System.Drawing.SizeF(1079F, 23F); this.xrl_TitleBC.StylePriority.UseFont = false; this.xrl_TitleBC.StylePriority.UseTextAlignment = false; this.xrl_TitleBC.Text = "BÁO CÁO DANH SÁCH QUÂN NHÂN TRONG CÔNG TY"; this.xrl_TitleBC.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrl_ThangBaoCao // this.xrl_ThangBaoCao.Font = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Italic); this.xrl_ThangBaoCao.LocationFloat = new DevExpress.Utils.PointFloat(0F, 77.5F); this.xrl_ThangBaoCao.Name = "xrl_ThangBaoCao"; this.xrl_ThangBaoCao.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrl_ThangBaoCao.SizeF = new System.Drawing.SizeF(1079F, 23F); this.xrl_ThangBaoCao.StylePriority.UseFont = false; this.xrl_ThangBaoCao.StylePriority.UseTextAlignment = false; this.xrl_ThangBaoCao.Text = "Tháng 3 năm 2013"; this.xrl_ThangBaoCao.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrl_TenCongTy // this.xrl_TenCongTy.Font = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold); this.xrl_TenCongTy.LocationFloat = new DevExpress.Utils.PointFloat(0F, 25F); this.xrl_TenCongTy.Name = "xrl_TenCongTy"; this.xrl_TenCongTy.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrl_TenCongTy.SizeF = new System.Drawing.SizeF(480.7656F, 23F); this.xrl_TenCongTy.StylePriority.UseFont = false; this.xrl_TenCongTy.StylePriority.UseTextAlignment = false; this.xrl_TenCongTy.Text = "CÔNG TY CỔ PHẦN CÔNG NGHỆ DTH VÀ GIẢI PHÁP SỐ"; this.xrl_TenCongTy.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrl_TenThanhPho // this.xrl_TenThanhPho.Font = new System.Drawing.Font("Times New Roman", 11F); this.xrl_TenThanhPho.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); this.xrl_TenThanhPho.Name = "xrl_TenThanhPho"; this.xrl_TenThanhPho.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrl_TenThanhPho.SizeF = new System.Drawing.SizeF(480.7656F, 23F); this.xrl_TenThanhPho.StylePriority.UseFont = false; this.xrl_TenThanhPho.StylePriority.UseTextAlignment = false; this.xrl_TenThanhPho.Text = "THÀNH PHỐ HÀ NỘI"; this.xrl_TenThanhPho.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // PageHeader // this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable1 }); this.PageHeader.HeightF = 38.33331F; this.PageHeader.Name = "PageHeader"; // // xrTable1 // this.xrTable1.BackColor = System.Drawing.Color.Transparent; this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 10F); this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); this.xrTable1.Name = "xrTable1"; this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow1 }); this.xrTable1.SizeF = new System.Drawing.SizeF(1079F, 38.33331F); this.xrTable1.StylePriority.UseBackColor = false; this.xrTable1.StylePriority.UseBorders = false; this.xrTable1.StylePriority.UseFont = false; this.xrTable1.StylePriority.UseTextAlignment = false; this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; // // xrTableRow1 // this.xrTableRow1.BackColor = System.Drawing.Color.WhiteSmoke; this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell1, this.xrTableCell2, this.xrTableCell4, this.xrTableCell3, this.xrTableCell5, this.xrTableCell6, this.xrTableCell7, this.xrTableCell8, this.xrTableCell9, this.xrTableCell11, this.xrTableCell12 }); this.xrTableRow1.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold); this.xrTableRow1.Name = "xrTableRow1"; this.xrTableRow1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); this.xrTableRow1.StylePriority.UseBackColor = false; this.xrTableRow1.StylePriority.UseFont = false; this.xrTableRow1.StylePriority.UsePadding = false; this.xrTableRow1.StylePriority.UseTextAlignment = false; this.xrTableRow1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; this.xrTableRow1.Weight = 1D; // // xrTableCell1 // this.xrTableCell1.BackColor = System.Drawing.Color.Transparent; this.xrTableCell1.Name = "xrTableCell1"; this.xrTableCell1.StylePriority.UseBackColor = false; this.xrTableCell1.StylePriority.UseTextAlignment = false; this.xrTableCell1.Text = "STT"; this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell1.Weight = 0.35416665980020634D; // // xrTableCell2 // this.xrTableCell2.BackColor = System.Drawing.Color.Transparent; this.xrTableCell2.Name = "xrTableCell2"; this.xrTableCell2.StylePriority.UseBackColor = false; this.xrTableCell2.StylePriority.UseTextAlignment = false; this.xrTableCell2.Text = "Mã nhân viên"; this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell2.Weight = 0.76095745942159054D; // // xrTableCell4 // this.xrTableCell4.BackColor = System.Drawing.Color.Transparent; this.xrTableCell4.Name = "xrTableCell4"; this.xrTableCell4.StylePriority.UseBackColor = false; this.xrTableCell4.StylePriority.UseTextAlignment = false; this.xrTableCell4.Text = "Tên CBCNV"; this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell4.Weight = 1.0723756931951D; // // xrTableCell3 // this.xrTableCell3.BackColor = System.Drawing.Color.Transparent; this.xrTableCell3.Name = "xrTableCell3"; this.xrTableCell3.StylePriority.UseBackColor = false; this.xrTableCell3.StylePriority.UseTextAlignment = false; this.xrTableCell3.Text = "Ngày sinh"; this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell3.Weight = 0.84387080131405445D; // // xrTableCell5 // this.xrTableCell5.BackColor = System.Drawing.Color.Transparent; this.xrTableCell5.Name = "xrTableCell5"; this.xrTableCell5.StylePriority.UseBackColor = false; this.xrTableCell5.StylePriority.UseTextAlignment = false; this.xrTableCell5.Text = "Giới tính"; this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell5.Weight = 0.508193859455054D; // // xrTableCell6 // this.xrTableCell6.BackColor = System.Drawing.Color.Transparent; this.xrTableCell6.Name = "xrTableCell6"; this.xrTableCell6.StylePriority.UseBackColor = false; this.xrTableCell6.StylePriority.UseTextAlignment = false; this.xrTableCell6.Text = "Phòng ban"; this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell6.Weight = 1.9969026309692983D; // // xrTableCell7 // this.xrTableCell7.BackColor = System.Drawing.Color.Transparent; this.xrTableCell7.Name = "xrTableCell7"; this.xrTableCell7.StylePriority.UseBackColor = false; this.xrTableCell7.StylePriority.UseTextAlignment = false; this.xrTableCell7.Text = "Điện thoại"; this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell7.Weight = 0.89396044987645151D; // // xrTableCell8 // this.xrTableCell8.BackColor = System.Drawing.Color.Transparent; this.xrTableCell8.Name = "xrTableCell8"; this.xrTableCell8.StylePriority.UseBackColor = false; this.xrTableCell8.StylePriority.UseTextAlignment = false; this.xrTableCell8.Text = "Ngày tham gia cách mạng"; this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell8.Weight = 1.0198084990866232D; // // xrTableCell9 // this.xrTableCell9.BackColor = System.Drawing.Color.Transparent; this.xrTableCell9.Name = "xrTableCell9"; this.xrTableCell9.StylePriority.UseBackColor = false; this.xrTableCell9.StylePriority.UseTextAlignment = false; this.xrTableCell9.Text = "Ngày nhập ngũ"; this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell9.Weight = 1.1057778076844926D; // // xrTableCell11 // this.xrTableCell11.BackColor = System.Drawing.Color.Transparent; this.xrTableCell11.Name = "xrTableCell11"; this.xrTableCell11.StylePriority.UseBackColor = false; this.xrTableCell11.StylePriority.UseTextAlignment = false; this.xrTableCell11.Text = "Ngày xuất ngũ"; this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell11.Weight = 1.011681546554863D; // // xrTableCell12 // this.xrTableCell12.BackColor = System.Drawing.Color.Transparent; this.xrTableCell12.Name = "xrTableCell12"; this.xrTableCell12.StylePriority.UseBackColor = false; this.xrTableCell12.StylePriority.UseTextAlignment = false; this.xrTableCell12.Text = "Trình độ"; this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; this.xrTableCell12.Weight = 1.2622991810214075D; // // ReportFooter // this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrl_ten3, this.xrl_ten2, this.xrl_ten1, this.xrtngayketxuat, this.xrl_footer1, this.xrl_footer3, this.xrl_footer2 }); this.ReportFooter.HeightF = 208F; this.ReportFooter.Name = "ReportFooter"; // // xrl_ten3 // this.xrl_ten3.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrl_ten3.LocationFloat = new DevExpress.Utils.PointFloat(782.4998F, 150F); this.xrl_ten3.Name = "xrl_ten3"; this.xrl_ten3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrl_ten3.SizeF = new System.Drawing.SizeF(296.5F, 23F); this.xrl_ten3.StylePriority.UseFont = false; this.xrl_ten3.StylePriority.UseTextAlignment = false; this.xrl_ten3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrl_ten2 // this.xrl_ten2.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrl_ten2.LocationFloat = new DevExpress.Utils.PointFloat(369.9999F, 150F); this.xrl_ten2.Name = "xrl_ten2"; this.xrl_ten2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrl_ten2.SizeF = new System.Drawing.SizeF(302.1819F, 23F); this.xrl_ten2.StylePriority.UseFont = false; this.xrl_ten2.StylePriority.UseTextAlignment = false; this.xrl_ten2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrl_ten1 // this.xrl_ten1.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold); this.xrl_ten1.LocationFloat = new DevExpress.Utils.PointFloat(0.0001907349F, 150F); this.xrl_ten1.Name = "xrl_ten1"; this.xrl_ten1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrl_ten1.SizeF = new System.Drawing.SizeF(302.1819F, 23F); this.xrl_ten1.StylePriority.UseFont = false; this.xrl_ten1.StylePriority.UseTextAlignment = false; this.xrl_ten1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrtngayketxuat // this.xrtngayketxuat.Font = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Italic); this.xrtngayketxuat.LocationFloat = new DevExpress.Utils.PointFloat(782.4998F, 22.91667F); this.xrtngayketxuat.Name = "xrtngayketxuat"; this.xrtngayketxuat.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrtngayketxuat.SizeF = new System.Drawing.SizeF(296.5F, 23F); this.xrtngayketxuat.StylePriority.UseFont = false; this.xrtngayketxuat.StylePriority.UseTextAlignment = false; this.xrtngayketxuat.Text = "Hà Nội, ngày 15 tháng 4 năm 2013"; this.xrtngayketxuat.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrl_footer1 // this.xrl_footer1.Font = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold); this.xrl_footer1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 47.91667F); this.xrl_footer1.Name = "xrl_footer1"; this.xrl_footer1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrl_footer1.SizeF = new System.Drawing.SizeF(304.1828F, 23F); this.xrl_footer1.StylePriority.UseFont = false; this.xrl_footer1.StylePriority.UseTextAlignment = false; this.xrl_footer1.Text = "NGƯỜI LẬP"; this.xrl_footer1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrl_footer3 // this.xrl_footer3.Font = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold); this.xrl_footer3.LocationFloat = new DevExpress.Utils.PointFloat(782.4998F, 47.91667F); this.xrl_footer3.Name = "xrl_footer3"; this.xrl_footer3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrl_footer3.SizeF = new System.Drawing.SizeF(296.5002F, 23F); this.xrl_footer3.StylePriority.UseFont = false; this.xrl_footer3.StylePriority.UseTextAlignment = false; this.xrl_footer3.Text = "GIÁM ĐỐC"; this.xrl_footer3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // xrl_footer2 // this.xrl_footer2.Font = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold); this.xrl_footer2.LocationFloat = new DevExpress.Utils.PointFloat(369.9998F, 47.91667F); this.xrl_footer2.Name = "xrl_footer2"; this.xrl_footer2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrl_footer2.SizeF = new System.Drawing.SizeF(304.1828F, 23F); this.xrl_footer2.StylePriority.UseFont = false; this.xrl_footer2.StylePriority.UseTextAlignment = false; this.xrl_footer2.Text = "PHÒNG TCHC"; this.xrl_footer2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // // GroupHeader1 // this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable3 }); this.GroupHeader1.HeightF = 25.41666F; this.GroupHeader1.Name = "GroupHeader1"; // // xrTable3 // this.xrTable3.BorderColor = System.Drawing.SystemColors.ControlLight; this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTable3.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold); this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0.0001907349F, 0F); this.xrTable3.Name = "xrTable3"; this.xrTable3.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F); this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow3 }); this.xrTable3.SizeF = new System.Drawing.SizeF(1079F, 25.41666F); this.xrTable3.SnapLineMargin = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F); this.xrTable3.StylePriority.UseBorderColor = false; this.xrTable3.StylePriority.UseBorders = false; this.xrTable3.StylePriority.UseFont = false; this.xrTable3.StylePriority.UsePadding = false; this.xrTable3.StylePriority.UseTextAlignment = false; this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; // // xrTableRow3 // this.xrTableRow3.BorderColor = System.Drawing.SystemColors.ActiveCaptionText; this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrl_tenphongban }); this.xrTableRow3.Font = new System.Drawing.Font("Times New Roman", 10F); this.xrTableRow3.Name = "xrTableRow3"; this.xrTableRow3.StylePriority.UseBorderColor = false; this.xrTableRow3.StylePriority.UseFont = false; this.xrTableRow3.StylePriority.UseTextAlignment = false; this.xrTableRow3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; this.xrTableRow3.Weight = 1D; // // xrl_tenphongban // this.xrl_tenphongban.BackColor = System.Drawing.Color.Transparent; this.xrl_tenphongban.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold); this.xrl_tenphongban.Name = "xrl_tenphongban"; this.xrl_tenphongban.Padding = new DevExpress.XtraPrinting.PaddingInfo(10, 3, 3, 3, 100F); this.xrl_tenphongban.StylePriority.UseBackColor = false; this.xrl_tenphongban.StylePriority.UseFont = false; this.xrl_tenphongban.StylePriority.UsePadding = false; this.xrl_tenphongban.StylePriority.UseTextAlignment = false; this.xrl_tenphongban.Text = " sgag"; this.xrl_tenphongban.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; this.xrl_tenphongban.Weight = 10.789994608366662D; // // GroupFooter1 // this.GroupFooter1.BackColor = System.Drawing.Color.PaleGoldenrod; this.GroupFooter1.Name = "GroupFooter1"; this.GroupFooter1.StylePriority.UseBackColor = false; // // PageFooter // this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrPageInfo1 }); this.PageFooter.HeightF = 143F; this.PageFooter.Name = "PageFooter"; // // xrPageInfo1 // this.xrPageInfo1.Font = new System.Drawing.Font("Times New Roman", 11F); this.xrPageInfo1.Format = "Trang {0} của {1}"; this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(956.9578F, 34.375F); this.xrPageInfo1.Name = "xrPageInfo1"; this.xrPageInfo1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrPageInfo1.SizeF = new System.Drawing.SizeF(126.0417F, 23.00001F); this.xrPageInfo1.StylePriority.UseFont = false; this.xrPageInfo1.StylePriority.UseTextAlignment = false; this.xrPageInfo1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; // // rp_DanhSachQuanNhan // this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { this.Detail, this.TopMargin, this.BottomMargin, this.ReportHeader, this.PageHeader, this.ReportFooter, this.GroupHeader1, this.GroupFooter1, this.PageFooter }); this.Landscape = true; this.Margins = new System.Drawing.Printing.Margins(10, 7, 48, 49); this.PageHeight = 850; this.PageWidth = 1100; this.Version = "10.1"; ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); }
protected virtual void Inizializza(ImpostazioneReportDTO impostazioniReport, string noteRtf) { _impostazioniReport = impostazioniReport; // Create XtraReport instance _report = GetXtraReport(impostazioniReport, _isSubreport); _report.BeginInit(); if (!_isSubreport) { _reportHeaderBand = new ReportHeaderBand(); _reportFooterBand = new ReportFooterBand(); _topMarginBand = new TopMarginBand(); _bottomMarginBand = new BottomMarginBand(); _pageFooterBand = new PageFooterBand(); } _pageHeaderBand = new PageHeaderBand(); _detailBand = new DetailBand(); // // Report Header // if (_reportHeaderBand != null) { _reportHeaderBand.Name = "ReportHeader"; _reportHeaderBand.Padding = new PaddingInfo(0, 0, 0, 0, 100F); _reportHeaderBand.TextAlignment = TextAlignment.TopLeft; } // // Report Footer // if (_reportFooterBand != null) { _reportFooterBand.Name = "ReportFooter"; _reportFooterBand.Padding = new PaddingInfo(0, 0, 0, 0, 100F); _reportFooterBand.TextAlignment = TextAlignment.TopLeft; } // // Page Header // if (_pageHeaderBand != null) { _pageHeaderBand.Name = "PageHeader"; _pageHeaderBand.Padding = new PaddingInfo(0, 0, 0, 0, 100F); _pageHeaderBand.TextAlignment = TextAlignment.TopLeft; if (_isSubreport) _pageHeaderBand.HeightF = 40f; } // // Page Footer // if (_pageFooterBand != null) { _pageFooterBand.Name = "PageFooter"; _pageFooterBand.Padding = new PaddingInfo(0, 0, 0, 0, 100F); _pageFooterBand.TextAlignment = TextAlignment.TopLeft; } // // TopMargin // if (_topMarginBand != null) { _topMarginBand.Name = "TopMargin"; _topMarginBand.Padding = new PaddingInfo(0, 0, 0, 0, 100F); _topMarginBand.TextAlignment = TextAlignment.TopLeft; _topMarginBand.HeightF = 10; } // // BottomMargin // if (_bottomMarginBand != null) { _bottomMarginBand.Name = "BottomMargin"; _bottomMarginBand.Padding = new PaddingInfo(0, 0, 0, 0, 100F); _bottomMarginBand.TextAlignment = TextAlignment.TopLeft; _bottomMarginBand.HeightF = 10; } // // Detail // _detailBand.Name = "Detail"; _detailBand.Padding = new PaddingInfo(0, 0, 0, 0, 100F); _detailBand.TextAlignment = TextAlignment.TopLeft; // // RipartoConsuntivo // _report.Bands.Add(_detailBand); if (_reportHeaderBand != null) _report.Bands.Add(_reportHeaderBand); if (_reportFooterBand != null) _report.Bands.Add(_reportFooterBand); if (_pageHeaderBand != null) _report.Bands.Add(_pageHeaderBand); if (_pageFooterBand != null) _report.Bands.Add(_pageFooterBand); if (_topMarginBand != null) _report.Bands.Add(_topMarginBand); if (_bottomMarginBand != null) _report.Bands.Add(_bottomMarginBand); _report.BeforePrint += RipartoConsuntivo_BeforePrint; if(!_isSubreport && _addLogo) addLogo(); if (!_isSubreport && _addPageNumberFooter) addFooter(); }