private void pivotGridControl1_CustomSummary(object sender, DevExpress.XtraPivotGrid.PivotGridCustomSummaryEventArgs e) { if (e.DataField != fieldPercentualeCopertura1) { return; } if (ReferenceEquals(e.ColumnField, null) || ReferenceEquals(e.RowField, null)) { //this is Grand Total cell e.CustomValue = (decimal)e.SummaryValue.Summary / ressourceCount; return; } DevExpress.XtraPivotGrid.PivotGridControl pivot = sender as DevExpress.XtraPivotGrid.PivotGridControl; int lastRowFieldIndex = pivot.Fields.GetVisibleFieldCount(DevExpress.XtraPivotGrid.PivotArea.RowArea) - 1; int lastColumnFieldIndex = pivot.Fields.GetVisibleFieldCount(DevExpress.XtraPivotGrid.PivotArea.ColumnArea) - 1; if (e.RowField.AreaIndex == lastRowFieldIndex && e.ColumnField.AreaIndex == lastColumnFieldIndex) { //this is Ordinary cell e.CustomValue = e.SummaryValue.Summary; } else { //this is Total cell e.CustomValue = (decimal)e.SummaryValue.Summary / ressourceCount; } }
private void InvalidateCell(DevExpress.XtraPivotGrid.PivotGridControl pivot, Point cell) { if (cell != new Point(-1, -1)) { pivot.Invalidate(pivot.Cells.GetCellInfo(cell.X, cell.Y).Bounds); } }
private void CreatePivotGrid() { DevExpress.XtraPivotGrid.PivotGridField fieldMonth = new PivotGridField(); DevExpress.XtraPivotGrid.PivotGridField fieldSalesValue = new PivotGridField(); DevExpress.XtraPivotGrid.PivotGridField fieldYear = new PivotGridField(); // // pivotGridControl1 // this.pivotGridControl1 = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridControl1.DataSource = new SalesData().Tables[0]; this.pivotGridControl1.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { fieldYear, fieldMonth, fieldSalesValue }); this.pivotGridControl1.OptionsChartDataSource.SelectionOnly = false; this.pivotGridControl1.OptionsChartDataSource.ProvideColumnTotals = false; this.pivotGridControl1.OptionsChartDataSource.ProvideRowTotals = false; this.pivotGridControl1.OptionsChartDataSource.ProvideColumnGrandTotals = false; this.pivotGridControl1.OptionsChartDataSource.ProvideRowGrandTotals = false; // // fieldYear // fieldYear.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; fieldYear.AreaIndex = 0; fieldYear.FieldName = "Day"; fieldYear.GroupInterval = DevExpress.XtraPivotGrid.PivotGroupInterval.DateYear; fieldYear.Name = "fieldYear"; fieldYear.UnboundFieldName = "fieldYear"; // // fieldMonth // fieldMonth.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; fieldMonth.AreaIndex = 1; fieldMonth.FieldName = "Day"; fieldMonth.GroupInterval = DevExpress.XtraPivotGrid.PivotGroupInterval.DateMonth; fieldMonth.Name = "fieldMonth"; fieldMonth.UnboundFieldName = "fieldDay"; // // fieldSalesValue // fieldSalesValue.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; fieldSalesValue.AreaIndex = 0; fieldSalesValue.FieldName = "SalesValue"; fieldSalesValue.Name = "fieldSalesValue"; // Show a resulting PivotGridControl Form form = new Form(); pivotGridControl1.Dock = DockStyle.Fill; form.Controls.Add(pivotGridControl1); form.Show(); }
private void SetPivotGrid(DataTable dt, DevExpress.XtraPivotGrid.PivotGridControl pivotGrid) { XtraPivotGridHelper.DataViewTable dataTable = new XtraPivotGridHelper.DataViewTable(); foreach (DataColumn info in dt.Columns) { dataTable.AddColumn(info.ColumnName, info.ColumnName, info.DataType, PivotArea.RowArea, null, null); } pivotGrid.BeginUpdate(); pivotGrid.ClearPivotGridFields(); pivotGrid.CreatePivotGridFields(dataTable); pivotGrid.DataSource = dt; pivotGrid.EndUpdate(); pivotGrid.BestFit(); }
internal void CargarOGuardarDisenios(DevExpress.XtraPivotGrid.PivotGridControl control, bool guardar, string usuario, string nombreVista) { string direccion; if (guardar) { direccion = $@"{Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)}\{control.Name}{nombreVista}{usuario}.xml"; control.SaveLayoutToXml(direccion); } else { direccion = $@"{Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)}\{control.Name}{nombreVista}{usuario}.xml"; if (File.Exists(direccion)) { control.RestoreLayoutFromXml(direccion); } } }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.gridStaffPerformance = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.luedtRPStaffSalesPerfmEmpID = new DevExpress.XtraEditors.LookUpEdit(); this.luedtRPStaffSalesPerfmCategory = new DevExpress.XtraEditors.LookUpEdit(); this.label3 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.label5 = new System.Windows.Forms.Label(); this.label6 = new System.Windows.Forms.Label(); this.label7 = new System.Windows.Forms.Label(); this.cmbMonthFrm = new DevExpress.XtraEditors.ImageComboBoxEdit(); this.cmbMonthTo = new DevExpress.XtraEditors.ImageComboBoxEdit(); this.sbtnReset = new DevExpress.XtraEditors.SimpleButton(); this.btnReset = new DevExpress.XtraEditors.SimpleButton(); this.cmbYearFrm = new DevExpress.XtraEditors.ImageComboBoxEdit(); this.cmbYearTo = new DevExpress.XtraEditors.ImageComboBoxEdit(); ((System.ComponentModel.ISupportInitialize)(this.gridStaffPerformance)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmEmpID.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmCategory.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbMonthFrm.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbMonthTo.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbYearFrm.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbYearTo.Properties)).BeginInit(); this.SuspendLayout(); // // gridStaffPerformance // this.gridStaffPerformance.Cursor = System.Windows.Forms.Cursors.Default; this.gridStaffPerformance.Dock = System.Windows.Forms.DockStyle.Bottom; this.gridStaffPerformance.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField3, this.pivotGridField4 }); this.gridStaffPerformance.Location = new System.Drawing.Point(0, 62); this.gridStaffPerformance.Name = "gridStaffPerformance"; this.gridStaffPerformance.OptionsCustomization.AllowDrag = false; this.gridStaffPerformance.OptionsCustomization.AllowExpand = false; this.gridStaffPerformance.OptionsCustomization.AllowFilter = false; this.gridStaffPerformance.OptionsCustomization.AllowSort = false; this.gridStaffPerformance.OptionsView.ShowDataHeaders = false; this.gridStaffPerformance.OptionsView.ShowFilterHeaders = false; this.gridStaffPerformance.Size = new System.Drawing.Size(976, 400); this.gridStaffPerformance.TabIndex = 0; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField1.AreaIndex = 0; this.pivotGridField1.Caption = "Year"; this.pivotGridField1.FieldName = "dtDate"; this.pivotGridField1.GroupInterval = DevExpress.XtraPivotGrid.PivotGroupInterval.DateYear; this.pivotGridField1.Name = "pivotGridField1"; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField2.AreaIndex = 1; this.pivotGridField2.Caption = "Month"; this.pivotGridField2.FieldName = "dtDate"; this.pivotGridField2.GroupInterval = DevExpress.XtraPivotGrid.PivotGroupInterval.DateMonth; this.pivotGridField2.Name = "pivotGridField2"; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField3.AreaIndex = 0; this.pivotGridField3.Caption = "Branch"; this.pivotGridField3.FieldName = "strBranchCode"; this.pivotGridField3.Name = "pivotGridField3"; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField4.AreaIndex = 0; this.pivotGridField4.Caption = "Amount"; this.pivotGridField4.FieldName = "mNettAmount"; this.pivotGridField4.Name = "pivotGridField4"; // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label1.Location = new System.Drawing.Point(8, 32); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(72, 16); this.label1.TabIndex = 3; this.label1.Text = "Category"; // // label2 // this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label2.Location = new System.Drawing.Point(240, 32); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(40, 16); this.label2.TabIndex = 4; this.label2.Text = "Staff"; // // luedtRPStaffSalesPerfmEmpID // this.luedtRPStaffSalesPerfmEmpID.EditValue = ""; this.luedtRPStaffSalesPerfmEmpID.Location = new System.Drawing.Point(288, 32); this.luedtRPStaffSalesPerfmEmpID.Name = "luedtRPStaffSalesPerfmEmpID"; // // luedtRPStaffSalesPerfmEmpID.Properties // this.luedtRPStaffSalesPerfmEmpID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.luedtRPStaffSalesPerfmEmpID.Size = new System.Drawing.Size(168, 22); this.luedtRPStaffSalesPerfmEmpID.TabIndex = 43; // // luedtRPStaffSalesPerfmCategory // this.luedtRPStaffSalesPerfmCategory.EditValue = ""; this.luedtRPStaffSalesPerfmCategory.Location = new System.Drawing.Point(80, 32); this.luedtRPStaffSalesPerfmCategory.Name = "luedtRPStaffSalesPerfmCategory"; // // luedtRPStaffSalesPerfmCategory.Properties // this.luedtRPStaffSalesPerfmCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.luedtRPStaffSalesPerfmCategory.Size = new System.Drawing.Size(152, 22); this.luedtRPStaffSalesPerfmCategory.TabIndex = 44; // // label3 // this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label3.Location = new System.Drawing.Point(8, 8); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(72, 23); this.label3.TabIndex = 45; this.label3.Text = "Year"; // // label4 // this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label4.Location = new System.Drawing.Point(296, 8); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(48, 23); this.label4.TabIndex = 46; this.label4.Text = "Year"; // // label5 // this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label5.Location = new System.Drawing.Point(112, 8); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(48, 23); this.label5.TabIndex = 47; this.label5.Text = "Month"; // // label6 // this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label6.Location = new System.Drawing.Point(400, 8); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(48, 23); this.label6.TabIndex = 48; this.label6.Text = "Month"; // // label7 // this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label7.Location = new System.Drawing.Point(256, 8); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(24, 23); this.label7.TabIndex = 53; this.label7.Text = "To"; // // cmbMonthFrm // this.cmbMonthFrm.EditValue = 1; this.cmbMonthFrm.Location = new System.Drawing.Point(160, 8); this.cmbMonthFrm.Name = "cmbMonthFrm"; // // cmbMonthFrm.Properties // this.cmbMonthFrm.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.cmbMonthFrm.Properties.Items.AddRange(new object[] { new DevExpress.XtraEditors.Controls.ImageComboBoxItem("January", 1, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("February", 2, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("March", 3, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("April", 4, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("May", 5, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("June", 6, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("July", 7, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("August", 8, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("September", 9, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("October", 10, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("November", 11, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("December", 12, -1) }); this.cmbMonthFrm.Size = new System.Drawing.Size(80, 22); this.cmbMonthFrm.TabIndex = 56; // // cmbMonthTo // this.cmbMonthTo.EditValue = 1; this.cmbMonthTo.Location = new System.Drawing.Point(448, 8); this.cmbMonthTo.Name = "cmbMonthTo"; // // cmbMonthTo.Properties // this.cmbMonthTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.cmbMonthTo.Properties.Items.AddRange(new object[] { new DevExpress.XtraEditors.Controls.ImageComboBoxItem("January", 1, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("February", 2, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("March", 3, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("April", 4, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("May", 5, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("June", 6, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("July", 7, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("August", 8, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("September", 9, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("October", 10, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("November", 11, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("December", 12, -1) }); this.cmbMonthTo.Size = new System.Drawing.Size(88, 22); this.cmbMonthTo.TabIndex = 57; // // sbtnReset // this.sbtnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.sbtnReset.Appearance.Options.UseFont = true; this.sbtnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnReset.Location = new System.Drawing.Point(464, 32); this.sbtnReset.LookAndFeel.UseDefaultLookAndFeel = false; this.sbtnReset.Name = "sbtnReset"; this.sbtnReset.Size = new System.Drawing.Size(56, 16); this.sbtnReset.TabIndex = 195; this.sbtnReset.Text = "Enquiry"; this.sbtnReset.Click += new System.EventHandler(this.sbtnReset_Click); // // btnReset // this.btnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.btnReset.Appearance.Options.UseFont = true; this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.btnReset.Location = new System.Drawing.Point(528, 32); this.btnReset.LookAndFeel.UseDefaultLookAndFeel = false; this.btnReset.Name = "btnReset"; this.btnReset.Size = new System.Drawing.Size(56, 16); this.btnReset.TabIndex = 196; this.btnReset.Text = "Reset"; this.btnReset.Click += new System.EventHandler(this.btnReset_Click); // // cmbYearFrm // this.cmbYearFrm.Location = new System.Drawing.Point(48, 8); this.cmbYearFrm.Name = "cmbYearFrm"; // // cmbYearFrm.Properties // this.cmbYearFrm.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.cmbYearFrm.Size = new System.Drawing.Size(64, 22); this.cmbYearFrm.TabIndex = 197; // // cmbYearTo // this.cmbYearTo.Location = new System.Drawing.Point(336, 8); this.cmbYearTo.Name = "cmbYearTo"; // // cmbYearTo.Properties // this.cmbYearTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.cmbYearTo.Size = new System.Drawing.Size(64, 22); this.cmbYearTo.TabIndex = 198; // // RPStaffReport // this.AutoScale = false; this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(976, 462); this.Controls.Add(this.cmbYearTo); this.Controls.Add(this.cmbYearFrm); this.Controls.Add(this.btnReset); this.Controls.Add(this.sbtnReset); this.Controls.Add(this.cmbMonthTo); this.Controls.Add(this.cmbMonthFrm); this.Controls.Add(this.label7); this.Controls.Add(this.label6); this.Controls.Add(this.label5); this.Controls.Add(this.label4); this.Controls.Add(this.label3); this.Controls.Add(this.luedtRPStaffSalesPerfmCategory); this.Controls.Add(this.luedtRPStaffSalesPerfmEmpID); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.gridStaffPerformance); this.Name = "RPStaffReport"; this.Text = "Staff Sales Performance"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RPStaffReport_Load); ((System.ComponentModel.ISupportInitialize)(this.gridStaffPerformance)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmEmpID.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmCategory.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbMonthFrm.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbMonthTo.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbYearFrm.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbYearTo.Properties)).EndInit(); this.ResumeLayout(false); }
/// <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.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode(); this.gvReceiptPayment = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridReceipt = new DevExpress.XtraGrid.GridControl(); this.gvReceipt = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn(); this.GridTotalCollection = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.dateEdit1 = new DevExpress.XtraEditors.DateEdit(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.GridSingleTreatment = new DevExpress.XtraGrid.GridControl(); this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridSpaPackage = new DevExpress.XtraGrid.GridControl(); this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn(); this.label5 = new System.Windows.Forms.Label(); this.label6 = new System.Windows.Forms.Label(); this.label7 = new System.Windows.Forms.Label(); this.label8 = new System.Windows.Forms.Label(); this.gridVouchers = new DevExpress.XtraGrid.GridControl(); this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridFreeSpa = new DevExpress.XtraGrid.GridControl(); this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn(); this.label9 = new System.Windows.Forms.Label(); this.gridTreatment = new DevExpress.XtraGrid.GridControl(); this.gridView5 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn(); this.label10 = new System.Windows.Forms.Label(); this.label11 = new System.Windows.Forms.Label(); this.GridIPLPackage = new DevExpress.XtraGrid.GridControl(); this.gridView6 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn(); this.GridSpaProduct = new DevExpress.XtraGrid.GridControl(); this.gridView7 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn(); this.label12 = new System.Windows.Forms.Label(); this.gridCreditPackage = new DevExpress.XtraGrid.GridControl(); this.gridView8 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn(); this.cmbBranch = new DevExpress.XtraEditors.ImageComboBoxEdit(); this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components); this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components); this.printableComponentLink2 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components); this.printableComponentLink3 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components); this.printableComponentLink4 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components); this.printableComponentLink5 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components); this.printableComponentLink6 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components); this.printableComponentLink7 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components); this.printableComponentLink8 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components); this.printableComponentLink9 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components); this.printableComponentLink10 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components); this.PRINT1 = new DevExpress.XtraEditors.HyperLinkEdit(); this.PRINT2 = new DevExpress.XtraEditors.HyperLinkEdit(); this.PRINT3 = new DevExpress.XtraEditors.HyperLinkEdit(); this.PRINT4 = new DevExpress.XtraEditors.HyperLinkEdit(); this.PRINT5 = new DevExpress.XtraEditors.HyperLinkEdit(); this.PRINT6 = new DevExpress.XtraEditors.HyperLinkEdit(); this.PRINT7 = new DevExpress.XtraEditors.HyperLinkEdit(); this.PRINT8 = new DevExpress.XtraEditors.HyperLinkEdit(); this.PRINT9 = new DevExpress.XtraEditors.HyperLinkEdit(); ((System.ComponentModel.ISupportInitialize)(this.gvReceiptPayment)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridReceipt)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gvReceipt)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.GridTotalCollection)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.GridSingleTreatment)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridSpaPackage)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridVouchers)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridFreeSpa)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridTreatment)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView5)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.GridIPLPackage)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.GridSpaProduct)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView7)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridCreditPackage)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView8)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT2.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT3.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT4.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT5.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT6.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT7.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT8.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT9.Properties)).BeginInit(); this.SuspendLayout(); // // gvReceiptPayment // this.gvReceiptPayment.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.gridColumn27, this.gridColumn28}); this.gvReceiptPayment.GridControl = this.gridReceipt; this.gvReceiptPayment.Name = "gvReceiptPayment"; this.gvReceiptPayment.OptionsBehavior.Editable = false; this.gvReceiptPayment.OptionsCustomization.AllowColumnMoving = false; this.gvReceiptPayment.OptionsCustomization.AllowColumnResizing = false; this.gvReceiptPayment.OptionsCustomization.AllowFilter = false; this.gvReceiptPayment.OptionsCustomization.AllowSort = false; this.gvReceiptPayment.OptionsMenu.EnableColumnMenu = false; this.gvReceiptPayment.OptionsMenu.EnableGroupPanelMenu = false; this.gvReceiptPayment.OptionsPrint.ExpandAllDetails = true; this.gvReceiptPayment.OptionsPrint.PrintDetails = true; this.gvReceiptPayment.OptionsPrint.UsePrintStyles = true; this.gvReceiptPayment.OptionsView.ShowGroupPanel = false; // // gridColumn27 // this.gridColumn27.Caption = "Payment Code"; this.gridColumn27.FieldName = "Payment Code"; this.gridColumn27.Name = "gridColumn27"; this.gridColumn27.Visible = true; this.gridColumn27.VisibleIndex = 0; // // gridColumn28 // this.gridColumn28.Caption = "Amount"; this.gridColumn28.FieldName = "Amount"; this.gridColumn28.Name = "gridColumn28"; this.gridColumn28.Visible = true; this.gridColumn28.VisibleIndex = 1; // // gridReceipt // // // gridReceipt.EmbeddedNavigator // this.gridReceipt.EmbeddedNavigator.Name = ""; gridLevelNode1.LevelTemplate = this.gvReceiptPayment; gridLevelNode1.RelationName = "ReceiptPayment"; this.gridReceipt.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] { gridLevelNode1}); this.gridReceipt.Location = new System.Drawing.Point(16, 56); this.gridReceipt.MainView = this.gvReceipt; this.gridReceipt.Name = "gridReceipt"; this.gridReceipt.Size = new System.Drawing.Size(624, 184); this.gridReceipt.TabIndex = 0; this.gridReceipt.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gvReceipt, this.gvReceiptPayment}); // gvReceipt // this.gvReceipt.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.gridColumn1, this.gridColumn2}); this.gvReceipt.GridControl = this.gridReceipt; this.gvReceipt.Name = "gvReceipt"; this.gvReceipt.OptionsBehavior.AutoExpandAllGroups = true; this.gvReceipt.OptionsCustomization.AllowSort = false; this.gvReceipt.OptionsPrint.ExpandAllDetails = true; this.gvReceipt.OptionsPrint.PrintDetails = true; this.gvReceipt.OptionsPrint.UsePrintStyles = true; this.gvReceipt.OptionsView.ShowGroupedColumns = true; this.gvReceipt.OptionsView.ShowGroupPanel = false; // // gridColumn1 // this.gridColumn1.Caption = "Receipt No"; this.gridColumn1.FieldName = "strReceiptNo"; this.gridColumn1.Name = "gridColumn1"; this.gridColumn1.Visible = true; this.gridColumn1.VisibleIndex = 0; this.gridColumn1.Width = 297; // // gridColumn2 // this.gridColumn2.Caption = "Shift"; this.gridColumn2.FieldName = "nShiftID"; this.gridColumn2.Name = "gridColumn2"; this.gridColumn2.Visible = true; this.gridColumn2.VisibleIndex = 1; this.gridColumn2.Width = 313; // // GridTotalCollection // this.GridTotalCollection.Cursor = System.Windows.Forms.Cursors.Default; this.GridTotalCollection.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2}); this.GridTotalCollection.Location = new System.Drawing.Point(648, 56); this.GridTotalCollection.Name = "GridTotalCollection"; this.GridTotalCollection.OptionsCustomization.AllowDrag = false; this.GridTotalCollection.OptionsCustomization.AllowExpand = false; this.GridTotalCollection.OptionsCustomization.AllowFilter = false; this.GridTotalCollection.OptionsCustomization.AllowSort = false; this.GridTotalCollection.OptionsView.ShowColumnHeaders = false; this.GridTotalCollection.OptionsView.ShowDataHeaders = false; this.GridTotalCollection.OptionsView.ShowFilterHeaders = false; this.GridTotalCollection.Size = new System.Drawing.Size(272, 184); this.GridTotalCollection.TabIndex = 1; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField1.AreaIndex = 0; this.pivotGridField1.Caption = "Payment Mode"; this.pivotGridField1.FieldName = "strPaymentCode"; this.pivotGridField1.Name = "pivotGridField1"; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField2.AreaIndex = 0; this.pivotGridField2.Caption = "Amount"; this.pivotGridField2.FieldName = "mAmount"; this.pivotGridField2.Name = "pivotGridField2"; // // dateEdit1 // this.dateEdit1.EditValue = null; this.dateEdit1.Location = new System.Drawing.Point(56, 8); this.dateEdit1.Name = "dateEdit1"; // // dateEdit1.Properties // this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.dateEdit1.Size = new System.Drawing.Size(96, 20); this.dateEdit1.TabIndex = 2; this.dateEdit1.EditValueChanged += new System.EventHandler(this.dateEdit1_EditValueChanged); // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label1.Location = new System.Drawing.Point(8, 8); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(40, 23); this.label1.TabIndex = 3; this.label1.Text = "Date"; // // label2 // this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label2.Location = new System.Drawing.Point(168, 8); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(56, 23); this.label2.TabIndex = 5; this.label2.Text = "Branch"; // // label3 // this.label3.BackColor = System.Drawing.Color.Transparent; this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label3.Location = new System.Drawing.Point(24, 32); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(144, 23); this.label3.TabIndex = 6; this.label3.Text = "Receipt Generated"; this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label4 // this.label4.BackColor = System.Drawing.Color.Transparent; this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label4.Location = new System.Drawing.Point(648, 32); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(176, 23); this.label4.TabIndex = 7; this.label4.Text = "Total Collection"; this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // GridSingleTreatment // // // GridSingleTreatment.EmbeddedNavigator // this.GridSingleTreatment.EmbeddedNavigator.Name = ""; this.GridSingleTreatment.Location = new System.Drawing.Point(16, 272); this.GridSingleTreatment.MainView = this.gridView1; this.GridSingleTreatment.Name = "GridSingleTreatment"; this.GridSingleTreatment.Size = new System.Drawing.Size(464, 184); this.GridSingleTreatment.TabIndex = 8; this.GridSingleTreatment.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridView1}); // // gridView1 // this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.gridColumn3, this.gridColumn4, this.gridColumn5}); this.gridView1.GridControl = this.GridSingleTreatment; this.gridView1.Name = "gridView1"; this.gridView1.OptionsBehavior.Editable = false; this.gridView1.OptionsCustomization.AllowFilter = false; this.gridView1.OptionsCustomization.AllowSort = false; this.gridView1.OptionsView.ShowGroupPanel = false; // // gridColumn3 // this.gridColumn3.Caption = "Code"; this.gridColumn3.FieldName = "Code"; this.gridColumn3.Name = "gridColumn3"; this.gridColumn3.Visible = true; this.gridColumn3.VisibleIndex = 0; this.gridColumn3.Width = 55; // // gridColumn4 // this.gridColumn4.Caption = "Description"; this.gridColumn4.FieldName = "Description"; this.gridColumn4.Name = "gridColumn4"; this.gridColumn4.Visible = true; this.gridColumn4.VisibleIndex = 1; this.gridColumn4.Width = 155; // // gridColumn5 // this.gridColumn5.Caption = "Total"; this.gridColumn5.FieldName = "Quantity"; this.gridColumn5.Name = "gridColumn5"; this.gridColumn5.Visible = true; this.gridColumn5.VisibleIndex = 2; this.gridColumn5.Width = 80; // // gridSpaPackage // // // gridSpaPackage.EmbeddedNavigator // this.gridSpaPackage.EmbeddedNavigator.Name = ""; this.gridSpaPackage.Location = new System.Drawing.Point(488, 272); this.gridSpaPackage.MainView = this.gridView2; this.gridSpaPackage.Name = "gridSpaPackage"; this.gridSpaPackage.Size = new System.Drawing.Size(432, 184); this.gridSpaPackage.TabIndex = 9; this.gridSpaPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridView2}); // // gridView2 // this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.gridColumn6, this.gridColumn7, this.gridColumn8}); this.gridView2.GridControl = this.gridSpaPackage; this.gridView2.Name = "gridView2"; this.gridView2.OptionsBehavior.Editable = false; this.gridView2.OptionsCustomization.AllowFilter = false; this.gridView2.OptionsCustomization.AllowSort = false; this.gridView2.OptionsView.ShowGroupPanel = false; // // gridColumn6 // this.gridColumn6.Caption = "Code"; this.gridColumn6.FieldName = "Code"; this.gridColumn6.Name = "gridColumn6"; this.gridColumn6.Visible = true; this.gridColumn6.VisibleIndex = 0; this.gridColumn6.Width = 55; // // gridColumn7 // this.gridColumn7.Caption = "Description"; this.gridColumn7.FieldName = "Description"; this.gridColumn7.Name = "gridColumn7"; this.gridColumn7.Visible = true; this.gridColumn7.VisibleIndex = 1; this.gridColumn7.Width = 155; // // gridColumn8 // this.gridColumn8.Caption = "Total"; this.gridColumn8.FieldName = "Quantity"; this.gridColumn8.Name = "gridColumn8"; this.gridColumn8.Visible = true; this.gridColumn8.VisibleIndex = 2; this.gridColumn8.Width = 80; // // label5 // this.label5.BackColor = System.Drawing.Color.Transparent; this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label5.Location = new System.Drawing.Point(24, 248); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(176, 23); this.label5.TabIndex = 10; this.label5.Text = "Spa Single Treatment"; this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label6 // this.label6.BackColor = System.Drawing.Color.Transparent; this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label6.Location = new System.Drawing.Point(488, 248); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(176, 23); this.label6.TabIndex = 11; this.label6.Text = "Spa Package"; this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label7 // this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label7.Location = new System.Drawing.Point(488, 912); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(176, 23); this.label7.TabIndex = 15; this.label7.Text = "Vouchers"; // // label8 // this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label8.Location = new System.Drawing.Point(24, 912); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(176, 23); this.label8.TabIndex = 14; this.label8.Text = "Free Spa Menu Trial"; // // gridVouchers // // // gridVouchers.EmbeddedNavigator // this.gridVouchers.EmbeddedNavigator.Name = ""; this.gridVouchers.Location = new System.Drawing.Point(488, 936); this.gridVouchers.MainView = this.gridView3; this.gridVouchers.Name = "gridVouchers"; this.gridVouchers.Size = new System.Drawing.Size(432, 160); this.gridVouchers.TabIndex = 13; this.gridVouchers.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridView3}); // // gridView3 // this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.gridColumn9, this.gridColumn10, this.gridColumn11}); this.gridView3.GridControl = this.gridVouchers; this.gridView3.Name = "gridView3"; this.gridView3.OptionsBehavior.Editable = false; this.gridView3.OptionsCustomization.AllowFilter = false; this.gridView3.OptionsCustomization.AllowSort = false; this.gridView3.OptionsView.ShowGroupPanel = false; // // gridColumn9 // this.gridColumn9.Caption = "Code"; this.gridColumn9.FieldName = "Code"; this.gridColumn9.Name = "gridColumn9"; this.gridColumn9.Visible = true; this.gridColumn9.VisibleIndex = 0; this.gridColumn9.Width = 55; // // gridColumn10 // this.gridColumn10.Caption = "Description"; this.gridColumn10.FieldName = "Description"; this.gridColumn10.Name = "gridColumn10"; this.gridColumn10.Visible = true; this.gridColumn10.VisibleIndex = 1; this.gridColumn10.Width = 155; // // gridColumn11 // this.gridColumn11.Caption = "Total"; this.gridColumn11.FieldName = "Quantity"; this.gridColumn11.Name = "gridColumn11"; this.gridColumn11.Visible = true; this.gridColumn11.VisibleIndex = 2; this.gridColumn11.Width = 80; // // gridFreeSpa // // // gridFreeSpa.EmbeddedNavigator // this.gridFreeSpa.EmbeddedNavigator.Name = ""; this.gridFreeSpa.Location = new System.Drawing.Point(16, 936); this.gridFreeSpa.MainView = this.gridView4; this.gridFreeSpa.Name = "gridFreeSpa"; this.gridFreeSpa.Size = new System.Drawing.Size(464, 160); this.gridFreeSpa.TabIndex = 12; this.gridFreeSpa.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridView4}); // // gridView4 // this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.gridColumn12, this.gridColumn13, this.gridColumn14}); this.gridView4.GridControl = this.gridFreeSpa; this.gridView4.Name = "gridView4"; this.gridView4.OptionsBehavior.Editable = false; this.gridView4.OptionsCustomization.AllowFilter = false; this.gridView4.OptionsCustomization.AllowSort = false; this.gridView4.OptionsView.ShowGroupPanel = false; // // gridColumn12 // this.gridColumn12.Caption = "Code"; this.gridColumn12.FieldName = "Code"; this.gridColumn12.Name = "gridColumn12"; this.gridColumn12.Visible = true; this.gridColumn12.VisibleIndex = 0; this.gridColumn12.Width = 55; // // gridColumn13 // this.gridColumn13.Caption = "Description"; this.gridColumn13.FieldName = "Description"; this.gridColumn13.Name = "gridColumn13"; this.gridColumn13.Visible = true; this.gridColumn13.VisibleIndex = 1; this.gridColumn13.Width = 155; // // gridColumn14 // this.gridColumn14.Caption = "Total"; this.gridColumn14.FieldName = "Quantity"; this.gridColumn14.Name = "gridColumn14"; this.gridColumn14.Visible = true; this.gridColumn14.VisibleIndex = 2; this.gridColumn14.Width = 80; // // label9 // this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label9.Location = new System.Drawing.Point(24, 688); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(176, 23); this.label9.TabIndex = 17; this.label9.Text = "Treatment"; // // gridTreatment // // // gridTreatment.EmbeddedNavigator // this.gridTreatment.EmbeddedNavigator.Name = ""; this.gridTreatment.Location = new System.Drawing.Point(16, 704); this.gridTreatment.MainView = this.gridView5; this.gridTreatment.Name = "gridTreatment"; this.gridTreatment.Size = new System.Drawing.Size(464, 192); this.gridTreatment.TabIndex = 16; this.gridTreatment.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridView5}); // // gridView5 // this.gridView5.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.gridColumn15, this.gridColumn16, this.gridColumn17}); this.gridView5.GridControl = this.gridTreatment; this.gridView5.Name = "gridView5"; this.gridView5.OptionsBehavior.Editable = false; this.gridView5.OptionsCustomization.AllowFilter = false; this.gridView5.OptionsCustomization.AllowSort = false; this.gridView5.OptionsView.ShowGroupPanel = false; // // gridColumn15 // this.gridColumn15.Caption = "Code"; this.gridColumn15.FieldName = "Code"; this.gridColumn15.Name = "gridColumn15"; this.gridColumn15.Visible = true; this.gridColumn15.VisibleIndex = 0; this.gridColumn15.Width = 55; // // gridColumn16 // this.gridColumn16.Caption = "Description"; this.gridColumn16.FieldName = "Description"; this.gridColumn16.Name = "gridColumn16"; this.gridColumn16.Visible = true; this.gridColumn16.VisibleIndex = 1; this.gridColumn16.Width = 155; // // gridColumn17 // this.gridColumn17.Caption = "Total"; this.gridColumn17.FieldName = "Quantity"; this.gridColumn17.Name = "gridColumn17"; this.gridColumn17.Visible = true; this.gridColumn17.VisibleIndex = 2; this.gridColumn17.Width = 80; // // label10 // this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label10.Location = new System.Drawing.Point(488, 464); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(224, 23); this.label10.TabIndex = 21; this.label10.Text = "IPL Package"; // // label11 // this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label11.Location = new System.Drawing.Point(24, 464); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(176, 23); this.label11.TabIndex = 20; this.label11.Text = "Spa Product"; // // GridIPLPackage // // // GridIPLPackage.EmbeddedNavigator // this.GridIPLPackage.EmbeddedNavigator.Name = ""; this.GridIPLPackage.Location = new System.Drawing.Point(488, 488); this.GridIPLPackage.MainView = this.gridView6; this.GridIPLPackage.Name = "GridIPLPackage"; this.GridIPLPackage.Size = new System.Drawing.Size(432, 192); this.GridIPLPackage.TabIndex = 19; this.GridIPLPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridView6}); // // gridView6 // this.gridView6.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.gridColumn18, this.gridColumn19, this.gridColumn20}); this.gridView6.GridControl = this.GridIPLPackage; this.gridView6.Name = "gridView6"; this.gridView6.OptionsBehavior.Editable = false; this.gridView6.OptionsCustomization.AllowFilter = false; this.gridView6.OptionsCustomization.AllowSort = false; this.gridView6.OptionsView.ShowGroupPanel = false; // // gridColumn18 // this.gridColumn18.Caption = "Code"; this.gridColumn18.FieldName = "Code"; this.gridColumn18.Name = "gridColumn18"; this.gridColumn18.Visible = true; this.gridColumn18.VisibleIndex = 0; this.gridColumn18.Width = 55; // // gridColumn19 // this.gridColumn19.Caption = "Description"; this.gridColumn19.FieldName = "Description"; this.gridColumn19.Name = "gridColumn19"; this.gridColumn19.Visible = true; this.gridColumn19.VisibleIndex = 1; this.gridColumn19.Width = 155; // // gridColumn20 // this.gridColumn20.Caption = "Total"; this.gridColumn20.FieldName = "Quantity"; this.gridColumn20.Name = "gridColumn20"; this.gridColumn20.Visible = true; this.gridColumn20.VisibleIndex = 2; this.gridColumn20.Width = 80; // // GridSpaProduct // // // GridSpaProduct.EmbeddedNavigator // this.GridSpaProduct.EmbeddedNavigator.Name = ""; this.GridSpaProduct.Location = new System.Drawing.Point(16, 488); this.GridSpaProduct.MainView = this.gridView7; this.GridSpaProduct.Name = "GridSpaProduct"; this.GridSpaProduct.Size = new System.Drawing.Size(464, 192); this.GridSpaProduct.TabIndex = 18; this.GridSpaProduct.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridView7}); // // gridView7 // this.gridView7.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.gridColumn21, this.gridColumn22, this.gridColumn23}); this.gridView7.GridControl = this.GridSpaProduct; this.gridView7.Name = "gridView7"; this.gridView7.OptionsBehavior.Editable = false; this.gridView7.OptionsCustomization.AllowFilter = false; this.gridView7.OptionsCustomization.AllowSort = false; this.gridView7.OptionsView.ShowGroupPanel = false; // // gridColumn21 // this.gridColumn21.Caption = "Code"; this.gridColumn21.FieldName = "Code"; this.gridColumn21.Name = "gridColumn21"; this.gridColumn21.Visible = true; this.gridColumn21.VisibleIndex = 0; this.gridColumn21.Width = 55; // // gridColumn22 // this.gridColumn22.Caption = "Description"; this.gridColumn22.FieldName = "Description"; this.gridColumn22.Name = "gridColumn22"; this.gridColumn22.Visible = true; this.gridColumn22.VisibleIndex = 1; this.gridColumn22.Width = 155; // // gridColumn23 // this.gridColumn23.Caption = "Total"; this.gridColumn23.FieldName = "Quantity"; this.gridColumn23.Name = "gridColumn23"; this.gridColumn23.Visible = true; this.gridColumn23.VisibleIndex = 2; this.gridColumn23.Width = 80; // // label12 // this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label12.Location = new System.Drawing.Point(488, 688); this.label12.Name = "label12"; this.label12.Size = new System.Drawing.Size(176, 23); this.label12.TabIndex = 25; this.label12.Text = "Credit Package Sales"; // // gridCreditPackage // // // gridCreditPackage.EmbeddedNavigator // this.gridCreditPackage.EmbeddedNavigator.Name = ""; this.gridCreditPackage.Location = new System.Drawing.Point(488, 704); this.gridCreditPackage.MainView = this.gridView8; this.gridCreditPackage.Name = "gridCreditPackage"; this.gridCreditPackage.Size = new System.Drawing.Size(432, 192); this.gridCreditPackage.TabIndex = 23; this.gridCreditPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridView8}); // // gridView8 // this.gridView8.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.gridColumn24, this.gridColumn25, this.gridColumn26}); this.gridView8.GridControl = this.gridCreditPackage; this.gridView8.Name = "gridView8"; this.gridView8.OptionsBehavior.Editable = false; this.gridView8.OptionsCustomization.AllowFilter = false; this.gridView8.OptionsCustomization.AllowSort = false; this.gridView8.OptionsView.ShowGroupPanel = false; // // gridColumn24 // this.gridColumn24.Caption = "Code"; this.gridColumn24.FieldName = "Code"; this.gridColumn24.Name = "gridColumn24"; this.gridColumn24.Visible = true; this.gridColumn24.VisibleIndex = 0; this.gridColumn24.Width = 55; // // gridColumn25 // this.gridColumn25.Caption = "Description"; this.gridColumn25.FieldName = "Description"; this.gridColumn25.Name = "gridColumn25"; this.gridColumn25.Visible = true; this.gridColumn25.VisibleIndex = 1; this.gridColumn25.Width = 155; // // gridColumn26 // this.gridColumn26.Caption = "Total"; this.gridColumn26.FieldName = "Quantity"; this.gridColumn26.Name = "gridColumn26"; this.gridColumn26.Visible = true; this.gridColumn26.VisibleIndex = 2; this.gridColumn26.Width = 80; // // cmbBranch // this.cmbBranch.Location = new System.Drawing.Point(232, 8); this.cmbBranch.Name = "cmbBranch"; // // cmbBranch.Properties // this.cmbBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cmbBranch.Size = new System.Drawing.Size(144, 20); this.cmbBranch.TabIndex = 26; this.cmbBranch.SelectedValueChanged += new System.EventHandler(this.cmbBranch_SelectedValueChanged); // // printingSystem1 // this.printingSystem1.Links.AddRange(new object[] { this.printableComponentLink1, this.printableComponentLink2, this.printableComponentLink3, this.printableComponentLink4, this.printableComponentLink5, this.printableComponentLink6, this.printableComponentLink7, this.printableComponentLink8, this.printableComponentLink9, this.printableComponentLink10}); // // printableComponentLink1 // this.printableComponentLink1.Component = this.gridReceipt; this.printableComponentLink1.EnablePageDialog = false; this.printableComponentLink1.PrintingSystem = this.printingSystem1; this.printableComponentLink1.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink1_CreateReportHeaderArea); // // printableComponentLink2 // this.printableComponentLink2.Component = this.GridTotalCollection; this.printableComponentLink2.PrintingSystem = this.printingSystem1; this.printableComponentLink2.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink2_CreateReportHeaderArea); // // printableComponentLink3 // this.printableComponentLink3.Component = this.GridSingleTreatment; this.printableComponentLink3.PrintingSystem = this.printingSystem1; this.printableComponentLink3.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink3_CreateReportHeaderArea); // // printableComponentLink4 // this.printableComponentLink4.Component = this.gridSpaPackage; this.printableComponentLink4.PrintingSystem = this.printingSystem1; this.printableComponentLink4.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink4_CreateReportHeaderArea); // // printableComponentLink5 // this.printableComponentLink5.Component = this.GridSpaProduct; this.printableComponentLink5.PrintingSystem = this.printingSystem1; this.printableComponentLink5.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink5_CreateReportHeaderArea); // // printableComponentLink6 // this.printableComponentLink6.Component = this.GridIPLPackage; this.printableComponentLink6.PrintingSystem = this.printingSystem1; this.printableComponentLink6.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink6_CreateReportHeaderArea); // // printableComponentLink7 // this.printableComponentLink7.Component = this.gridTreatment; this.printableComponentLink7.PrintingSystem = this.printingSystem1; this.printableComponentLink7.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink7_CreateReportHeaderArea); // // printableComponentLink8 // this.printableComponentLink8.Component = this.gridCreditPackage; this.printableComponentLink8.PrintingSystem = this.printingSystem1; this.printableComponentLink8.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink8_CreateReportHeaderArea); // // printableComponentLink9 // this.printableComponentLink9.Component = this.gridFreeSpa; this.printableComponentLink9.PrintingSystem = this.printingSystem1; this.printableComponentLink9.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink9_CreateReportHeaderArea); // // printableComponentLink10 // this.printableComponentLink10.Component = this.gridVouchers; this.printableComponentLink10.PrintingSystem = this.printingSystem1; this.printableComponentLink10.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink10_CreateReportHeaderArea); // // PRINT1 // this.PRINT1.EditValue = "PRINT"; this.PRINT1.Location = new System.Drawing.Point(424, 8); this.PRINT1.Name = "PRINT1"; // // PRINT1.Properties // this.PRINT1.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control; this.PRINT1.Properties.Appearance.Options.UseBackColor = true; this.PRINT1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.PRINT1.Size = new System.Drawing.Size(40, 18); this.PRINT1.TabIndex = 141; this.PRINT1.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT1_OpenLink); // // PRINT2 // this.PRINT2.EditValue = "PRINT"; this.PRINT2.Location = new System.Drawing.Point(432, 248); this.PRINT2.Name = "PRINT2"; // // PRINT2.Properties // this.PRINT2.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control; this.PRINT2.Properties.Appearance.Options.UseBackColor = true; this.PRINT2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.PRINT2.Size = new System.Drawing.Size(40, 18); this.PRINT2.TabIndex = 142; this.PRINT2.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT2_OpenLink); // // PRINT3 // this.PRINT3.EditValue = "PRINT"; this.PRINT3.Location = new System.Drawing.Point(848, 248); this.PRINT3.Name = "PRINT3"; // // PRINT3.Properties // this.PRINT3.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control; this.PRINT3.Properties.Appearance.Options.UseBackColor = true; this.PRINT3.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.PRINT3.Size = new System.Drawing.Size(40, 18); this.PRINT3.TabIndex = 143; this.PRINT3.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT3_OpenLink); // // PRINT4 // this.PRINT4.EditValue = "PRINT"; this.PRINT4.Location = new System.Drawing.Point(432, 464); this.PRINT4.Name = "PRINT4"; // // PRINT4.Properties // this.PRINT4.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control; this.PRINT4.Properties.Appearance.Options.UseBackColor = true; this.PRINT4.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.PRINT4.Size = new System.Drawing.Size(40, 18); this.PRINT4.TabIndex = 144; this.PRINT4.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT4_OpenLink); // // PRINT5 // this.PRINT5.EditValue = "PRINT"; this.PRINT5.Location = new System.Drawing.Point(848, 464); this.PRINT5.Name = "PRINT5"; // // PRINT5.Properties // this.PRINT5.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control; this.PRINT5.Properties.Appearance.Options.UseBackColor = true; this.PRINT5.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.PRINT5.Size = new System.Drawing.Size(40, 18); this.PRINT5.TabIndex = 145; this.PRINT5.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT5_OpenLink); // // PRINT6 // this.PRINT6.EditValue = "PRINT"; this.PRINT6.Location = new System.Drawing.Point(432, 680); this.PRINT6.Name = "PRINT6"; // // PRINT6.Properties // this.PRINT6.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control; this.PRINT6.Properties.Appearance.Options.UseBackColor = true; this.PRINT6.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.PRINT6.Size = new System.Drawing.Size(40, 18); this.PRINT6.TabIndex = 146; this.PRINT6.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT6_OpenLink); // // PRINT7 // this.PRINT7.EditValue = "PRINT"; this.PRINT7.Location = new System.Drawing.Point(848, 680); this.PRINT7.Name = "PRINT7"; // // PRINT7.Properties // this.PRINT7.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control; this.PRINT7.Properties.Appearance.Options.UseBackColor = true; this.PRINT7.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.PRINT7.Size = new System.Drawing.Size(40, 18); this.PRINT7.TabIndex = 147; this.PRINT7.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT7_OpenLink); // // PRINT8 // this.PRINT8.EditValue = "PRINT"; this.PRINT8.Location = new System.Drawing.Point(432, 912); this.PRINT8.Name = "PRINT8"; // // PRINT8.Properties // this.PRINT8.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control; this.PRINT8.Properties.Appearance.Options.UseBackColor = true; this.PRINT8.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.PRINT8.Size = new System.Drawing.Size(40, 18); this.PRINT8.TabIndex = 148; this.PRINT8.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT8_OpenLink); // // PRINT9 // this.PRINT9.EditValue = "PRINT"; this.PRINT9.Location = new System.Drawing.Point(848, 912); this.PRINT9.Name = "PRINT9"; // // PRINT9.Properties // this.PRINT9.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control; this.PRINT9.Properties.Appearance.Options.UseBackColor = true; this.PRINT9.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.PRINT9.Size = new System.Drawing.Size(40, 18); this.PRINT9.TabIndex = 149; this.PRINT9.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT9_OpenLink); // // RPSpaDailyBranchSales // this.AutoScale = false; this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.AutoScroll = true; this.ClientSize = new System.Drawing.Size(859, 384); this.Controls.Add(this.GridSingleTreatment); this.Controls.Add(this.gridSpaPackage); this.Controls.Add(this.gridVouchers); this.Controls.Add(this.gridFreeSpa); this.Controls.Add(this.gridTreatment); this.Controls.Add(this.GridIPLPackage); this.Controls.Add(this.GridSpaProduct); this.Controls.Add(this.gridCreditPackage); this.Controls.Add(this.PRINT9); this.Controls.Add(this.PRINT8); this.Controls.Add(this.PRINT7); this.Controls.Add(this.PRINT6); this.Controls.Add(this.PRINT5); this.Controls.Add(this.PRINT4); this.Controls.Add(this.PRINT3); this.Controls.Add(this.PRINT2); this.Controls.Add(this.PRINT1); this.Controls.Add(this.cmbBranch); this.Controls.Add(this.label12); this.Controls.Add(this.label10); this.Controls.Add(this.label11); this.Controls.Add(this.label9); this.Controls.Add(this.label7); this.Controls.Add(this.label8); this.Controls.Add(this.label6); this.Controls.Add(this.label5); this.Controls.Add(this.label4); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.dateEdit1); this.Controls.Add(this.GridTotalCollection); this.Controls.Add(this.gridReceipt); this.DockPadding.Bottom = 20; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; this.Name = "RPSpaDailyBranchSales"; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Spa Daily Branch Sales"; this.TopMost = true; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RPSpaDailyBranchSales_Load); ((System.ComponentModel.ISupportInitialize)(this.gvReceiptPayment)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridReceipt)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gvReceipt)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.GridTotalCollection)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.GridSingleTreatment)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridSpaPackage)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridVouchers)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridFreeSpa)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridTreatment)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView5)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.GridIPLPackage)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.GridSpaProduct)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView7)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridCreditPackage)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView8)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT2.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT3.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT4.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT5.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT6.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT7.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT8.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT9.Properties)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { DevExpress.XtraPivotGrid.PivotGridCustomTotal pivotGridCustomTotal1 = new DevExpress.XtraPivotGrid.PivotGridCustomTotal(); DevExpress.XtraPivotGrid.PivotGridGroup pivotGridGroup1 = new DevExpress.XtraPivotGrid.PivotGridGroup(); this.pivotGridField6 = new DevExpress.XtraPivotGrid.PivotGridField(); this.GridInstructorFee = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField5 = new DevExpress.XtraPivotGrid.PivotGridField(); this.label1 = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.GridInstructorFee)).BeginInit(); this.SuspendLayout(); // // pivotGridField6 // this.pivotGridField6.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField6.AreaIndex = 2; this.pivotGridField6.Caption = "Standing Inst. Fees"; this.pivotGridField6.CustomTotals.AddRange(new DevExpress.XtraPivotGrid.PivotGridCustomTotal[] { pivotGridCustomTotal1 }); this.pivotGridField6.FieldName = "mStandinInstructorFees"; this.pivotGridField6.Name = "pivotGridField6"; this.pivotGridField6.TotalsVisibility = DevExpress.XtraPivotGrid.PivotTotalsVisibility.CustomTotals; this.pivotGridField6.Width = 110; // // GridInstructorFee // this.GridInstructorFee.Cursor = System.Windows.Forms.Cursors.Default; this.GridInstructorFee.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField3, this.pivotGridField4, this.pivotGridField5, this.pivotGridField6 }); pivotGridGroup1.Fields.Add(this.pivotGridField6); this.GridInstructorFee.Groups.AddRange(new DevExpress.XtraPivotGrid.PivotGridGroup[] { pivotGridGroup1 }); this.GridInstructorFee.Location = new System.Drawing.Point(8, 24); this.GridInstructorFee.Name = "GridInstructorFee"; this.GridInstructorFee.OptionsCustomization.AllowDrag = false; this.GridInstructorFee.OptionsCustomization.AllowExpand = false; this.GridInstructorFee.OptionsCustomization.AllowFilter = false; this.GridInstructorFee.OptionsCustomization.AllowSort = false; this.GridInstructorFee.OptionsView.ShowDataHeaders = false; this.GridInstructorFee.OptionsView.ShowFilterHeaders = false; this.GridInstructorFee.OptionsView.ShowRowTotals = false; this.GridInstructorFee.OptionsView.ShowTotalsForSingleValues = true; this.GridInstructorFee.Size = new System.Drawing.Size(760, 376); this.GridInstructorFee.TabIndex = 0; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField1.AreaIndex = 1; this.pivotGridField1.Caption = "Instructor Id"; this.pivotGridField1.FieldName = "InstructorId"; this.pivotGridField1.Name = "pivotGridField1"; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField2.AreaIndex = 0; this.pivotGridField2.Caption = "Instructor Name"; this.pivotGridField2.FieldName = "strEmployeeName"; this.pivotGridField2.Name = "pivotGridField2"; this.pivotGridField2.Width = 150; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField3.AreaIndex = 0; this.pivotGridField3.Caption = "Branch"; this.pivotGridField3.FieldName = "strBranchCode"; this.pivotGridField3.Name = "pivotGridField3"; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField4.AreaIndex = 1; this.pivotGridField4.Caption = "# of Class"; this.pivotGridField4.FieldName = "strBranchCode"; this.pivotGridField4.Name = "pivotGridField4"; this.pivotGridField4.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; this.pivotGridField4.Width = 80; // // pivotGridField5 // this.pivotGridField5.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField5.AreaIndex = 0; this.pivotGridField5.Caption = "Total Fee"; this.pivotGridField5.FieldName = "mInstructorFees"; this.pivotGridField5.Name = "pivotGridField5"; this.pivotGridField5.Width = 80; // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label1.Location = new System.Drawing.Point(8, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(160, 23); this.label1.TabIndex = 2; this.label1.Text = "Instructor Fees"; // // RPInstructorFees // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(792, 461); this.Controls.Add(this.label1); this.Controls.Add(this.GridInstructorFee); this.Name = "RPInstructorFees"; this.Text = "Instructors Fee Summary Report"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RPInstructorFees_Load); ((System.ComponentModel.ISupportInitialize)(this.GridInstructorFee)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.dateEdit2 = new DevExpress.XtraEditors.DateEdit(); this.dateEdit1 = new DevExpress.XtraEditors.DateEdit(); this.label7 = new System.Windows.Forms.Label(); this.label6 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.luedtRPStaffSalesPerfmCategory = new DevExpress.XtraEditors.LookUpEdit(); this.label1 = new System.Windows.Forms.Label(); this.gridPromotionPackage = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.btnReset = new DevExpress.XtraEditors.SimpleButton(); this.sbtnReset = new DevExpress.XtraEditors.SimpleButton(); ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmCategory.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridPromotionPackage)).BeginInit(); this.SuspendLayout(); // // dateEdit2 // this.dateEdit2.EditValue = null; this.dateEdit2.Location = new System.Drawing.Point(216, 8); this.dateEdit2.Name = "dateEdit2"; // // dateEdit2.Properties // this.dateEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.dateEdit2.Properties.DisplayFormat.FormatString = "dd/MM/yyyy"; this.dateEdit2.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.dateEdit2.Properties.EditFormat.FormatString = "dd/MM/yyyy"; this.dateEdit2.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.dateEdit2.Properties.Mask.EditMask = "dd/MM/yyyy"; this.dateEdit2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret; this.dateEdit2.Size = new System.Drawing.Size(100, 22); this.dateEdit2.TabIndex = 77; // // dateEdit1 // this.dateEdit1.EditValue = null; this.dateEdit1.Location = new System.Drawing.Point(40, 8); this.dateEdit1.Name = "dateEdit1"; // // dateEdit1.Properties // this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.dateEdit1.Properties.DisplayFormat.FormatString = "dd/MM/yyyy"; this.dateEdit1.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.dateEdit1.Properties.EditFormat.FormatString = "dd/MM/yyyy"; this.dateEdit1.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.dateEdit1.Properties.Mask.EditMask = "dd/MM/yyyy"; this.dateEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret; this.dateEdit1.Size = new System.Drawing.Size(100, 22); this.dateEdit1.TabIndex = 76; // // label7 // this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label7.Location = new System.Drawing.Point(144, 8); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(24, 23); this.label7.TabIndex = 75; this.label7.Text = "To"; // // label6 // this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label6.Location = new System.Drawing.Point(176, 8); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(40, 23); this.label6.TabIndex = 74; this.label6.Text = "Date"; // // label3 // this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label3.Location = new System.Drawing.Point(0, 8); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(40, 16); this.label3.TabIndex = 73; this.label3.Text = "Date"; // // luedtRPStaffSalesPerfmCategory // this.luedtRPStaffSalesPerfmCategory.EditValue = ""; this.luedtRPStaffSalesPerfmCategory.Location = new System.Drawing.Point(400, 8); this.luedtRPStaffSalesPerfmCategory.Name = "luedtRPStaffSalesPerfmCategory"; // // luedtRPStaffSalesPerfmCategory.Properties // this.luedtRPStaffSalesPerfmCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.luedtRPStaffSalesPerfmCategory.Size = new System.Drawing.Size(152, 22); this.luedtRPStaffSalesPerfmCategory.TabIndex = 72; // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label1.Location = new System.Drawing.Point(328, 8); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(64, 23); this.label1.TabIndex = 71; this.label1.Text = "Category"; // // gridPromotionPackage // this.gridPromotionPackage.Cursor = System.Windows.Forms.Cursors.Default; this.gridPromotionPackage.Dock = System.Windows.Forms.DockStyle.Bottom; this.gridPromotionPackage.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField3, this.pivotGridField4 }); this.gridPromotionPackage.Location = new System.Drawing.Point(0, 38); this.gridPromotionPackage.Name = "gridPromotionPackage"; this.gridPromotionPackage.OptionsCustomization.AllowDrag = false; this.gridPromotionPackage.OptionsCustomization.AllowExpand = false; this.gridPromotionPackage.OptionsCustomization.AllowFilter = false; this.gridPromotionPackage.OptionsCustomization.AllowSort = false; this.gridPromotionPackage.OptionsView.ShowDataHeaders = false; this.gridPromotionPackage.OptionsView.ShowFilterHeaders = false; this.gridPromotionPackage.Size = new System.Drawing.Size(976, 424); this.gridPromotionPackage.TabIndex = 70; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField1.AreaIndex = 0; this.pivotGridField1.Caption = "Package Code"; this.pivotGridField1.CellFormat.FormatString = "d/MM/yyyy"; this.pivotGridField1.CellFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.pivotGridField1.FieldName = "strCode"; this.pivotGridField1.Name = "pivotGridField1"; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField2.AreaIndex = 1; this.pivotGridField2.Caption = "Description"; this.pivotGridField2.FieldName = "strDescription"; this.pivotGridField2.MinWidth = 40; this.pivotGridField2.Name = "pivotGridField2"; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField3.AreaIndex = 0; this.pivotGridField3.Caption = "Branch"; this.pivotGridField3.FieldName = "strBranchCode"; this.pivotGridField3.Name = "pivotGridField3"; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField4.AreaIndex = 0; this.pivotGridField4.Caption = "Amount"; this.pivotGridField4.FieldName = "nQuantity"; this.pivotGridField4.Name = "pivotGridField4"; // // btnReset // this.btnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.btnReset.Appearance.Options.UseFont = true; this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.btnReset.Location = new System.Drawing.Point(616, 8); this.btnReset.LookAndFeel.UseDefaultLookAndFeel = false; this.btnReset.Name = "btnReset"; this.btnReset.Size = new System.Drawing.Size(48, 16); this.btnReset.TabIndex = 199; this.btnReset.Text = "Reset"; this.btnReset.Click += new System.EventHandler(this.btnReset_Click); // // sbtnReset // this.sbtnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.sbtnReset.Appearance.Options.UseFont = true; this.sbtnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnReset.Location = new System.Drawing.Point(560, 8); this.sbtnReset.LookAndFeel.UseDefaultLookAndFeel = false; this.sbtnReset.Name = "sbtnReset"; this.sbtnReset.Size = new System.Drawing.Size(48, 16); this.sbtnReset.TabIndex = 200; this.sbtnReset.Text = "Enquiry"; this.sbtnReset.Click += new System.EventHandler(this.sbtnReset_Click); // // RPPromotionSalesPkg // this.AutoScale = false; this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(976, 462); this.Controls.Add(this.sbtnReset); this.Controls.Add(this.btnReset); this.Controls.Add(this.dateEdit2); this.Controls.Add(this.dateEdit1); this.Controls.Add(this.label7); this.Controls.Add(this.label6); this.Controls.Add(this.label3); this.Controls.Add(this.luedtRPStaffSalesPerfmCategory); this.Controls.Add(this.label1); this.Controls.Add(this.gridPromotionPackage); this.Name = "RPPromotionSalesPkg"; this.Text = "Promotion Package Sales Analysis"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RPPromotionSalesPkg_Load); ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmCategory.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridPromotionPackage)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); this.pivotGridControl1 = new DevExpress.XtraPivotGrid.PivotGridControl(); this.dataSet11 = new dxKB3226.DataSet1(); this.categoryName = new DevExpress.XtraPivotGrid.PivotGridField(); this.productName = new DevExpress.XtraPivotGrid.PivotGridField(); this.quantity = new DevExpress.XtraPivotGrid.PivotGridField(); this.orderDate_Year = new DevExpress.XtraPivotGrid.PivotGridField(); this.orderDate_Month = new DevExpress.XtraPivotGrid.PivotGridField(); this.oleDbDataAdapter1 = new System.Data.OleDb.OleDbDataAdapter(); this.oleDbSelectCommand1 = new System.Data.OleDb.OleDbCommand(); this.oleDbConnection1 = new System.Data.OleDb.OleDbConnection(); this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton(); ((System.ComponentModel.ISupportInitialize)(this.pivotGridControl1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).BeginInit(); this.SuspendLayout(); // // pivotGridControl1 // this.pivotGridControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.pivotGridControl1.Cursor = System.Windows.Forms.Cursors.Default; this.pivotGridControl1.DataSource = this.dataSet11.Employees; this.pivotGridControl1.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.categoryName, this.productName, this.quantity, this.orderDate_Year, this.orderDate_Month }); this.pivotGridControl1.Location = new System.Drawing.Point(8, 48); this.pivotGridControl1.Name = "pivotGridControl1"; this.pivotGridControl1.OptionsDataField.FieldNaming = DevExpress.XtraPivotGrid.DataFieldNaming.Name; this.pivotGridControl1.Size = new System.Drawing.Size(735, 379); this.pivotGridControl1.TabIndex = 0; // // dataSet11 // this.dataSet11.DataSetName = "DataSet1"; this.dataSet11.Locale = new System.Globalization.CultureInfo("ru-RU"); this.dataSet11.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; // // categoryName // this.categoryName.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.categoryName.AreaIndex = 0; this.categoryName.FieldName = "CategoryName"; this.categoryName.Name = "categoryName"; // // productName // this.productName.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.productName.AreaIndex = 1; this.productName.FieldName = "ProductName"; this.productName.Name = "productName"; // // quantity // this.quantity.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.quantity.AreaIndex = 0; this.quantity.FieldName = "Quantity"; this.quantity.Name = "quantity"; // // orderDate_Year // this.orderDate_Year.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.orderDate_Year.AreaIndex = 0; this.orderDate_Year.FieldName = "OrderDate"; this.orderDate_Year.GroupInterval = DevExpress.XtraPivotGrid.PivotGroupInterval.DateYear; this.orderDate_Year.Name = "orderDate_Year"; this.orderDate_Year.UnboundFieldName = "orderDate_Year"; // // orderDate_Month // this.orderDate_Month.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.orderDate_Month.AreaIndex = 1; this.orderDate_Month.FieldName = "OrderDate"; this.orderDate_Month.GroupInterval = DevExpress.XtraPivotGrid.PivotGroupInterval.DateMonth; this.orderDate_Month.Name = "orderDate_Month"; this.orderDate_Month.UnboundFieldName = "orderDate_Month"; // // oleDbDataAdapter1 // this.oleDbDataAdapter1.SelectCommand = this.oleDbSelectCommand1; this.oleDbDataAdapter1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] { new System.Data.Common.DataTableMapping("Table", "Employees", new System.Data.Common.DataColumnMapping[] { new System.Data.Common.DataColumnMapping("Products.ProductID", "Products.ProductID"), new System.Data.Common.DataColumnMapping("ProductName", "ProductName"), new System.Data.Common.DataColumnMapping("SupplierID", "SupplierID"), new System.Data.Common.DataColumnMapping("Products.CategoryID", "Products.CategoryID"), new System.Data.Common.DataColumnMapping("QuantityPerUnit", "QuantityPerUnit"), new System.Data.Common.DataColumnMapping("Products.UnitPrice", "Products.UnitPrice"), new System.Data.Common.DataColumnMapping("UnitsInStock", "UnitsInStock"), new System.Data.Common.DataColumnMapping("UnitsOnOrder", "UnitsOnOrder"), new System.Data.Common.DataColumnMapping("ReorderLevel", "ReorderLevel"), new System.Data.Common.DataColumnMapping("Discontinued", "Discontinued"), new System.Data.Common.DataColumnMapping("EAN13", "EAN13"), new System.Data.Common.DataColumnMapping("Order Details.OrderID", "Order Details.OrderID"), new System.Data.Common.DataColumnMapping("Order Details.ProductID", "Order Details.ProductID"), new System.Data.Common.DataColumnMapping("Order Details.UnitPrice", "Order Details.UnitPrice"), new System.Data.Common.DataColumnMapping("Quantity", "Quantity"), new System.Data.Common.DataColumnMapping("Discount", "Discount"), new System.Data.Common.DataColumnMapping("Orders.OrderID", "Orders.OrderID"), new System.Data.Common.DataColumnMapping("Orders.CustomerID", "Orders.CustomerID"), new System.Data.Common.DataColumnMapping("Orders.EmployeeID", "Orders.EmployeeID"), new System.Data.Common.DataColumnMapping("OrderDate", "OrderDate"), new System.Data.Common.DataColumnMapping("RequiredDate", "RequiredDate"), new System.Data.Common.DataColumnMapping("ShippedDate", "ShippedDate"), new System.Data.Common.DataColumnMapping("ShipVia", "ShipVia"), new System.Data.Common.DataColumnMapping("Freight", "Freight"), new System.Data.Common.DataColumnMapping("ShipName", "ShipName"), new System.Data.Common.DataColumnMapping("ShipAddress", "ShipAddress"), new System.Data.Common.DataColumnMapping("ShipCity", "ShipCity"), new System.Data.Common.DataColumnMapping("ShipRegion", "ShipRegion"), new System.Data.Common.DataColumnMapping("ShipPostalCode", "ShipPostalCode"), new System.Data.Common.DataColumnMapping("ShipCountry", "ShipCountry"), new System.Data.Common.DataColumnMapping("Employees.EmployeeID", "Employees.EmployeeID"), new System.Data.Common.DataColumnMapping("LastName", "LastName"), new System.Data.Common.DataColumnMapping("FirstName", "FirstName"), new System.Data.Common.DataColumnMapping("Title", "Title"), new System.Data.Common.DataColumnMapping("TitleOfCourtesy", "TitleOfCourtesy"), new System.Data.Common.DataColumnMapping("BirthDate", "BirthDate"), new System.Data.Common.DataColumnMapping("HireDate", "HireDate"), new System.Data.Common.DataColumnMapping("Employees.Address", "Employees.Address"), new System.Data.Common.DataColumnMapping("Employees.City", "Employees.City"), new System.Data.Common.DataColumnMapping("Employees.Region", "Employees.Region"), new System.Data.Common.DataColumnMapping("Employees.PostalCode", "Employees.PostalCode"), new System.Data.Common.DataColumnMapping("Employees.Country", "Employees.Country"), new System.Data.Common.DataColumnMapping("HomePhone", "HomePhone"), new System.Data.Common.DataColumnMapping("Extension", "Extension"), new System.Data.Common.DataColumnMapping("Photo", "Photo"), new System.Data.Common.DataColumnMapping("Notes", "Notes"), new System.Data.Common.DataColumnMapping("ReportsTo", "ReportsTo"), new System.Data.Common.DataColumnMapping("Categories.CategoryID", "Categories.CategoryID"), new System.Data.Common.DataColumnMapping("CategoryName", "CategoryName"), new System.Data.Common.DataColumnMapping("Description", "Description"), new System.Data.Common.DataColumnMapping("Picture", "Picture"), new System.Data.Common.DataColumnMapping("Customers.CustomerID", "Customers.CustomerID"), new System.Data.Common.DataColumnMapping("CompanyName", "CompanyName"), new System.Data.Common.DataColumnMapping("ContactName", "ContactName"), new System.Data.Common.DataColumnMapping("ContactTitle", "ContactTitle"), new System.Data.Common.DataColumnMapping("Customers.Address", "Customers.Address"), new System.Data.Common.DataColumnMapping("Customers.City", "Customers.City"), new System.Data.Common.DataColumnMapping("Customers.Region", "Customers.Region"), new System.Data.Common.DataColumnMapping("Customers.PostalCode", "Customers.PostalCode"), new System.Data.Common.DataColumnMapping("Customers.Country", "Customers.Country"), new System.Data.Common.DataColumnMapping("Phone", "Phone"), new System.Data.Common.DataColumnMapping("Fax", "Fax") }) }); // // oleDbSelectCommand1 // this.oleDbSelectCommand1.CommandText = resources.GetString("oleDbSelectCommand1.CommandText"); this.oleDbSelectCommand1.Connection = this.oleDbConnection1; // // oleDbConnection1 // this.oleDbConnection1.ConnectionString = resources.GetString("oleDbConnection1.ConnectionString"); // // simpleButton1 // this.simpleButton1.Location = new System.Drawing.Point(8, 8); this.simpleButton1.Name = "simpleButton1"; this.simpleButton1.Size = new System.Drawing.Size(192, 32); this.simpleButton1.TabIndex = 2; this.simpleButton1.Text = "Show Chart for Category in Year"; this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click); // // Form1 // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(751, 439); this.Controls.Add(this.simpleButton1); this.Controls.Add(this.pivotGridControl1); this.Name = "Form1"; this.Text = "Form1"; this.Load += new System.EventHandler(this.Form1_Load); ((System.ComponentModel.ISupportInitialize)(this.pivotGridControl1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.GridRPInstructor = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.label1 = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.GridRPInstructor)).BeginInit(); this.SuspendLayout(); // // GridRPInstructor // this.GridRPInstructor.Cursor = System.Windows.Forms.Cursors.Default; this.GridRPInstructor.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField3, this.pivotGridField4 }); this.GridRPInstructor.Location = new System.Drawing.Point(8, 32); this.GridRPInstructor.Name = "GridRPInstructor"; this.GridRPInstructor.OptionsCustomization.AllowDrag = false; this.GridRPInstructor.OptionsCustomization.AllowExpand = false; this.GridRPInstructor.OptionsCustomization.AllowFilter = false; this.GridRPInstructor.OptionsCustomization.AllowSort = false; this.GridRPInstructor.OptionsView.ShowDataHeaders = false; this.GridRPInstructor.OptionsView.ShowFilterHeaders = false; this.GridRPInstructor.Size = new System.Drawing.Size(760, 360); this.GridRPInstructor.TabIndex = 0; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField1.AreaIndex = 0; this.pivotGridField1.Caption = "Date"; this.pivotGridField1.FieldName = "dtDate"; this.pivotGridField1.GroupInterval = DevExpress.XtraPivotGrid.PivotGroupInterval.DateDayOfWeek; this.pivotGridField1.Name = "pivotGridField1"; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField2.AreaIndex = 1; this.pivotGridField2.Caption = "Time"; this.pivotGridField2.FieldName = "dtStartTime"; this.pivotGridField2.Name = "pivotGridField2"; this.pivotGridField2.ValueFormat.FormatString = "HH:mm:ss"; this.pivotGridField2.ValueFormat.FormatType = DevExpress.Utils.FormatType.DateTime; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField3.AreaIndex = 0; this.pivotGridField3.FieldName = "dtDate"; this.pivotGridField3.GroupInterval = DevExpress.XtraPivotGrid.PivotGroupInterval.DateWeekOfMonth; this.pivotGridField3.Name = "pivotGridField3"; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField4.AreaIndex = 0; this.pivotGridField4.Caption = "Fees"; this.pivotGridField4.FieldName = "mInstructorFees"; this.pivotGridField4.Name = "pivotGridField4"; // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label1.Location = new System.Drawing.Point(8, 8); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(160, 23); this.label1.TabIndex = 1; this.label1.Text = "Instructor Details"; // // RPInstructorDetails // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(784, 461); this.Controls.Add(this.label1); this.Controls.Add(this.GridRPInstructor); this.Name = "RPInstructorDetails"; this.Text = "Instructor Details"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RPInstructorDetails_Load); ((System.ComponentModel.ISupportInitialize)(this.GridRPInstructor)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.gridStaffPerformance = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.luedtRPStaffSalesPerfmEmpID = new DevExpress.XtraEditors.LookUpEdit(); this.luedtRPStaffSalesPerfmCategory = new DevExpress.XtraEditors.LookUpEdit(); this.label3 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.label5 = new System.Windows.Forms.Label(); this.label6 = new System.Windows.Forms.Label(); this.label7 = new System.Windows.Forms.Label(); this.cmbMonthFrm = new DevExpress.XtraEditors.ImageComboBoxEdit(); this.cmbMonthTo = new DevExpress.XtraEditors.ImageComboBoxEdit(); this.sbtnReset = new DevExpress.XtraEditors.SimpleButton(); this.btnReset = new DevExpress.XtraEditors.SimpleButton(); this.cmbYearFrm = new DevExpress.XtraEditors.ImageComboBoxEdit(); this.cmbYearTo = new DevExpress.XtraEditors.ImageComboBoxEdit(); ((System.ComponentModel.ISupportInitialize)(this.gridStaffPerformance)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmEmpID.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmCategory.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbMonthFrm.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbMonthTo.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbYearFrm.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbYearTo.Properties)).BeginInit(); this.SuspendLayout(); // // gridStaffPerformance // this.gridStaffPerformance.Cursor = System.Windows.Forms.Cursors.Default; this.gridStaffPerformance.Dock = System.Windows.Forms.DockStyle.Bottom; this.gridStaffPerformance.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField3, this.pivotGridField4}); this.gridStaffPerformance.Location = new System.Drawing.Point(0, 62); this.gridStaffPerformance.Name = "gridStaffPerformance"; this.gridStaffPerformance.OptionsCustomization.AllowDrag = false; this.gridStaffPerformance.OptionsCustomization.AllowExpand = false; this.gridStaffPerformance.OptionsCustomization.AllowFilter = false; this.gridStaffPerformance.OptionsCustomization.AllowSort = false; this.gridStaffPerformance.OptionsView.ShowDataHeaders = false; this.gridStaffPerformance.OptionsView.ShowFilterHeaders = false; this.gridStaffPerformance.Size = new System.Drawing.Size(976, 400); this.gridStaffPerformance.TabIndex = 0; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField1.AreaIndex = 0; this.pivotGridField1.Caption = "Year"; this.pivotGridField1.FieldName = "dtDate"; this.pivotGridField1.GroupInterval = DevExpress.XtraPivotGrid.PivotGroupInterval.DateYear; this.pivotGridField1.Name = "pivotGridField1"; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField2.AreaIndex = 1; this.pivotGridField2.Caption = "Month"; this.pivotGridField2.FieldName = "dtDate"; this.pivotGridField2.GroupInterval = DevExpress.XtraPivotGrid.PivotGroupInterval.DateMonth; this.pivotGridField2.Name = "pivotGridField2"; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField3.AreaIndex = 0; this.pivotGridField3.Caption = "Branch"; this.pivotGridField3.FieldName = "strBranchCode"; this.pivotGridField3.Name = "pivotGridField3"; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField4.AreaIndex = 0; this.pivotGridField4.Caption = "Amount"; this.pivotGridField4.FieldName = "mNettAmount"; this.pivotGridField4.Name = "pivotGridField4"; // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label1.Location = new System.Drawing.Point(8, 32); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(72, 16); this.label1.TabIndex = 3; this.label1.Text = "Category"; // // label2 // this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label2.Location = new System.Drawing.Point(240, 32); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(40, 16); this.label2.TabIndex = 4; this.label2.Text = "Staff"; // // luedtRPStaffSalesPerfmEmpID // this.luedtRPStaffSalesPerfmEmpID.EditValue = ""; this.luedtRPStaffSalesPerfmEmpID.Location = new System.Drawing.Point(288, 32); this.luedtRPStaffSalesPerfmEmpID.Name = "luedtRPStaffSalesPerfmEmpID"; // // luedtRPStaffSalesPerfmEmpID.Properties // this.luedtRPStaffSalesPerfmEmpID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.luedtRPStaffSalesPerfmEmpID.Size = new System.Drawing.Size(168, 22); this.luedtRPStaffSalesPerfmEmpID.TabIndex = 43; // // luedtRPStaffSalesPerfmCategory // this.luedtRPStaffSalesPerfmCategory.EditValue = ""; this.luedtRPStaffSalesPerfmCategory.Location = new System.Drawing.Point(80, 32); this.luedtRPStaffSalesPerfmCategory.Name = "luedtRPStaffSalesPerfmCategory"; // // luedtRPStaffSalesPerfmCategory.Properties // this.luedtRPStaffSalesPerfmCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.luedtRPStaffSalesPerfmCategory.Size = new System.Drawing.Size(152, 22); this.luedtRPStaffSalesPerfmCategory.TabIndex = 44; // // label3 // this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label3.Location = new System.Drawing.Point(8, 8); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(72, 23); this.label3.TabIndex = 45; this.label3.Text = "Year"; // // label4 // this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label4.Location = new System.Drawing.Point(296, 8); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(48, 23); this.label4.TabIndex = 46; this.label4.Text = "Year"; // // label5 // this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label5.Location = new System.Drawing.Point(112, 8); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(48, 23); this.label5.TabIndex = 47; this.label5.Text = "Month"; // // label6 // this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label6.Location = new System.Drawing.Point(400, 8); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(48, 23); this.label6.TabIndex = 48; this.label6.Text = "Month"; // // label7 // this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label7.Location = new System.Drawing.Point(256, 8); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(24, 23); this.label7.TabIndex = 53; this.label7.Text = "To"; // // cmbMonthFrm // this.cmbMonthFrm.EditValue = 1; this.cmbMonthFrm.Location = new System.Drawing.Point(160, 8); this.cmbMonthFrm.Name = "cmbMonthFrm"; // // cmbMonthFrm.Properties // this.cmbMonthFrm.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cmbMonthFrm.Properties.Items.AddRange(new object[] { new DevExpress.XtraEditors.Controls.ImageComboBoxItem("January", 1, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("February", 2, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("March", 3, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("April", 4, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("May", 5, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("June", 6, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("July", 7, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("August", 8, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("September", 9, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("October", 10, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("November", 11, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("December", 12, -1)}); this.cmbMonthFrm.Size = new System.Drawing.Size(80, 22); this.cmbMonthFrm.TabIndex = 56; // // cmbMonthTo // this.cmbMonthTo.EditValue = 1; this.cmbMonthTo.Location = new System.Drawing.Point(448, 8); this.cmbMonthTo.Name = "cmbMonthTo"; // // cmbMonthTo.Properties // this.cmbMonthTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cmbMonthTo.Properties.Items.AddRange(new object[] { new DevExpress.XtraEditors.Controls.ImageComboBoxItem("January", 1, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("February", 2, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("March", 3, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("April", 4, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("May", 5, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("June", 6, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("July", 7, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("August", 8, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("September", 9, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("October", 10, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("November", 11, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("December", 12, -1)}); this.cmbMonthTo.Size = new System.Drawing.Size(88, 22); this.cmbMonthTo.TabIndex = 57; // // sbtnReset // this.sbtnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.sbtnReset.Appearance.Options.UseFont = true; this.sbtnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnReset.Location = new System.Drawing.Point(464, 32); this.sbtnReset.LookAndFeel.UseDefaultLookAndFeel = false; this.sbtnReset.Name = "sbtnReset"; this.sbtnReset.Size = new System.Drawing.Size(56, 16); this.sbtnReset.TabIndex = 195; this.sbtnReset.Text = "Enquiry"; this.sbtnReset.Click += new System.EventHandler(this.sbtnReset_Click); // // btnReset // this.btnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.btnReset.Appearance.Options.UseFont = true; this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.btnReset.Location = new System.Drawing.Point(528, 32); this.btnReset.LookAndFeel.UseDefaultLookAndFeel = false; this.btnReset.Name = "btnReset"; this.btnReset.Size = new System.Drawing.Size(56, 16); this.btnReset.TabIndex = 196; this.btnReset.Text = "Reset"; this.btnReset.Click += new System.EventHandler(this.btnReset_Click); // // cmbYearFrm // this.cmbYearFrm.Location = new System.Drawing.Point(48, 8); this.cmbYearFrm.Name = "cmbYearFrm"; // // cmbYearFrm.Properties // this.cmbYearFrm.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cmbYearFrm.Size = new System.Drawing.Size(64, 22); this.cmbYearFrm.TabIndex = 197; // // cmbYearTo // this.cmbYearTo.Location = new System.Drawing.Point(336, 8); this.cmbYearTo.Name = "cmbYearTo"; // // cmbYearTo.Properties // this.cmbYearTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cmbYearTo.Size = new System.Drawing.Size(64, 22); this.cmbYearTo.TabIndex = 198; // // RPStaffReport // this.AutoScale = false; this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(976, 462); this.Controls.Add(this.cmbYearTo); this.Controls.Add(this.cmbYearFrm); this.Controls.Add(this.btnReset); this.Controls.Add(this.sbtnReset); this.Controls.Add(this.cmbMonthTo); this.Controls.Add(this.cmbMonthFrm); this.Controls.Add(this.label7); this.Controls.Add(this.label6); this.Controls.Add(this.label5); this.Controls.Add(this.label4); this.Controls.Add(this.label3); this.Controls.Add(this.luedtRPStaffSalesPerfmCategory); this.Controls.Add(this.luedtRPStaffSalesPerfmEmpID); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.gridStaffPerformance); this.Name = "RPStaffReport"; this.Text = "Staff Sales Performance"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RPStaffReport_Load); ((System.ComponentModel.ISupportInitialize)(this.gridStaffPerformance)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmEmpID.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmCategory.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbMonthFrm.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbMonthTo.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbYearFrm.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbYearTo.Properties)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.GridSpaService = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.DateFrom = new DevExpress.XtraEditors.DateEdit(); this.DateRangeTo = new DevExpress.XtraEditors.DateEdit(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.GridSpaService)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).BeginInit(); this.SuspendLayout(); // // GridSpaService // this.GridSpaService.Cursor = System.Windows.Forms.Cursors.Default; this.GridSpaService.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField3, this.pivotGridField4 }); this.GridSpaService.Location = new System.Drawing.Point(0, 32); this.GridSpaService.Name = "GridSpaService"; this.GridSpaService.OptionsCustomization.AllowDrag = false; this.GridSpaService.OptionsCustomization.AllowExpand = false; this.GridSpaService.OptionsCustomization.AllowFilter = false; this.GridSpaService.OptionsCustomization.AllowSort = false; this.GridSpaService.OptionsView.ShowDataHeaders = false; this.GridSpaService.OptionsView.ShowFilterHeaders = false; this.GridSpaService.Size = new System.Drawing.Size(768, 344); this.GridSpaService.TabIndex = 0; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField1.AreaIndex = 0; this.pivotGridField1.Caption = "Branch"; this.pivotGridField1.FieldName = "strBranchCode"; this.pivotGridField1.Name = "pivotGridField1"; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField2.AreaIndex = 0; this.pivotGridField2.Caption = "Code"; this.pivotGridField2.FieldName = "Code"; this.pivotGridField2.Name = "pivotGridField2"; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField3.AreaIndex = 1; this.pivotGridField3.Caption = "Description"; this.pivotGridField3.FieldName = "strDescription"; this.pivotGridField3.Name = "pivotGridField3"; this.pivotGridField3.Width = 150; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField4.AreaIndex = 0; this.pivotGridField4.Caption = "Total"; this.pivotGridField4.FieldName = "Code"; this.pivotGridField4.Name = "pivotGridField4"; this.pivotGridField4.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; // // DateFrom // this.DateFrom.EditValue = null; this.DateFrom.Location = new System.Drawing.Point(40, 8); this.DateFrom.Name = "DateFrom"; // // DateFrom.Properties // this.DateFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.DateFrom.TabIndex = 1; this.DateFrom.EditValueChanged += new System.EventHandler(this.DateFrom_EditValueChanged); // // DateRangeTo // this.DateRangeTo.EditValue = null; this.DateRangeTo.Location = new System.Drawing.Point(168, 8); this.DateRangeTo.Name = "DateRangeTo"; // // DateRangeTo.Properties // this.DateRangeTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.DateRangeTo.TabIndex = 2; this.DateRangeTo.EditValueChanged += new System.EventHandler(this.DateRangeTo_EditValueChanged); // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label1.Location = new System.Drawing.Point(0, 8); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(40, 23); this.label1.TabIndex = 3; this.label1.Text = "From"; // // label2 // this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label2.Location = new System.Drawing.Point(144, 8); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(24, 23); this.label2.TabIndex = 4; this.label2.Text = "To"; // // RPOperation // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(776, 477); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.DateRangeTo); this.Controls.Add(this.DateFrom); this.Controls.Add(this.GridSpaService); this.Name = "RPOperation"; this.Text = "Spa Service Activity Report"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RPOperation_Load); ((System.ComponentModel.ISupportInitialize)(this.GridSpaService)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.GridStockRequest = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField5 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField6 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField7 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField8 = new DevExpress.XtraPivotGrid.PivotGridField(); this.DateFrom = new DevExpress.XtraEditors.DateEdit(); this.DateTo = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.DateRangeTo = new DevExpress.XtraEditors.DateEdit(); this.txtItemCode = new DevExpress.XtraEditors.TextEdit(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.txtItemDesc = new DevExpress.XtraEditors.TextEdit(); this.label4 = new System.Windows.Forms.Label(); this.txtStyleCode = new DevExpress.XtraEditors.TextEdit(); this.label5 = new System.Windows.Forms.Label(); this.txtStyleDesc = new DevExpress.XtraEditors.TextEdit(); this.btnSearch = new DevExpress.XtraEditors.SimpleButton(); this.btnReset = new DevExpress.XtraEditors.SimpleButton(); ((System.ComponentModel.ISupportInitialize)(this.GridStockRequest)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtItemCode.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtItemDesc.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtStyleCode.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtStyleDesc.Properties)).BeginInit(); this.SuspendLayout(); // // GridStockRequest // this.GridStockRequest.Cursor = System.Windows.Forms.Cursors.Default; this.GridStockRequest.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField3, this.pivotGridField4, this.pivotGridField5, this.pivotGridField6, this.pivotGridField7, this.pivotGridField8 }); this.GridStockRequest.Location = new System.Drawing.Point(0, 48); this.GridStockRequest.Name = "GridStockRequest"; this.GridStockRequest.OptionsCustomization.AllowDrag = false; this.GridStockRequest.OptionsCustomization.AllowExpand = false; this.GridStockRequest.OptionsCustomization.AllowFilter = false; this.GridStockRequest.OptionsCustomization.AllowSort = false; this.GridStockRequest.OptionsView.ShowDataHeaders = false; this.GridStockRequest.OptionsView.ShowFilterHeaders = false; this.GridStockRequest.Size = new System.Drawing.Size(776, 336); this.GridStockRequest.TabIndex = 0; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField1.AreaIndex = 0; this.pivotGridField1.Caption = "Item Code"; this.pivotGridField1.FieldName = "strProductCode"; this.pivotGridField1.Name = "pivotGridField1"; this.pivotGridField1.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.True; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField2.AreaIndex = 1; this.pivotGridField2.Caption = "Brand"; this.pivotGridField2.FieldName = "strBrandCode"; this.pivotGridField2.Name = "pivotGridField2"; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField3.AreaIndex = 2; this.pivotGridField3.Caption = "Style Code"; this.pivotGridField3.FieldName = "strStyleCode"; this.pivotGridField3.Name = "pivotGridField3"; this.pivotGridField3.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.True; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField4.AreaIndex = 3; this.pivotGridField4.Caption = "Color"; this.pivotGridField4.FieldName = "strColorCode"; this.pivotGridField4.Name = "pivotGridField4"; this.pivotGridField4.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.True; // // pivotGridField5 // this.pivotGridField5.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField5.AreaIndex = 4; this.pivotGridField5.Caption = "Size"; this.pivotGridField5.FieldName = "strSizeCode"; this.pivotGridField5.Name = "pivotGridField5"; this.pivotGridField5.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.True; // // pivotGridField6 // this.pivotGridField6.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField6.AreaIndex = 0; this.pivotGridField6.Caption = "Branch"; this.pivotGridField6.FieldName = "strBranchCodeFrom"; this.pivotGridField6.Name = "pivotGridField6"; // // pivotGridField7 // this.pivotGridField7.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField7.AreaIndex = 0; this.pivotGridField7.Caption = "Quantity"; this.pivotGridField7.FieldName = "nQuantity"; this.pivotGridField7.Name = "pivotGridField7"; // // pivotGridField8 // this.pivotGridField8.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField8.AreaIndex = 5; this.pivotGridField8.Caption = "Item Desc"; this.pivotGridField8.FieldName = "strDescription"; this.pivotGridField8.Name = "pivotGridField8"; this.pivotGridField8.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.True; // // DateFrom // this.DateFrom.EditValue = null; this.DateFrom.Location = new System.Drawing.Point(40, 0); this.DateFrom.Name = "DateFrom"; // // DateFrom.Properties // this.DateFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.DateFrom.Size = new System.Drawing.Size(80, 20); this.DateFrom.TabIndex = 9; // // DateTo // this.DateTo.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.DateTo.Location = new System.Drawing.Point(128, 0); this.DateTo.Name = "DateTo"; this.DateTo.Size = new System.Drawing.Size(24, 16); this.DateTo.TabIndex = 8; this.DateTo.Text = "To"; // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label1.Location = new System.Drawing.Point(0, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(40, 16); this.label1.TabIndex = 7; this.label1.Text = "From"; // // DateRangeTo // this.DateRangeTo.EditValue = null; this.DateRangeTo.Location = new System.Drawing.Point(160, 0); this.DateRangeTo.Name = "DateRangeTo"; // // DateRangeTo.Properties // this.DateRangeTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.DateRangeTo.Properties.DisplayFormat.FormatString = "dd/MM/yyyy"; this.DateRangeTo.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.DateRangeTo.Properties.EditFormat.FormatString = "dd/MM/yyyy"; this.DateRangeTo.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.DateRangeTo.Properties.Mask.EditMask = "dd/MM/yyyy"; this.DateRangeTo.Size = new System.Drawing.Size(88, 20); this.DateRangeTo.TabIndex = 6; // // txtItemCode // this.txtItemCode.EditValue = ""; this.txtItemCode.Location = new System.Drawing.Point(72, 24); this.txtItemCode.Name = "txtItemCode"; this.txtItemCode.Size = new System.Drawing.Size(56, 20); this.txtItemCode.TabIndex = 10; // // label2 // this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label2.Location = new System.Drawing.Point(0, 24); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(64, 16); this.label2.TabIndex = 11; this.label2.Text = "Item Code"; // // label3 // this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label3.Location = new System.Drawing.Point(136, 24); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(64, 16); this.label3.TabIndex = 13; this.label3.Text = "Item Desc"; // // txtItemDesc // this.txtItemDesc.EditValue = ""; this.txtItemDesc.Location = new System.Drawing.Point(208, 24); this.txtItemDesc.Name = "txtItemDesc"; this.txtItemDesc.Size = new System.Drawing.Size(56, 20); this.txtItemDesc.TabIndex = 12; // // label4 // this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label4.Location = new System.Drawing.Point(272, 24); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(72, 16); this.label4.TabIndex = 15; this.label4.Text = "Style Code"; // // txtStyleCode // this.txtStyleCode.EditValue = ""; this.txtStyleCode.Location = new System.Drawing.Point(344, 24); this.txtStyleCode.Name = "txtStyleCode"; this.txtStyleCode.Size = new System.Drawing.Size(56, 20); this.txtStyleCode.TabIndex = 14; // // label5 // this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label5.Location = new System.Drawing.Point(400, 24); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(72, 16); this.label5.TabIndex = 17; this.label5.Text = "Style Desc"; // // txtStyleDesc // this.txtStyleDesc.EditValue = ""; this.txtStyleDesc.Location = new System.Drawing.Point(472, 24); this.txtStyleDesc.Name = "txtStyleDesc"; this.txtStyleDesc.Size = new System.Drawing.Size(56, 20); this.txtStyleDesc.TabIndex = 16; // // btnSearch // this.btnSearch.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.btnSearch.Location = new System.Drawing.Point(536, 24); this.btnSearch.Name = "btnSearch"; this.btnSearch.Size = new System.Drawing.Size(56, 20); this.btnSearch.TabIndex = 55; this.btnSearch.Text = "Search"; this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click); // // btnReset // this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.btnReset.Location = new System.Drawing.Point(600, 24); this.btnReset.Name = "btnReset"; this.btnReset.Size = new System.Drawing.Size(56, 20); this.btnReset.TabIndex = 56; this.btnReset.Text = "Reset"; this.btnReset.Click += new System.EventHandler(this.btnReset_Click); // // RPStock // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(808, 453); this.Controls.Add(this.btnReset); this.Controls.Add(this.btnSearch); this.Controls.Add(this.label5); this.Controls.Add(this.txtStyleDesc); this.Controls.Add(this.label4); this.Controls.Add(this.txtStyleCode); this.Controls.Add(this.label3); this.Controls.Add(this.txtItemDesc); this.Controls.Add(this.label2); this.Controls.Add(this.txtItemCode); this.Controls.Add(this.DateFrom); this.Controls.Add(this.DateTo); this.Controls.Add(this.label1); this.Controls.Add(this.DateRangeTo); this.Controls.Add(this.GridStockRequest); this.Name = "RPStock"; this.Text = "Stock Report"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RPStock_Load); ((System.ComponentModel.ISupportInitialize)(this.GridStockRequest)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtItemCode.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtItemDesc.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtStyleCode.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtStyleDesc.Properties)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.label7 = new System.Windows.Forms.Label(); this.luedtRPStaffSalesPerfmCategory = new DevExpress.XtraEditors.LookUpEdit(); this.label1 = new System.Windows.Forms.Label(); this.gridPromotionPackage = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.btnReset = new DevExpress.XtraEditors.SimpleButton(); this.sbtnReset = new DevExpress.XtraEditors.SimpleButton(); this.dateEdit1 = new System.Windows.Forms.MonthCalendar(); this.dateEdit2 = new System.Windows.Forms.MonthCalendar(); this.dateEdit3 = new System.Windows.Forms.MonthCalendar(); ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmCategory.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridPromotionPackage)).BeginInit(); this.SuspendLayout(); // // label7 // this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label7.Location = new System.Drawing.Point(427, 38); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(32, 21); this.label7.TabIndex = 75; this.label7.Text = "To"; // // luedtRPStaffSalesPerfmCategory // this.luedtRPStaffSalesPerfmCategory.EditValue = ""; this.luedtRPStaffSalesPerfmCategory.Location = new System.Drawing.Point(0, 35); this.luedtRPStaffSalesPerfmCategory.Name = "luedtRPStaffSalesPerfmCategory"; this.luedtRPStaffSalesPerfmCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.luedtRPStaffSalesPerfmCategory.Size = new System.Drawing.Size(152, 20); this.luedtRPStaffSalesPerfmCategory.TabIndex = 72; // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label1.Location = new System.Drawing.Point(-3, 9); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(84, 23); this.label1.TabIndex = 71; this.label1.Text = "Category"; // // gridPromotionPackage // this.gridPromotionPackage.Cursor = System.Windows.Forms.Cursors.Default; this.gridPromotionPackage.Dock = System.Windows.Forms.DockStyle.Bottom; this.gridPromotionPackage.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField3, this.pivotGridField4 }); this.gridPromotionPackage.Location = new System.Drawing.Point(0, 148); this.gridPromotionPackage.Name = "gridPromotionPackage"; this.gridPromotionPackage.OptionsCustomization.AllowDrag = false; this.gridPromotionPackage.OptionsCustomization.AllowExpand = false; this.gridPromotionPackage.OptionsCustomization.AllowFilter = false; this.gridPromotionPackage.OptionsView.ShowColumnHeaders = false; this.gridPromotionPackage.OptionsView.ShowDataHeaders = false; this.gridPromotionPackage.OptionsView.ShowFilterHeaders = false; this.gridPromotionPackage.Size = new System.Drawing.Size(976, 378); this.gridPromotionPackage.TabIndex = 70; this.gridPromotionPackage.Click += new System.EventHandler(this.gridPromotionPackage_Click); // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField1.AreaIndex = 0; this.pivotGridField1.Caption = "Package Code"; this.pivotGridField1.CellFormat.FormatString = "d/MM/yyyy"; this.pivotGridField1.CellFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.pivotGridField1.FieldName = "strCode"; this.pivotGridField1.Name = "pivotGridField1"; this.pivotGridField1.SortBySummaryInfo.Field = this.pivotGridField4; this.pivotGridField1.SortOrder = DevExpress.XtraPivotGrid.PivotSortOrder.Descending; this.pivotGridField1.Width = 90; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField2.AreaIndex = 1; this.pivotGridField2.Caption = "Description"; this.pivotGridField2.FieldName = "strDescription"; this.pivotGridField2.MinWidth = 40; this.pivotGridField2.Name = "pivotGridField2"; this.pivotGridField2.SortBySummaryInfo.Field = this.pivotGridField4; this.pivotGridField2.Width = 90; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField3.AreaIndex = 0; this.pivotGridField3.Caption = "Branch"; this.pivotGridField3.FieldName = "strBranchCode"; this.pivotGridField3.Name = "pivotGridField3"; this.pivotGridField3.SortBySummaryInfo.Field = this.pivotGridField4; this.pivotGridField3.Width = 75; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField4.AreaIndex = 0; this.pivotGridField4.Caption = "Amount"; this.pivotGridField4.FieldName = "nQuantity"; this.pivotGridField4.Name = "pivotGridField4"; this.pivotGridField4.Options.AllowSort = DevExpress.Utils.DefaultBoolean.True; this.pivotGridField4.SortMode = DevExpress.XtraPivotGrid.PivotSortMode.Value; this.pivotGridField4.SortOrder = DevExpress.XtraPivotGrid.PivotSortOrder.Descending; this.pivotGridField4.Width = 90; // // btnReset // this.btnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnReset.Appearance.Options.UseFont = true; this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.btnReset.Location = new System.Drawing.Point(842, 9); this.btnReset.LookAndFeel.UseDefaultLookAndFeel = false; this.btnReset.Name = "btnReset"; this.btnReset.Size = new System.Drawing.Size(48, 16); this.btnReset.TabIndex = 199; this.btnReset.Text = "Reset"; this.btnReset.Visible = false; this.btnReset.Click += new System.EventHandler(this.btnReset_Click); // // sbtnReset // this.sbtnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.sbtnReset.Appearance.Options.UseFont = true; this.sbtnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnReset.Location = new System.Drawing.Point(406, 64); this.sbtnReset.LookAndFeel.UseDefaultLookAndFeel = false; this.sbtnReset.Name = "sbtnReset"; this.sbtnReset.Size = new System.Drawing.Size(70, 30); this.sbtnReset.TabIndex = 200; this.sbtnReset.Text = "Enquiry"; this.sbtnReset.Click += new System.EventHandler(this.sbtnReset_Click); // // dateEdit1 // this.dateEdit1.Location = new System.Drawing.Point(207, -2); this.dateEdit1.Name = "dateEdit1"; this.dateEdit1.TabIndex = 201; // // dateEdit2 // this.dateEdit2.Location = new System.Drawing.Point(502, -2); this.dateEdit2.Name = "dateEdit2"; this.dateEdit2.TabIndex = 202; // // dateEdit3 // this.dateEdit3.Location = new System.Drawing.Point(735, -2); this.dateEdit3.Name = "dateEdit3"; this.dateEdit3.TabIndex = 203; this.dateEdit3.DateSelected += new System.Windows.Forms.DateRangeEventHandler(this.dateEdit3_DateSelected); // // RPPromotionSalesPkg // this.ClientSize = new System.Drawing.Size(976, 526); this.Controls.Add(this.dateEdit3); this.Controls.Add(this.dateEdit2); this.Controls.Add(this.dateEdit1); this.Controls.Add(this.sbtnReset); this.Controls.Add(this.btnReset); this.Controls.Add(this.label7); this.Controls.Add(this.luedtRPStaffSalesPerfmCategory); this.Controls.Add(this.label1); this.Controls.Add(this.gridPromotionPackage); this.Name = "RPPromotionSalesPkg"; this.Text = "Promotion Package Sales Analysis"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RPPromotionSalesPkg_Load); ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmCategory.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridPromotionPackage)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.gvPromotionAnalysis = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField5 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField6 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField7 = new DevExpress.XtraPivotGrid.PivotGridField(); this.btnReset = new DevExpress.XtraEditors.SimpleButton(); this.sbtnReset = new DevExpress.XtraEditors.SimpleButton(); this.lkBranch = new DevExpress.XtraEditors.LookUpEdit(); this.lkPromotion = new DevExpress.XtraEditors.LookUpEdit(); this.label6 = new System.Windows.Forms.Label(); this.label5 = new System.Windows.Forms.Label(); this.DateFrom = new DevExpress.XtraEditors.DateEdit(); this.DateRangeTo = new DevExpress.XtraEditors.DateEdit(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.gvPromotionAnalysis)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.lkPromotion.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).BeginInit(); this.SuspendLayout(); // // gvPromotionAnalysis // this.gvPromotionAnalysis.Cursor = System.Windows.Forms.Cursors.Default; this.gvPromotionAnalysis.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField5, this.pivotGridField6, this.pivotGridField3, this.pivotGridField4, this.pivotGridField7}); this.gvPromotionAnalysis.Location = new System.Drawing.Point(8, 40); this.gvPromotionAnalysis.Name = "gvPromotionAnalysis"; this.gvPromotionAnalysis.OptionsCustomization.AllowDrag = false; this.gvPromotionAnalysis.OptionsCustomization.AllowFilter = false; this.gvPromotionAnalysis.OptionsCustomization.AllowSort = false; this.gvPromotionAnalysis.OptionsView.ShowDataHeaders = false; this.gvPromotionAnalysis.OptionsView.ShowFilterHeaders = false; this.gvPromotionAnalysis.Size = new System.Drawing.Size(960, 440); this.gvPromotionAnalysis.TabIndex = 0; this.gvPromotionAnalysis.CellDoubleClick += new DevExpress.XtraPivotGrid.PivotCellEventHandler(this.gvPromotionAnalysis_CellDoubleClick); // // pivotGridField1 // this.pivotGridField1.Appearance.Header.BackColor = System.Drawing.SystemColors.ActiveCaptionText; this.pivotGridField1.Appearance.Header.Options.UseBackColor = true; this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField1.AreaIndex = 3; this.pivotGridField1.Caption = "Code"; this.pivotGridField1.FieldName = "strPromotionCode"; this.pivotGridField1.Name = "pivotGridField1"; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField2.AreaIndex = 2; this.pivotGridField2.Caption = "Description"; this.pivotGridField2.ExpandedInFieldsGroup = false; this.pivotGridField2.FieldName = "strDescription"; this.pivotGridField2.Name = "pivotGridField2"; this.pivotGridField2.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField2.Width = 180; // // pivotGridField5 // this.pivotGridField5.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField5.AreaIndex = 0; this.pivotGridField5.Caption = "Branch Code"; this.pivotGridField5.FieldName = "strBranchCode"; this.pivotGridField5.Name = "pivotGridField5"; this.pivotGridField5.Width = 70; // // pivotGridField6 // this.pivotGridField6.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField6.AreaIndex = 0; this.pivotGridField6.FieldName = "Amount"; this.pivotGridField6.Name = "pivotGridField6"; this.pivotGridField6.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; // // pivotGridField3 // this.pivotGridField3.AllowedAreas = DevExpress.XtraPivotGrid.PivotGridAllowedAreas.RowArea; this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField3.AreaIndex = 4; this.pivotGridField3.CellFormat.FormatString = "{yyyy-MM-dd}"; this.pivotGridField3.FieldName = "dtDate"; this.pivotGridField3.GrandTotalText = "Date"; this.pivotGridField3.Name = "pivotGridField3"; this.pivotGridField3.Options.ShowInCustomizationForm = false; this.pivotGridField3.ValueFormat.FormatString = "MM/dd/yyyy"; this.pivotGridField3.ValueFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.pivotGridField3.Width = 80; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField4.AreaIndex = 0; this.pivotGridField4.Caption = "Valid Start"; this.pivotGridField4.CellFormat.FormatString = "dd/MM/yyyy"; this.pivotGridField4.CellFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.pivotGridField4.ExpandedInFieldsGroup = false; this.pivotGridField4.FieldName = "dtValidStart"; this.pivotGridField4.Name = "pivotGridField4"; this.pivotGridField4.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField4.ValueFormat.FormatString = "MM/dd/yyyy"; this.pivotGridField4.ValueFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.pivotGridField4.Width = 80; // // pivotGridField7 // this.pivotGridField7.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField7.AreaIndex = 1; this.pivotGridField7.Caption = "Valid End"; this.pivotGridField7.CellFormat.FormatString = "d"; this.pivotGridField7.CellFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.pivotGridField7.ExpandedInFieldsGroup = false; this.pivotGridField7.FieldName = "dtValidEnd"; this.pivotGridField7.Name = "pivotGridField7"; this.pivotGridField7.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField7.ValueFormat.FormatString = "MM/dd/yyyy"; this.pivotGridField7.ValueFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.pivotGridField7.Width = 80; // // btnReset // this.btnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.btnReset.Appearance.Options.UseFont = true; this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.btnReset.Location = new System.Drawing.Point(752, 8); this.btnReset.LookAndFeel.UseDefaultLookAndFeel = false; this.btnReset.Name = "btnReset"; this.btnReset.Size = new System.Drawing.Size(48, 16); this.btnReset.TabIndex = 198; this.btnReset.Text = "Reset"; this.btnReset.Click += new System.EventHandler(this.btnReset_Click); // // sbtnReset // this.sbtnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.sbtnReset.Appearance.Options.UseFont = true; this.sbtnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnReset.Location = new System.Drawing.Point(696, 8); this.sbtnReset.LookAndFeel.UseDefaultLookAndFeel = false; this.sbtnReset.Name = "sbtnReset"; this.sbtnReset.Size = new System.Drawing.Size(48, 16); this.sbtnReset.TabIndex = 192; this.sbtnReset.Text = "Enquiry"; this.sbtnReset.Click += new System.EventHandler(this.sbtnReset_Click); // // lkBranch // this.lkBranch.Location = new System.Drawing.Point(416, 8); this.lkBranch.Name = "lkBranch"; // // lkBranch.Properties // this.lkBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.lkBranch.Size = new System.Drawing.Size(96, 22); this.lkBranch.TabIndex = 191; // // lkPromotion // this.lkPromotion.Location = new System.Drawing.Point(592, 8); this.lkPromotion.Name = "lkPromotion"; // // lkPromotion.Properties // this.lkPromotion.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.lkPromotion.Size = new System.Drawing.Size(96, 22); this.lkPromotion.TabIndex = 190; // // label6 // this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.label6.Location = new System.Drawing.Point(520, 8); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(72, 16); this.label6.TabIndex = 189; this.label6.Text = "Promotion Code"; // // label5 // this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.label5.Location = new System.Drawing.Point(360, 8); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(56, 16); this.label5.TabIndex = 188; this.label5.Text = "Branch"; // // DateFrom // this.DateFrom.EditValue = null; this.DateFrom.Location = new System.Drawing.Point(88, 8); this.DateFrom.Name = "DateFrom"; // // DateFrom.Properties // this.DateFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.DateFrom.Size = new System.Drawing.Size(88, 22); this.DateFrom.TabIndex = 199; // // DateRangeTo // this.DateRangeTo.EditValue = null; this.DateRangeTo.Location = new System.Drawing.Point(248, 8); this.DateRangeTo.Name = "DateRangeTo"; // // DateRangeTo.Properties // this.DateRangeTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.DateRangeTo.Size = new System.Drawing.Size(100, 22); this.DateRangeTo.TabIndex = 200; // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.label1.Location = new System.Drawing.Point(8, 8); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(72, 16); this.label1.TabIndex = 201; this.label1.Text = "Date From"; // // label2 // this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.label2.Location = new System.Drawing.Point(184, 8); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(56, 16); this.label2.TabIndex = 202; this.label2.Text = "Date To"; // // RPPromotionAnalysis // this.AutoScaleBaseSize = new System.Drawing.Size(5, 14); this.ClientSize = new System.Drawing.Size(984, 533); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.DateRangeTo); this.Controls.Add(this.DateFrom); this.Controls.Add(this.btnReset); this.Controls.Add(this.sbtnReset); this.Controls.Add(this.lkBranch); this.Controls.Add(this.lkPromotion); this.Controls.Add(this.label6); this.Controls.Add(this.label5); this.Controls.Add(this.gvPromotionAnalysis); this.Name = "RPPromotionAnalysis"; this.Text = "Promotion Analysis"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RPPromotionAnalysis_Load); ((System.ComponentModel.ISupportInitialize)(this.gvPromotionAnalysis)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.lkPromotion.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.dateEdit2 = new DevExpress.XtraEditors.DateEdit(); this.dateEdit1 = new DevExpress.XtraEditors.DateEdit(); this.label7 = new System.Windows.Forms.Label(); this.label6 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.luedtRPStaffSalesPerfmCategory = new DevExpress.XtraEditors.LookUpEdit(); this.label1 = new System.Windows.Forms.Label(); this.gridPromotionPackage = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.btnReset = new DevExpress.XtraEditors.SimpleButton(); this.sbtnReset = new DevExpress.XtraEditors.SimpleButton(); ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmCategory.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridPromotionPackage)).BeginInit(); this.SuspendLayout(); // // dateEdit2 // this.dateEdit2.EditValue = null; this.dateEdit2.Location = new System.Drawing.Point(216, 8); this.dateEdit2.Name = "dateEdit2"; // // dateEdit2.Properties // this.dateEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.dateEdit2.Properties.DisplayFormat.FormatString = "dd/MM/yyyy"; this.dateEdit2.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.dateEdit2.Properties.EditFormat.FormatString = "dd/MM/yyyy"; this.dateEdit2.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.dateEdit2.Properties.Mask.EditMask = "dd/MM/yyyy"; this.dateEdit2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret; this.dateEdit2.Size = new System.Drawing.Size(100, 22); this.dateEdit2.TabIndex = 77; // // dateEdit1 // this.dateEdit1.EditValue = null; this.dateEdit1.Location = new System.Drawing.Point(40, 8); this.dateEdit1.Name = "dateEdit1"; // // dateEdit1.Properties // this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.dateEdit1.Properties.DisplayFormat.FormatString = "dd/MM/yyyy"; this.dateEdit1.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.dateEdit1.Properties.EditFormat.FormatString = "dd/MM/yyyy"; this.dateEdit1.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.dateEdit1.Properties.Mask.EditMask = "dd/MM/yyyy"; this.dateEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret; this.dateEdit1.Size = new System.Drawing.Size(100, 22); this.dateEdit1.TabIndex = 76; // // label7 // this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label7.Location = new System.Drawing.Point(144, 8); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(24, 23); this.label7.TabIndex = 75; this.label7.Text = "To"; // // label6 // this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label6.Location = new System.Drawing.Point(176, 8); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(40, 23); this.label6.TabIndex = 74; this.label6.Text = "Date"; // // label3 // this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label3.Location = new System.Drawing.Point(0, 8); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(40, 16); this.label3.TabIndex = 73; this.label3.Text = "Date"; // // luedtRPStaffSalesPerfmCategory // this.luedtRPStaffSalesPerfmCategory.EditValue = ""; this.luedtRPStaffSalesPerfmCategory.Location = new System.Drawing.Point(400, 8); this.luedtRPStaffSalesPerfmCategory.Name = "luedtRPStaffSalesPerfmCategory"; // // luedtRPStaffSalesPerfmCategory.Properties // this.luedtRPStaffSalesPerfmCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.luedtRPStaffSalesPerfmCategory.Size = new System.Drawing.Size(152, 22); this.luedtRPStaffSalesPerfmCategory.TabIndex = 72; // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label1.Location = new System.Drawing.Point(328, 8); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(64, 23); this.label1.TabIndex = 71; this.label1.Text = "Category"; // // gridPromotionPackage // this.gridPromotionPackage.Cursor = System.Windows.Forms.Cursors.Default; this.gridPromotionPackage.Dock = System.Windows.Forms.DockStyle.Bottom; this.gridPromotionPackage.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField3, this.pivotGridField4}); this.gridPromotionPackage.Location = new System.Drawing.Point(0, 38); this.gridPromotionPackage.Name = "gridPromotionPackage"; this.gridPromotionPackage.OptionsCustomization.AllowDrag = false; this.gridPromotionPackage.OptionsCustomization.AllowExpand = false; this.gridPromotionPackage.OptionsCustomization.AllowFilter = false; this.gridPromotionPackage.OptionsCustomization.AllowSort = false; this.gridPromotionPackage.OptionsView.ShowDataHeaders = false; this.gridPromotionPackage.OptionsView.ShowFilterHeaders = false; this.gridPromotionPackage.Size = new System.Drawing.Size(976, 424); this.gridPromotionPackage.TabIndex = 70; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField1.AreaIndex = 0; this.pivotGridField1.Caption = "Package Code"; this.pivotGridField1.CellFormat.FormatString = "d/MM/yyyy"; this.pivotGridField1.CellFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.pivotGridField1.FieldName = "strCode"; this.pivotGridField1.Name = "pivotGridField1"; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField2.AreaIndex = 1; this.pivotGridField2.Caption = "Description"; this.pivotGridField2.FieldName = "strDescription"; this.pivotGridField2.MinWidth = 40; this.pivotGridField2.Name = "pivotGridField2"; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField3.AreaIndex = 0; this.pivotGridField3.Caption = "Branch"; this.pivotGridField3.FieldName = "strBranchCode"; this.pivotGridField3.Name = "pivotGridField3"; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField4.AreaIndex = 0; this.pivotGridField4.Caption = "Amount"; this.pivotGridField4.FieldName = "nQuantity"; this.pivotGridField4.Name = "pivotGridField4"; // // btnReset // this.btnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.btnReset.Appearance.Options.UseFont = true; this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.btnReset.Location = new System.Drawing.Point(616, 8); this.btnReset.LookAndFeel.UseDefaultLookAndFeel = false; this.btnReset.Name = "btnReset"; this.btnReset.Size = new System.Drawing.Size(48, 16); this.btnReset.TabIndex = 199; this.btnReset.Text = "Reset"; this.btnReset.Click += new System.EventHandler(this.btnReset_Click); // // sbtnReset // this.sbtnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.sbtnReset.Appearance.Options.UseFont = true; this.sbtnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnReset.Location = new System.Drawing.Point(560, 8); this.sbtnReset.LookAndFeel.UseDefaultLookAndFeel = false; this.sbtnReset.Name = "sbtnReset"; this.sbtnReset.Size = new System.Drawing.Size(48, 16); this.sbtnReset.TabIndex = 200; this.sbtnReset.Text = "Enquiry"; this.sbtnReset.Click += new System.EventHandler(this.sbtnReset_Click); // // RPPromotionSalesPkg // this.AutoScale = false; this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(976, 462); this.Controls.Add(this.sbtnReset); this.Controls.Add(this.btnReset); this.Controls.Add(this.dateEdit2); this.Controls.Add(this.dateEdit1); this.Controls.Add(this.label7); this.Controls.Add(this.label6); this.Controls.Add(this.label3); this.Controls.Add(this.luedtRPStaffSalesPerfmCategory); this.Controls.Add(this.label1); this.Controls.Add(this.gridPromotionPackage); this.Name = "RPPromotionSalesPkg"; this.Text = "Promotion Package Sales Analysis"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RPPromotionSalesPkg_Load); ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmCategory.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridPromotionPackage)).EndInit(); this.ResumeLayout(false); }
/// <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.XtraPivotGrid.PivotGridGroup pivotGridGroup1 = new DevExpress.XtraPivotGrid.PivotGridGroup(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AllIncomeAnalysis)); this.pivotGridField10 = new DevExpress.XtraPivotGrid.PivotGridField(); this.GridAllIncome = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.DateRangeTo = new DevExpress.XtraEditors.DateEdit(); this.label1 = new System.Windows.Forms.Label(); this.DateTo = new System.Windows.Forms.Label(); this.DateFrom = new DevExpress.XtraEditors.DateEdit(); this.label3 = new System.Windows.Forms.Label(); this.PrevTenDaysIncomeAnalysis = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField11 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField12 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField9 = new DevExpress.XtraPivotGrid.PivotGridField(); this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components); this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components); this.printableComponentLink2 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components); this.PRINT1 = new DevExpress.XtraEditors.HyperLinkEdit(); this.PRINT2 = new DevExpress.XtraEditors.HyperLinkEdit(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); ((System.ComponentModel.ISupportInitialize)(this.GridAllIncome)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties.VistaTimeProperties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties.VistaTimeProperties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PrevTenDaysIncomeAnalysis)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT2.Properties)).BeginInit(); this.SuspendLayout(); // // pivotGridField10 // this.pivotGridField10.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField10.AreaIndex = 0; this.pivotGridField10.Caption = "Category"; this.pivotGridField10.FieldName = "strDescription"; this.pivotGridField10.Name = "pivotGridField10"; this.pivotGridField10.Width = 120; // // GridAllIncome // this.GridAllIncome.Cursor = System.Windows.Forms.Cursors.Default; this.GridAllIncome.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField3, this.pivotGridField4}); this.GridAllIncome.Location = new System.Drawing.Point(0, 40); this.GridAllIncome.Name = "GridAllIncome"; this.GridAllIncome.OptionsView.ShowDataHeaders = false; this.GridAllIncome.OptionsView.ShowFilterHeaders = false; this.GridAllIncome.Size = new System.Drawing.Size(960, 288); this.GridAllIncome.TabIndex = 0; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField1.AreaIndex = 0; this.pivotGridField1.Caption = "Branch"; this.pivotGridField1.FieldName = "strBranchCode"; this.pivotGridField1.Name = "pivotGridField1"; this.pivotGridField1.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField1.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField1.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField1.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField2.AreaIndex = 0; this.pivotGridField2.Caption = "Category"; this.pivotGridField2.FieldName = "strDescription"; this.pivotGridField2.Name = "pivotGridField2"; this.pivotGridField2.Width = 120; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField3.AreaIndex = 0; this.pivotGridField3.Caption = "Nett Amount"; this.pivotGridField3.FieldName = "mNettAmount"; this.pivotGridField3.Name = "pivotGridField3"; // // DateRangeTo // this.DateRangeTo.EditValue = null; this.DateRangeTo.Location = new System.Drawing.Point(216, 8); this.DateRangeTo.Name = "DateRangeTo"; this.DateRangeTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.DateRangeTo.Properties.DisplayFormat.FormatString = "dd/MM/yyyy"; this.DateRangeTo.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.DateRangeTo.Properties.EditFormat.FormatString = "dd/MM/yyyy"; this.DateRangeTo.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.DateRangeTo.Properties.Mask.EditMask = "dd/MM/yyyy"; this.DateRangeTo.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret; this.DateRangeTo.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.DateRangeTo.Size = new System.Drawing.Size(100, 20); this.DateRangeTo.TabIndex = 2; this.DateRangeTo.EditValueChanged += new System.EventHandler(this.DateRangeTo_EditValueChanged); // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.Location = new System.Drawing.Point(8, 8); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(40, 16); this.label1.TabIndex = 3; this.label1.Text = "From"; // // DateTo // this.DateTo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.DateTo.Location = new System.Drawing.Point(176, 8); this.DateTo.Name = "DateTo"; this.DateTo.Size = new System.Drawing.Size(24, 16); this.DateTo.TabIndex = 4; this.DateTo.Text = "To"; // // DateFrom // this.DateFrom.EditValue = null; this.DateFrom.Location = new System.Drawing.Point(48, 8); this.DateFrom.Name = "DateFrom"; this.DateFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.DateFrom.Properties.DisplayFormat.FormatString = "dd/MM/yyyy"; this.DateFrom.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.DateFrom.Properties.EditFormat.FormatString = "dd/MM/yyyy"; this.DateFrom.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.DateFrom.Properties.Mask.EditMask = "dd/MM/yyyy"; this.DateFrom.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret; this.DateFrom.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.DateFrom.Size = new System.Drawing.Size(100, 20); this.DateFrom.TabIndex = 5; this.DateFrom.EditValueChanged += new System.EventHandler(this.DateFrom_EditValueChanged); // // label3 // this.label3.BackColor = System.Drawing.Color.Transparent; this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label3.Location = new System.Drawing.Point(8, 336); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(144, 24); this.label3.TabIndex = 41; this.label3.Text = "Previous 10 Days Sales"; this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // PrevTenDaysIncomeAnalysis // this.PrevTenDaysIncomeAnalysis.Cursor = System.Windows.Forms.Cursors.Default; this.PrevTenDaysIncomeAnalysis.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField11, this.pivotGridField10, this.pivotGridField12, this.pivotGridField9}); pivotGridGroup1.Fields.Add(this.pivotGridField10); pivotGridGroup1.Hierarchy = null; this.PrevTenDaysIncomeAnalysis.Groups.AddRange(new DevExpress.XtraPivotGrid.PivotGridGroup[] { pivotGridGroup1}); this.PrevTenDaysIncomeAnalysis.Location = new System.Drawing.Point(0, 360); this.PrevTenDaysIncomeAnalysis.Name = "PrevTenDaysIncomeAnalysis"; this.PrevTenDaysIncomeAnalysis.OptionsCustomization.AllowDrag = false; this.PrevTenDaysIncomeAnalysis.OptionsCustomization.AllowExpand = false; this.PrevTenDaysIncomeAnalysis.OptionsCustomization.AllowSort = false; this.PrevTenDaysIncomeAnalysis.OptionsDataField.Area = DevExpress.XtraPivotGrid.PivotDataArea.RowArea; this.PrevTenDaysIncomeAnalysis.OptionsDataField.AreaIndex = 1; this.PrevTenDaysIncomeAnalysis.OptionsView.ShowDataHeaders = false; this.PrevTenDaysIncomeAnalysis.OptionsView.ShowFilterHeaders = false; this.PrevTenDaysIncomeAnalysis.OptionsView.ShowRowGrandTotals = false; this.PrevTenDaysIncomeAnalysis.Size = new System.Drawing.Size(960, 200); this.PrevTenDaysIncomeAnalysis.TabIndex = 40; // // pivotGridField11 // this.pivotGridField11.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField11.AreaIndex = 0; this.pivotGridField11.Caption = "Nett Amount"; this.pivotGridField11.FieldName = "SalesAmount"; this.pivotGridField11.Name = "pivotGridField11"; // // pivotGridField12 // this.pivotGridField12.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField12.AreaIndex = 0; this.pivotGridField12.Caption = "Branch"; this.pivotGridField12.FieldName = "strBranchCode"; this.pivotGridField12.Name = "pivotGridField12"; this.pivotGridField12.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField12.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField12.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField12.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False; // // pivotGridField9 // this.pivotGridField9.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField9.AreaIndex = 1; this.pivotGridField9.Caption = "Date"; this.pivotGridField9.FieldName = "dtDate"; this.pivotGridField9.Name = "pivotGridField9"; this.pivotGridField9.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField9.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField9.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField9.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField9.ValueFormat.FormatString = "d"; this.pivotGridField9.ValueFormat.FormatType = DevExpress.Utils.FormatType.DateTime; // // printingSystem1 // this.printingSystem1.Links.AddRange(new object[] { this.printableComponentLink1, this.printableComponentLink2}); // // printableComponentLink1 // this.printableComponentLink1.Component = this.GridAllIncome; this.printableComponentLink1.CustomPaperSize = new System.Drawing.Size(0, 0); this.printableComponentLink1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printableComponentLink1.ImageStream"))); this.printableComponentLink1.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(new DevExpress.XtraPrinting.PageHeaderArea(new string[] { "All Income Analysis Report", "", "[Date Printed] [Time Printed]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near), new DevExpress.XtraPrinting.PageFooterArea(new string[] { "", "", "[Page # of Pages #]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near)); this.printableComponentLink1.PrintingSystem = this.printingSystem1; this.printableComponentLink1.VerticalContentSplitting = DevExpress.XtraPrinting.VerticalContentSplitting.Smart; // // printableComponentLink2 // this.printableComponentLink2.Component = this.PrevTenDaysIncomeAnalysis; this.printableComponentLink2.CustomPaperSize = new System.Drawing.Size(0, 0); this.printableComponentLink2.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printableComponentLink2.ImageStream"))); this.printableComponentLink2.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(new DevExpress.XtraPrinting.PageHeaderArea(new string[] { "All Income Analysis Report - Previous 10 Days Sales", "", "[Date Printed] [Time Printed]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near), new DevExpress.XtraPrinting.PageFooterArea(new string[] { "", "", "[Page # of Pages #]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near)); this.printableComponentLink2.PrintingSystem = this.printingSystem1; this.printableComponentLink2.VerticalContentSplitting = DevExpress.XtraPrinting.VerticalContentSplitting.Smart; // // PRINT1 // this.PRINT1.EditValue = "PRINT"; this.PRINT1.Location = new System.Drawing.Point(328, 8); this.PRINT1.Name = "PRINT1"; this.PRINT1.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control; this.PRINT1.Properties.Appearance.Options.UseBackColor = true; this.PRINT1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.PRINT1.Size = new System.Drawing.Size(40, 18); this.PRINT1.TabIndex = 140; this.PRINT1.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT1_OpenLink); // // PRINT2 // this.PRINT2.EditValue = "PRINT"; this.PRINT2.Location = new System.Drawing.Point(168, 336); this.PRINT2.Name = "PRINT2"; this.PRINT2.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control; this.PRINT2.Properties.Appearance.Options.UseBackColor = true; this.PRINT2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.PRINT2.Size = new System.Drawing.Size(40, 18); this.PRINT2.TabIndex = 141; this.PRINT2.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT2_OpenLink); // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField4.AreaIndex = 1; this.pivotGridField4.Name = "pivotGridField4"; // // AllIncomeAnalysis // this.AutoScroll = true; this.ClientSize = new System.Drawing.Size(767, 173); this.Controls.Add(this.PRINT2); this.Controls.Add(this.PRINT1); this.Controls.Add(this.label3); this.Controls.Add(this.PrevTenDaysIncomeAnalysis); this.Controls.Add(this.DateFrom); this.Controls.Add(this.DateTo); this.Controls.Add(this.label1); this.Controls.Add(this.DateRangeTo); this.Controls.Add(this.GridAllIncome); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; this.Name = "AllIncomeAnalysis"; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "All Income Analysis"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.AllIncomeAnalysis_Load); ((System.ComponentModel.ISupportInitialize)(this.GridAllIncome)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties.VistaTimeProperties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties.VistaTimeProperties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PrevTenDaysIncomeAnalysis)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT2.Properties)).EndInit(); this.ResumeLayout(false); }
/// <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(); this.pivotGridControl1 = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.barManager1 = new DevExpress.XtraBars.BarManager(this.components); this.bar1 = new DevExpress.XtraBars.Bar(); this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem(); this.barDockControlTop = new DevExpress.XtraBars.BarDockControl(); this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl(); this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl(); this.barDockControlRight = new DevExpress.XtraBars.BarDockControl(); ((System.ComponentModel.ISupportInitialize)(this.pivotGridControl1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit(); this.SuspendLayout(); // // pivotGridControl1 // this.pivotGridControl1.Cursor = System.Windows.Forms.Cursors.Default; this.pivotGridControl1.Dock = System.Windows.Forms.DockStyle.Fill; this.pivotGridControl1.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2}); this.pivotGridControl1.Location = new System.Drawing.Point(0, 24); this.pivotGridControl1.Name = "pivotGridControl1"; this.pivotGridControl1.Size = new System.Drawing.Size(550, 337); this.pivotGridControl1.TabIndex = 0; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField1.AreaIndex = 0; this.pivotGridField1.Name = "pivotGridField1"; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField2.AreaIndex = 1; this.pivotGridField2.Name = "pivotGridField2"; // // barManager1 // this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] { this.bar1}); this.barManager1.DockControls.Add(this.barDockControlTop); this.barManager1.DockControls.Add(this.barDockControlBottom); this.barManager1.DockControls.Add(this.barDockControlLeft); this.barManager1.DockControls.Add(this.barDockControlRight); this.barManager1.Form = this; this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] { this.barButtonItem1}); this.barManager1.MaxItemId = 1; // // bar1 // this.bar1.BarName = "Tools"; this.bar1.DockCol = 0; this.bar1.DockRow = 0; this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top; this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] { new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem1)}); this.bar1.Text = "Tools"; // // barButtonItem1 // this.barButtonItem1.Caption = "Print Preview..."; this.barButtonItem1.Id = 0; this.barButtonItem1.Name = "barButtonItem1"; this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick); // // FormPivot // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(550, 361); this.Controls.Add(this.pivotGridControl1); this.Controls.Add(this.barDockControlLeft); this.Controls.Add(this.barDockControlRight); this.Controls.Add(this.barDockControlBottom); this.Controls.Add(this.barDockControlTop); this.Name = "FormPivot"; this.Text = "FormPivot"; this.Load += new System.EventHandler(this.FormPivot_Load); ((System.ComponentModel.ISupportInitialize)(this.pivotGridControl1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.label7 = new System.Windows.Forms.Label(); this.luedtRPStaffSalesPerfmCategory = new DevExpress.XtraEditors.LookUpEdit(); this.label1 = new System.Windows.Forms.Label(); this.gridPromotionPackage = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.btnReset = new DevExpress.XtraEditors.SimpleButton(); this.sbtnReset = new DevExpress.XtraEditors.SimpleButton(); this.dateEdit1 = new System.Windows.Forms.MonthCalendar(); this.dateEdit2 = new System.Windows.Forms.MonthCalendar(); this.dateEdit3 = new System.Windows.Forms.MonthCalendar(); ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmCategory.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridPromotionPackage)).BeginInit(); this.SuspendLayout(); // // label7 // this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label7.Location = new System.Drawing.Point(427, 38); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(32, 21); this.label7.TabIndex = 75; this.label7.Text = "To"; // // luedtRPStaffSalesPerfmCategory // this.luedtRPStaffSalesPerfmCategory.EditValue = ""; this.luedtRPStaffSalesPerfmCategory.Location = new System.Drawing.Point(0, 35); this.luedtRPStaffSalesPerfmCategory.Name = "luedtRPStaffSalesPerfmCategory"; this.luedtRPStaffSalesPerfmCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.luedtRPStaffSalesPerfmCategory.Size = new System.Drawing.Size(152, 20); this.luedtRPStaffSalesPerfmCategory.TabIndex = 72; // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label1.Location = new System.Drawing.Point(-3, 9); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(84, 23); this.label1.TabIndex = 71; this.label1.Text = "Category"; // // gridPromotionPackage // this.gridPromotionPackage.Cursor = System.Windows.Forms.Cursors.Default; this.gridPromotionPackage.Dock = System.Windows.Forms.DockStyle.Bottom; this.gridPromotionPackage.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField3, this.pivotGridField4}); this.gridPromotionPackage.Location = new System.Drawing.Point(0, 148); this.gridPromotionPackage.Name = "gridPromotionPackage"; this.gridPromotionPackage.OptionsCustomization.AllowDrag = false; this.gridPromotionPackage.OptionsCustomization.AllowExpand = false; this.gridPromotionPackage.OptionsCustomization.AllowFilter = false; this.gridPromotionPackage.OptionsView.ShowColumnHeaders = false; this.gridPromotionPackage.OptionsView.ShowDataHeaders = false; this.gridPromotionPackage.OptionsView.ShowFilterHeaders = false; this.gridPromotionPackage.Size = new System.Drawing.Size(976, 378); this.gridPromotionPackage.TabIndex = 70; this.gridPromotionPackage.Click += new System.EventHandler(this.gridPromotionPackage_Click); // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField1.AreaIndex = 0; this.pivotGridField1.Caption = "Package Code"; this.pivotGridField1.CellFormat.FormatString = "d/MM/yyyy"; this.pivotGridField1.CellFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.pivotGridField1.FieldName = "strCode"; this.pivotGridField1.Name = "pivotGridField1"; this.pivotGridField1.SortBySummaryInfo.Field = this.pivotGridField4; this.pivotGridField1.SortOrder = DevExpress.XtraPivotGrid.PivotSortOrder.Descending; this.pivotGridField1.Width = 90; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField2.AreaIndex = 1; this.pivotGridField2.Caption = "Description"; this.pivotGridField2.FieldName = "strDescription"; this.pivotGridField2.MinWidth = 40; this.pivotGridField2.Name = "pivotGridField2"; this.pivotGridField2.SortBySummaryInfo.Field = this.pivotGridField4; this.pivotGridField2.Width = 90; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField3.AreaIndex = 0; this.pivotGridField3.Caption = "Branch"; this.pivotGridField3.FieldName = "strBranchCode"; this.pivotGridField3.Name = "pivotGridField3"; this.pivotGridField3.SortBySummaryInfo.Field = this.pivotGridField4; this.pivotGridField3.Width = 75; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField4.AreaIndex = 0; this.pivotGridField4.Caption = "Amount"; this.pivotGridField4.FieldName = "nQuantity"; this.pivotGridField4.Name = "pivotGridField4"; this.pivotGridField4.Options.AllowSort = DevExpress.Utils.DefaultBoolean.True; this.pivotGridField4.SortMode = DevExpress.XtraPivotGrid.PivotSortMode.Value; this.pivotGridField4.SortOrder = DevExpress.XtraPivotGrid.PivotSortOrder.Descending; this.pivotGridField4.Width = 90; // // btnReset // this.btnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnReset.Appearance.Options.UseFont = true; this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.btnReset.Location = new System.Drawing.Point(842, 9); this.btnReset.LookAndFeel.UseDefaultLookAndFeel = false; this.btnReset.Name = "btnReset"; this.btnReset.Size = new System.Drawing.Size(48, 16); this.btnReset.TabIndex = 199; this.btnReset.Text = "Reset"; this.btnReset.Visible = false; this.btnReset.Click += new System.EventHandler(this.btnReset_Click); // // sbtnReset // this.sbtnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.sbtnReset.Appearance.Options.UseFont = true; this.sbtnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnReset.Location = new System.Drawing.Point(406, 64); this.sbtnReset.LookAndFeel.UseDefaultLookAndFeel = false; this.sbtnReset.Name = "sbtnReset"; this.sbtnReset.Size = new System.Drawing.Size(70, 30); this.sbtnReset.TabIndex = 200; this.sbtnReset.Text = "Enquiry"; this.sbtnReset.Click += new System.EventHandler(this.sbtnReset_Click); // // dateEdit1 // this.dateEdit1.Location = new System.Drawing.Point(207, -2); this.dateEdit1.Name = "dateEdit1"; this.dateEdit1.TabIndex = 201; // // dateEdit2 // this.dateEdit2.Location = new System.Drawing.Point(502, -2); this.dateEdit2.Name = "dateEdit2"; this.dateEdit2.TabIndex = 202; // // dateEdit3 // this.dateEdit3.Location = new System.Drawing.Point(735, -2); this.dateEdit3.Name = "dateEdit3"; this.dateEdit3.TabIndex = 203; this.dateEdit3.DateSelected += new System.Windows.Forms.DateRangeEventHandler(this.dateEdit3_DateSelected); // // RPPromotionSalesPkg // this.ClientSize = new System.Drawing.Size(976, 526); this.Controls.Add(this.dateEdit3); this.Controls.Add(this.dateEdit2); this.Controls.Add(this.dateEdit1); this.Controls.Add(this.sbtnReset); this.Controls.Add(this.btnReset); this.Controls.Add(this.label7); this.Controls.Add(this.luedtRPStaffSalesPerfmCategory); this.Controls.Add(this.label1); this.Controls.Add(this.gridPromotionPackage); this.Name = "RPPromotionSalesPkg"; this.Text = "Promotion Package Sales Analysis"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RPPromotionSalesPkg_Load); ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmCategory.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridPromotionPackage)).EndInit(); this.ResumeLayout(false); }
/// <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.XtraPivotGrid.PivotGridGroup pivotGridGroup1 = new DevExpress.XtraPivotGrid.PivotGridGroup(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AllIncomeAnalysis)); this.pivotGridField10 = new DevExpress.XtraPivotGrid.PivotGridField(); this.GridAllIncome = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.DateRangeTo = new DevExpress.XtraEditors.DateEdit(); this.label1 = new System.Windows.Forms.Label(); this.DateTo = new System.Windows.Forms.Label(); this.DateFrom = new DevExpress.XtraEditors.DateEdit(); this.label3 = new System.Windows.Forms.Label(); this.PrevTenDaysIncomeAnalysis = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField11 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField12 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField9 = new DevExpress.XtraPivotGrid.PivotGridField(); this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components); this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components); this.printableComponentLink2 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components); this.PRINT1 = new DevExpress.XtraEditors.HyperLinkEdit(); this.PRINT2 = new DevExpress.XtraEditors.HyperLinkEdit(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); ((System.ComponentModel.ISupportInitialize)(this.GridAllIncome)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties.VistaTimeProperties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties.VistaTimeProperties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PrevTenDaysIncomeAnalysis)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT2.Properties)).BeginInit(); this.SuspendLayout(); // // pivotGridField10 // this.pivotGridField10.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField10.AreaIndex = 0; this.pivotGridField10.Caption = "Category"; this.pivotGridField10.FieldName = "strDescription"; this.pivotGridField10.Name = "pivotGridField10"; this.pivotGridField10.Width = 120; // // GridAllIncome // this.GridAllIncome.Cursor = System.Windows.Forms.Cursors.Default; this.GridAllIncome.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField3, this.pivotGridField4 }); this.GridAllIncome.Location = new System.Drawing.Point(0, 40); this.GridAllIncome.Name = "GridAllIncome"; this.GridAllIncome.OptionsView.ShowDataHeaders = false; this.GridAllIncome.OptionsView.ShowFilterHeaders = false; this.GridAllIncome.Size = new System.Drawing.Size(960, 288); this.GridAllIncome.TabIndex = 0; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField1.AreaIndex = 0; this.pivotGridField1.Caption = "Branch"; this.pivotGridField1.FieldName = "strBranchCode"; this.pivotGridField1.Name = "pivotGridField1"; this.pivotGridField1.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField1.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField1.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField1.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField2.AreaIndex = 0; this.pivotGridField2.Caption = "Category"; this.pivotGridField2.FieldName = "strDescription"; this.pivotGridField2.Name = "pivotGridField2"; this.pivotGridField2.Width = 120; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField3.AreaIndex = 0; this.pivotGridField3.Caption = "Nett Amount"; this.pivotGridField3.FieldName = "mNettAmount"; this.pivotGridField3.Name = "pivotGridField3"; // // DateRangeTo // this.DateRangeTo.EditValue = null; this.DateRangeTo.Location = new System.Drawing.Point(216, 8); this.DateRangeTo.Name = "DateRangeTo"; this.DateRangeTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.DateRangeTo.Properties.DisplayFormat.FormatString = "dd/MM/yyyy"; this.DateRangeTo.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.DateRangeTo.Properties.EditFormat.FormatString = "dd/MM/yyyy"; this.DateRangeTo.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.DateRangeTo.Properties.Mask.EditMask = "dd/MM/yyyy"; this.DateRangeTo.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret; this.DateRangeTo.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton() }); this.DateRangeTo.Size = new System.Drawing.Size(100, 20); this.DateRangeTo.TabIndex = 2; this.DateRangeTo.EditValueChanged += new System.EventHandler(this.DateRangeTo_EditValueChanged); // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.Location = new System.Drawing.Point(8, 8); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(40, 16); this.label1.TabIndex = 3; this.label1.Text = "From"; // // DateTo // this.DateTo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.DateTo.Location = new System.Drawing.Point(176, 8); this.DateTo.Name = "DateTo"; this.DateTo.Size = new System.Drawing.Size(24, 16); this.DateTo.TabIndex = 4; this.DateTo.Text = "To"; // // DateFrom // this.DateFrom.EditValue = null; this.DateFrom.Location = new System.Drawing.Point(48, 8); this.DateFrom.Name = "DateFrom"; this.DateFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.DateFrom.Properties.DisplayFormat.FormatString = "dd/MM/yyyy"; this.DateFrom.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.DateFrom.Properties.EditFormat.FormatString = "dd/MM/yyyy"; this.DateFrom.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.DateFrom.Properties.Mask.EditMask = "dd/MM/yyyy"; this.DateFrom.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret; this.DateFrom.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton() }); this.DateFrom.Size = new System.Drawing.Size(100, 20); this.DateFrom.TabIndex = 5; this.DateFrom.EditValueChanged += new System.EventHandler(this.DateFrom_EditValueChanged); // // label3 // this.label3.BackColor = System.Drawing.Color.Transparent; this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label3.Location = new System.Drawing.Point(8, 336); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(144, 24); this.label3.TabIndex = 41; this.label3.Text = "Previous 10 Days Sales"; this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // PrevTenDaysIncomeAnalysis // this.PrevTenDaysIncomeAnalysis.Cursor = System.Windows.Forms.Cursors.Default; this.PrevTenDaysIncomeAnalysis.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField11, this.pivotGridField10, this.pivotGridField12, this.pivotGridField9 }); pivotGridGroup1.Fields.Add(this.pivotGridField10); pivotGridGroup1.Hierarchy = null; this.PrevTenDaysIncomeAnalysis.Groups.AddRange(new DevExpress.XtraPivotGrid.PivotGridGroup[] { pivotGridGroup1 }); this.PrevTenDaysIncomeAnalysis.Location = new System.Drawing.Point(0, 360); this.PrevTenDaysIncomeAnalysis.Name = "PrevTenDaysIncomeAnalysis"; this.PrevTenDaysIncomeAnalysis.OptionsCustomization.AllowDrag = false; this.PrevTenDaysIncomeAnalysis.OptionsCustomization.AllowExpand = false; this.PrevTenDaysIncomeAnalysis.OptionsCustomization.AllowSort = false; this.PrevTenDaysIncomeAnalysis.OptionsDataField.Area = DevExpress.XtraPivotGrid.PivotDataArea.RowArea; this.PrevTenDaysIncomeAnalysis.OptionsDataField.AreaIndex = 1; this.PrevTenDaysIncomeAnalysis.OptionsView.ShowDataHeaders = false; this.PrevTenDaysIncomeAnalysis.OptionsView.ShowFilterHeaders = false; this.PrevTenDaysIncomeAnalysis.OptionsView.ShowRowGrandTotals = false; this.PrevTenDaysIncomeAnalysis.Size = new System.Drawing.Size(960, 200); this.PrevTenDaysIncomeAnalysis.TabIndex = 40; // // pivotGridField11 // this.pivotGridField11.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField11.AreaIndex = 0; this.pivotGridField11.Caption = "Nett Amount"; this.pivotGridField11.FieldName = "SalesAmount"; this.pivotGridField11.Name = "pivotGridField11"; // // pivotGridField12 // this.pivotGridField12.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField12.AreaIndex = 0; this.pivotGridField12.Caption = "Branch"; this.pivotGridField12.FieldName = "strBranchCode"; this.pivotGridField12.Name = "pivotGridField12"; this.pivotGridField12.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField12.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField12.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField12.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False; // // pivotGridField9 // this.pivotGridField9.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField9.AreaIndex = 1; this.pivotGridField9.Caption = "Date"; this.pivotGridField9.FieldName = "dtDate"; this.pivotGridField9.Name = "pivotGridField9"; this.pivotGridField9.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField9.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField9.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField9.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField9.ValueFormat.FormatString = "d"; this.pivotGridField9.ValueFormat.FormatType = DevExpress.Utils.FormatType.DateTime; // // printingSystem1 // this.printingSystem1.Links.AddRange(new object[] { this.printableComponentLink1, this.printableComponentLink2 }); // // printableComponentLink1 // this.printableComponentLink1.Component = this.GridAllIncome; this.printableComponentLink1.CustomPaperSize = new System.Drawing.Size(0, 0); this.printableComponentLink1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printableComponentLink1.ImageStream"))); this.printableComponentLink1.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(new DevExpress.XtraPrinting.PageHeaderArea(new string[] { "All Income Analysis Report", "", "[Date Printed] [Time Printed]" }, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near), new DevExpress.XtraPrinting.PageFooterArea(new string[] { "", "", "[Page # of Pages #]" }, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near)); this.printableComponentLink1.PrintingSystem = this.printingSystem1; this.printableComponentLink1.VerticalContentSplitting = DevExpress.XtraPrinting.VerticalContentSplitting.Smart; // // printableComponentLink2 // this.printableComponentLink2.Component = this.PrevTenDaysIncomeAnalysis; this.printableComponentLink2.CustomPaperSize = new System.Drawing.Size(0, 0); this.printableComponentLink2.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printableComponentLink2.ImageStream"))); this.printableComponentLink2.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(new DevExpress.XtraPrinting.PageHeaderArea(new string[] { "All Income Analysis Report - Previous 10 Days Sales", "", "[Date Printed] [Time Printed]" }, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near), new DevExpress.XtraPrinting.PageFooterArea(new string[] { "", "", "[Page # of Pages #]" }, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near)); this.printableComponentLink2.PrintingSystem = this.printingSystem1; this.printableComponentLink2.VerticalContentSplitting = DevExpress.XtraPrinting.VerticalContentSplitting.Smart; // // PRINT1 // this.PRINT1.EditValue = "PRINT"; this.PRINT1.Location = new System.Drawing.Point(328, 8); this.PRINT1.Name = "PRINT1"; this.PRINT1.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control; this.PRINT1.Properties.Appearance.Options.UseBackColor = true; this.PRINT1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.PRINT1.Size = new System.Drawing.Size(40, 18); this.PRINT1.TabIndex = 140; this.PRINT1.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT1_OpenLink); // // PRINT2 // this.PRINT2.EditValue = "PRINT"; this.PRINT2.Location = new System.Drawing.Point(168, 336); this.PRINT2.Name = "PRINT2"; this.PRINT2.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control; this.PRINT2.Properties.Appearance.Options.UseBackColor = true; this.PRINT2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.PRINT2.Size = new System.Drawing.Size(40, 18); this.PRINT2.TabIndex = 141; this.PRINT2.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT2_OpenLink); // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField4.AreaIndex = 1; this.pivotGridField4.Name = "pivotGridField4"; // // AllIncomeAnalysis // this.AutoScroll = true; this.ClientSize = new System.Drawing.Size(767, 173); this.Controls.Add(this.PRINT2); this.Controls.Add(this.PRINT1); this.Controls.Add(this.label3); this.Controls.Add(this.PrevTenDaysIncomeAnalysis); this.Controls.Add(this.DateFrom); this.Controls.Add(this.DateTo); this.Controls.Add(this.label1); this.Controls.Add(this.DateRangeTo); this.Controls.Add(this.GridAllIncome); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; this.Name = "AllIncomeAnalysis"; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "All Income Analysis"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.AllIncomeAnalysis_Load); ((System.ComponentModel.ISupportInitialize)(this.GridAllIncome)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties.VistaTimeProperties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties.VistaTimeProperties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PrevTenDaysIncomeAnalysis)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT2.Properties)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.label7 = new System.Windows.Forms.Label(); this.label6 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.luedtRPStaffSalesPerfmCategory = new DevExpress.XtraEditors.LookUpEdit(); this.label1 = new System.Windows.Forms.Label(); this.gridStaffPerformance = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.dateEdit1 = new DevExpress.XtraEditors.DateEdit(); this.dateEdit2 = new DevExpress.XtraEditors.DateEdit(); this.btnReset = new DevExpress.XtraEditors.SimpleButton(); this.btnSearch = new DevExpress.XtraEditors.SimpleButton(); ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmCategory.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridStaffPerformance)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).BeginInit(); this.SuspendLayout(); // // label7 // this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label7.Location = new System.Drawing.Point(136, 0); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(24, 23); this.label7.TabIndex = 67; this.label7.Text = "To"; // // label6 // this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label6.Location = new System.Drawing.Point(168, 0); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(40, 23); this.label6.TabIndex = 64; this.label6.Text = "Date"; // // label3 // this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label3.Location = new System.Drawing.Point(0, 0); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(40, 23); this.label3.TabIndex = 61; this.label3.Text = "Date"; // // luedtRPStaffSalesPerfmCategory // this.luedtRPStaffSalesPerfmCategory.EditValue = ""; this.luedtRPStaffSalesPerfmCategory.Location = new System.Drawing.Point(360, 0); this.luedtRPStaffSalesPerfmCategory.Name = "luedtRPStaffSalesPerfmCategory"; // // luedtRPStaffSalesPerfmCategory.Properties // this.luedtRPStaffSalesPerfmCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.luedtRPStaffSalesPerfmCategory.Size = new System.Drawing.Size(128, 20); this.luedtRPStaffSalesPerfmCategory.TabIndex = 60; // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label1.Location = new System.Drawing.Point(296, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(64, 23); this.label1.TabIndex = 57; this.label1.Text = "Category"; // // gridStaffPerformance // this.gridStaffPerformance.Cursor = System.Windows.Forms.Cursors.Default; this.gridStaffPerformance.Dock = System.Windows.Forms.DockStyle.Bottom; this.gridStaffPerformance.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField3, this.pivotGridField4}); this.gridStaffPerformance.Location = new System.Drawing.Point(0, 30); this.gridStaffPerformance.Name = "gridStaffPerformance"; this.gridStaffPerformance.OptionsCustomization.AllowDrag = false; this.gridStaffPerformance.OptionsCustomization.AllowExpand = false; this.gridStaffPerformance.OptionsCustomization.AllowFilter = false; this.gridStaffPerformance.OptionsCustomization.AllowSort = false; this.gridStaffPerformance.OptionsView.ShowDataHeaders = false; this.gridStaffPerformance.OptionsView.ShowFilterHeaders = false; this.gridStaffPerformance.Size = new System.Drawing.Size(976, 432); this.gridStaffPerformance.TabIndex = 56; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField1.AreaIndex = 0; this.pivotGridField1.Caption = "Date"; this.pivotGridField1.CellFormat.FormatString = "d/MM/yyyy"; this.pivotGridField1.CellFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.pivotGridField1.FieldName = "dtDate"; this.pivotGridField1.GroupInterval = DevExpress.XtraPivotGrid.PivotGroupInterval.Date; this.pivotGridField1.Name = "pivotGridField1"; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField3.AreaIndex = 0; this.pivotGridField3.Caption = "Branch"; this.pivotGridField3.FieldName = "strBranchCode"; this.pivotGridField3.Name = "pivotGridField3"; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField4.AreaIndex = 0; this.pivotGridField4.Caption = "Amount"; this.pivotGridField4.FieldName = "nQuantity"; this.pivotGridField4.Name = "pivotGridField4"; // // dateEdit1 // this.dateEdit1.EditValue = null; this.dateEdit1.Location = new System.Drawing.Point(40, 0); this.dateEdit1.Name = "dateEdit1"; // // dateEdit1.Properties // this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.dateEdit1.Properties.DisplayFormat.FormatString = "dd/MM/yyyy"; this.dateEdit1.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.dateEdit1.Properties.EditFormat.FormatString = "dd/MM/yyyy"; this.dateEdit1.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.dateEdit1.Properties.Mask.EditMask = "dd/MM/yyyy"; this.dateEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret; this.dateEdit1.Size = new System.Drawing.Size(88, 20); this.dateEdit1.TabIndex = 68; // // dateEdit2 // this.dateEdit2.EditValue = null; this.dateEdit2.Location = new System.Drawing.Point(208, 0); this.dateEdit2.Name = "dateEdit2"; // // dateEdit2.Properties // this.dateEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.dateEdit2.Properties.DisplayFormat.FormatString = "dd/MM/yyyy"; this.dateEdit2.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.dateEdit2.Properties.EditFormat.FormatString = "dd/MM/yyyy"; this.dateEdit2.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.dateEdit2.Properties.Mask.EditMask = "dd/MM/yyyy"; this.dateEdit2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret; this.dateEdit2.Size = new System.Drawing.Size(80, 20); this.dateEdit2.TabIndex = 69; // // btnReset // this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.btnReset.Location = new System.Drawing.Point(560, 0); this.btnReset.Name = "btnReset"; this.btnReset.Size = new System.Drawing.Size(56, 20); this.btnReset.TabIndex = 71; this.btnReset.Text = "Reset"; this.btnReset.Click += new System.EventHandler(this.btnReset_Click); // // btnSearch // this.btnSearch.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.btnSearch.Location = new System.Drawing.Point(496, 0); this.btnSearch.Name = "btnSearch"; this.btnSearch.Size = new System.Drawing.Size(56, 20); this.btnSearch.TabIndex = 70; this.btnSearch.Text = "Search"; this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click); // // RPNewMember // this.AutoScale = false; this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(976, 462); this.Controls.Add(this.btnReset); this.Controls.Add(this.btnSearch); this.Controls.Add(this.dateEdit2); this.Controls.Add(this.dateEdit1); this.Controls.Add(this.label7); this.Controls.Add(this.label6); this.Controls.Add(this.label3); this.Controls.Add(this.luedtRPStaffSalesPerfmCategory); this.Controls.Add(this.label1); this.Controls.Add(this.gridStaffPerformance); this.Name = "RPNewMember"; this.Text = "New Member SignUp"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RPNewMember_Load); ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmCategory.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridStaffPerformance)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).EndInit(); this.ResumeLayout(false); }
/// <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(); this.MtMSalesGrid = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.label63 = new System.Windows.Forms.Label(); this.cmbCategory = new DevExpress.XtraEditors.ImageComboBoxEdit(); this.PRINT1 = new DevExpress.XtraEditors.HyperLinkEdit(); this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components); this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components); ((System.ComponentModel.ISupportInitialize)(this.MtMSalesGrid)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit(); this.SuspendLayout(); // // MtMSalesGrid // this.MtMSalesGrid.Cursor = System.Windows.Forms.Cursors.Default; this.MtMSalesGrid.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField3, this.pivotGridField4}); this.MtMSalesGrid.Location = new System.Drawing.Point(8, 40); this.MtMSalesGrid.Name = "MtMSalesGrid"; this.MtMSalesGrid.OptionsCustomization.AllowDrag = false; this.MtMSalesGrid.OptionsCustomization.AllowExpand = false; this.MtMSalesGrid.OptionsCustomization.AllowSort = false; this.MtMSalesGrid.OptionsView.ShowDataHeaders = false; this.MtMSalesGrid.OptionsView.ShowFilterHeaders = false; this.MtMSalesGrid.Size = new System.Drawing.Size(960, 424); this.MtMSalesGrid.TabIndex = 0; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField1.AreaIndex = 0; this.pivotGridField1.Caption = "Year"; this.pivotGridField1.FieldName = "Year"; this.pivotGridField1.Name = "pivotGridField1"; this.pivotGridField1.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField1.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField2.AreaIndex = 1; this.pivotGridField2.Caption = "Month"; this.pivotGridField2.FieldName = "Month"; this.pivotGridField2.Name = "pivotGridField2"; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField3.AreaIndex = 0; this.pivotGridField3.EmptyValueText = "0"; this.pivotGridField3.FieldName = "TotalAmount"; this.pivotGridField3.Name = "pivotGridField3"; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField4.AreaIndex = 0; this.pivotGridField4.Caption = "Category"; this.pivotGridField4.FieldName = "strDescription"; this.pivotGridField4.Name = "pivotGridField4"; // // label63 // this.label63.BackColor = System.Drawing.Color.Transparent; this.label63.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.label63.Location = new System.Drawing.Point(16, 8); this.label63.Name = "label63"; this.label63.Size = new System.Drawing.Size(100, 16); this.label63.TabIndex = 38; this.label63.Text = "Category"; // // cmbCategory // this.cmbCategory.EditValue = "cbGIROStatus"; this.cmbCategory.Location = new System.Drawing.Point(96, 8); this.cmbCategory.Name = "cmbCategory"; // // cmbCategory.Properties // this.cmbCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cmbCategory.Properties.Items.AddRange(new object[] { new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Active", 1, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Inactive", 0, -1)}); this.cmbCategory.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin; this.cmbCategory.Properties.LookAndFeel.UseDefaultLookAndFeel = false; this.cmbCategory.Size = new System.Drawing.Size(176, 20); this.cmbCategory.TabIndex = 39; this.cmbCategory.SelectedValueChanged += new System.EventHandler(this.cmbCategory_SelectedValueChanged); // // PRINT1 // this.PRINT1.EditValue = "PRINT"; this.PRINT1.Location = new System.Drawing.Point(288, 8); this.PRINT1.Name = "PRINT1"; // // PRINT1.Properties // this.PRINT1.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control; this.PRINT1.Properties.Appearance.Options.UseBackColor = true; this.PRINT1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.PRINT1.Size = new System.Drawing.Size(40, 18); this.PRINT1.TabIndex = 140; this.PRINT1.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT1_OpenLink); // // printingSystem1 // this.printingSystem1.Links.AddRange(new object[] { this.printableComponentLink1}); // // printableComponentLink1 // this.printableComponentLink1.Component = this.MtMSalesGrid; this.printableComponentLink1.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(new DevExpress.XtraPrinting.PageHeaderArea(new string[] { "Month To Month Sales Report", "", "[Date Printed] [Time Printed]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near), new DevExpress.XtraPrinting.PageFooterArea(new string[] { "", "", "[Page # of Pages #]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near)); this.printableComponentLink1.PrintingSystem = this.printingSystem1; this.printableComponentLink1.CreateDetailHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink1_CreateDetailHeaderArea); // // RPMtMSales // this.AutoScale = false; this.AutoScaleBaseSize = new System.Drawing.Size(5, 14); this.ClientSize = new System.Drawing.Size(874, 470); this.Controls.Add(this.PRINT1); this.Controls.Add(this.cmbCategory); this.Controls.Add(this.label63); this.Controls.Add(this.MtMSalesGrid); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; this.Name = "RPMtMSales"; this.Text = "Month to Month Sales"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.XtraForm1_Load); ((System.ComponentModel.ISupportInitialize)(this.MtMSalesGrid)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit(); this.ResumeLayout(false); }
public bool ExportToExcel(DevExpress.XtraPivotGrid.PivotGridControl gridControl, string userId) { DevExpress.LookAndFeel.UserLookAndFeel lookAndFeel = new DevExpress.LookAndFeel.UserLookAndFeel(gridControl); if (XtraMessageBox.Show(lookAndFeel, "엑셀파일로 저장하시겠습니까?", "파일저장", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) == System.Windows.Forms.DialogResult.Cancel) { return(false); } try { SaveFileDialog oSaveFileDialog = new SaveFileDialog(); oSaveFileDialog.Title = "자신의 엑셀 버전에 맞는 버전을 선택해 주세요."; oSaveFileDialog.Filter = "엑셀 파일(6만건이상) [2007~2013](*.xlsx)|*.xlsx|엑셀 파일(6만건한계) [~2003](*.xls)|*.xls"; oSaveFileDialog.FilterIndex = 1; oSaveFileDialog.RestoreDirectory = true; if (oSaveFileDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK) { if (oSaveFileDialog.FileName != null) { System.IO.FileStream fs = new System.IO.FileStream(oSaveFileDialog.FileName, System.IO.FileMode.Create); if (oSaveFileDialog.FileName.EndsWith(".xls")) { gridControl.ExportToXls(fs); } else { gridControl.ExportToXlsx(fs); } fs.Close(); if (userId == string.Empty) { XtraMessageBox.Show(lookAndFeel, "저장되었습니다.", "저장완료", MessageBoxButtons.OK, MessageBoxIcon.Information); return(true); } CESFasoo fasoo = new CESFasoo(); if (fasoo.FSDEncryption(oSaveFileDialog.FileName, oSaveFileDialog.FileName, "DevExpress 엑셀변환 자료", userId)) { XtraMessageBox.Show(lookAndFeel, "저장되었습니다.", "저장완료", MessageBoxButtons.OK, MessageBoxIcon.Information); Process.Start(oSaveFileDialog.FileName); return(true); } else { throw new CESException("엑셀파일 변환중 암호화에 실패하였습니다."); } } } } catch (Exception ex) { throw new CESException(this, "ConvertExcel", new object[] { }, ex.Message, ex); } return(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.pvSpaFitness = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField5 = new DevExpress.XtraPivotGrid.PivotGridField(); this.cmbCategory = new DevExpress.XtraEditors.ImageComboBoxEdit(); this.label1 = new System.Windows.Forms.Label(); this.DateFrom = new DevExpress.XtraEditors.DateEdit(); this.DateTo = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.DateRangeTo = new DevExpress.XtraEditors.DateEdit(); this.btnReset = new DevExpress.XtraEditors.SimpleButton(); this.btnSearch = new DevExpress.XtraEditors.SimpleButton(); this.label3 = new System.Windows.Forms.Label(); this.txtItemDesc = new DevExpress.XtraEditors.TextEdit(); this.label6 = new System.Windows.Forms.Label(); this.txtItemCode = new DevExpress.XtraEditors.TextEdit(); ((System.ComponentModel.ISupportInitialize)(this.pvSpaFitness)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtItemDesc.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtItemCode.Properties)).BeginInit(); this.SuspendLayout(); // // pvSpaFitness // this.pvSpaFitness.Cursor = System.Windows.Forms.Cursors.Default; this.pvSpaFitness.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField3, this.pivotGridField4, this.pivotGridField5}); this.pvSpaFitness.Location = new System.Drawing.Point(8, 48); this.pvSpaFitness.Name = "pvSpaFitness"; this.pvSpaFitness.OptionsCustomization.AllowDrag = false; this.pvSpaFitness.OptionsView.ShowDataHeaders = false; this.pvSpaFitness.OptionsView.ShowFilterHeaders = false; this.pvSpaFitness.Size = new System.Drawing.Size(760, 352); this.pvSpaFitness.TabIndex = 0; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField1.AreaIndex = 1; this.pivotGridField1.Caption = "Item Code"; this.pivotGridField1.FieldName = "strCode"; this.pivotGridField1.Name = "pivotGridField1"; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField2.AreaIndex = 2; this.pivotGridField2.Caption = "Item Desc"; this.pivotGridField2.FieldName = "strDescription"; this.pivotGridField2.Name = "pivotGridField2"; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField3.AreaIndex = 0; this.pivotGridField3.Caption = "Quantity"; this.pivotGridField3.FieldName = "nQuantity"; this.pivotGridField3.Name = "pivotGridField3"; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField4.AreaIndex = 0; this.pivotGridField4.Caption = "Branch"; this.pivotGridField4.FieldName = "strBranchCode"; this.pivotGridField4.Name = "pivotGridField4"; this.pivotGridField4.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField4.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField4.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False; // // pivotGridField5 // this.pivotGridField5.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField5.AreaIndex = 0; this.pivotGridField5.Caption = "Category"; this.pivotGridField5.FieldName = "Category"; this.pivotGridField5.Name = "pivotGridField5"; // // cmbCategory // this.cmbCategory.Location = new System.Drawing.Point(72, 24); this.cmbCategory.Name = "cmbCategory"; // // cmbCategory.Properties // this.cmbCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cmbCategory.Size = new System.Drawing.Size(112, 20); this.cmbCategory.TabIndex = 1; // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label1.Location = new System.Drawing.Point(8, 24); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(64, 16); this.label1.TabIndex = 2; this.label1.Text = "Category"; // // DateFrom // this.DateFrom.EditValue = null; this.DateFrom.Location = new System.Drawing.Point(48, 0); this.DateFrom.Name = "DateFrom"; // // DateFrom.Properties // this.DateFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.DateFrom.Size = new System.Drawing.Size(72, 20); this.DateFrom.TabIndex = 13; // // DateTo // this.DateTo.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.DateTo.Location = new System.Drawing.Point(120, 0); this.DateTo.Name = "DateTo"; this.DateTo.Size = new System.Drawing.Size(24, 16); this.DateTo.TabIndex = 12; this.DateTo.Text = "To"; // // label2 // this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label2.Location = new System.Drawing.Point(8, 0); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(40, 16); this.label2.TabIndex = 11; this.label2.Text = "From"; // // DateRangeTo // this.DateRangeTo.EditValue = null; this.DateRangeTo.Location = new System.Drawing.Point(152, 0); this.DateRangeTo.Name = "DateRangeTo"; // // DateRangeTo.Properties // this.DateRangeTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.DateRangeTo.Properties.DisplayFormat.FormatString = "dd/MM/yyyy"; this.DateRangeTo.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.DateRangeTo.Properties.EditFormat.FormatString = "dd/MM/yyyy"; this.DateRangeTo.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.DateRangeTo.Properties.Mask.EditMask = "dd/MM/yyyy"; this.DateRangeTo.Size = new System.Drawing.Size(64, 20); this.DateRangeTo.TabIndex = 10; // // btnReset // this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.btnReset.Location = new System.Drawing.Point(520, 24); this.btnReset.Name = "btnReset"; this.btnReset.Size = new System.Drawing.Size(56, 20); this.btnReset.TabIndex = 66; this.btnReset.Text = "Reset"; this.btnReset.Click += new System.EventHandler(this.btnReset_Click); // // btnSearch // this.btnSearch.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.btnSearch.Location = new System.Drawing.Point(456, 24); this.btnSearch.Name = "btnSearch"; this.btnSearch.Size = new System.Drawing.Size(56, 20); this.btnSearch.TabIndex = 65; this.btnSearch.Text = "Search"; this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click); // // label3 // this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label3.Location = new System.Drawing.Point(312, 24); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(64, 16); this.label3.TabIndex = 60; this.label3.Text = "Item Desc"; // // txtItemDesc // this.txtItemDesc.EditValue = ""; this.txtItemDesc.Location = new System.Drawing.Point(376, 24); this.txtItemDesc.Name = "txtItemDesc"; this.txtItemDesc.Size = new System.Drawing.Size(72, 20); this.txtItemDesc.TabIndex = 59; // // label6 // this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label6.Location = new System.Drawing.Point(184, 24); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(64, 16); this.label6.TabIndex = 58; this.label6.Text = "Item Code"; // // txtItemCode // this.txtItemCode.EditValue = ""; this.txtItemCode.Location = new System.Drawing.Point(248, 24); this.txtItemCode.Name = "txtItemCode"; this.txtItemCode.Size = new System.Drawing.Size(64, 20); this.txtItemCode.TabIndex = 57; // // RPSpaFitness // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(864, 501); this.Controls.Add(this.btnReset); this.Controls.Add(this.btnSearch); this.Controls.Add(this.label3); this.Controls.Add(this.txtItemDesc); this.Controls.Add(this.label6); this.Controls.Add(this.txtItemCode); this.Controls.Add(this.DateFrom); this.Controls.Add(this.DateTo); this.Controls.Add(this.label2); this.Controls.Add(this.DateRangeTo); this.Controls.Add(this.label1); this.Controls.Add(this.cmbCategory); this.Controls.Add(this.pvSpaFitness); this.Name = "RPSpaFitness"; this.Text = "Spa & Fitness"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RPSpaFitness_Load); ((System.ComponentModel.ISupportInitialize)(this.pvSpaFitness)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtItemDesc.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtItemCode.Properties)).EndInit(); this.ResumeLayout(false); }
/// <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.XtraPivotGrid.PivotGridGroup pivotGridGroup1 = new DevExpress.XtraPivotGrid.PivotGridGroup(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RPIncomeAnalysis)); DevExpress.XtraPivotGrid.PivotGridGroup pivotGridGroup2 = new DevExpress.XtraPivotGrid.PivotGridGroup(); DevExpress.XtraPivotGrid.PivotGridGroup pivotGridGroup3 = new DevExpress.XtraPivotGrid.PivotGridGroup(); DevExpress.XtraPivotGrid.PivotGridGroup pivotGridGroup4 = new DevExpress.XtraPivotGrid.PivotGridGroup(); this.CurrentGridIncomeAnalysis = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pv2NettAmount = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField7 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField8 = new DevExpress.XtraPivotGrid.PivotGridField(); this.v2TargetAmount = new DevExpress.XtraPivotGrid.PivotGridField(); this.TargetPercent = new DevExpress.XtraPivotGrid.PivotGridField(); this.DayMonthEnd = new DevExpress.XtraPivotGrid.PivotGridField(); this.DayAvg = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField14 = new DevExpress.XtraPivotGrid.PivotGridField(); this.colTest = new DevExpress.XtraPivotGrid.PivotGridField(); this.label63 = new System.Windows.Forms.Label(); this.cmbCategory = new DevExpress.XtraEditors.ImageComboBoxEdit(); this.label2 = new System.Windows.Forms.Label(); this.imageList1 = new System.Windows.Forms.ImageList(this.components); this.PRINT1 = new DevExpress.XtraEditors.HyperLinkEdit(); this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components); this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components); this.printableComponentLink2 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components); this.printableComponentLink3 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components); this.printableComponentLink4 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components); this.hyperLinkEdit1 = new DevExpress.XtraEditors.HyperLinkEdit(); this.PrevGridIncomeAnalysis = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.vTargetAmt = new DevExpress.XtraPivotGrid.PivotGridField(); this.TargetAmt = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField13 = new DevExpress.XtraPivotGrid.PivotGridField(); this.TestTargetAmt = new DevExpress.XtraPivotGrid.PivotGridField(); this.label3 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.hyperLinkEdit2 = new DevExpress.XtraEditors.HyperLinkEdit(); this.btn_Add = new DevExpress.XtraEditors.SimpleButton(); this.btn_Del = new DevExpress.XtraEditors.SimpleButton(); this.pvGrandTotal10Days = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField16 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField17 = new DevExpress.XtraPivotGrid.PivotGridField(); this.ThirdGridIncomeAnalysis = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField11 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField12 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField9 = new DevExpress.XtraPivotGrid.PivotGridField(); this.cmbMonth = new System.Windows.Forms.ComboBox(); this.label4 = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.CurrentGridIncomeAnalysis)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.hyperLinkEdit1.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PrevGridIncomeAnalysis)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.hyperLinkEdit2.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pvGrandTotal10Days)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ThirdGridIncomeAnalysis)).BeginInit(); this.SuspendLayout(); // // CurrentGridIncomeAnalysis // this.CurrentGridIncomeAnalysis.Cursor = System.Windows.Forms.Cursors.Default; this.CurrentGridIncomeAnalysis.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pv2NettAmount, this.pivotGridField7, this.pivotGridField8, this.v2TargetAmount, this.TargetPercent, this.DayMonthEnd, this.DayAvg, this.pivotGridField14, this.colTest}); this.CurrentGridIncomeAnalysis.Groups.AddRange(new DevExpress.XtraPivotGrid.PivotGridGroup[] { pivotGridGroup1}); this.CurrentGridIncomeAnalysis.Location = new System.Drawing.Point(0, 271); this.CurrentGridIncomeAnalysis.Name = "CurrentGridIncomeAnalysis"; this.CurrentGridIncomeAnalysis.OptionsCustomization.AllowDrag = false; this.CurrentGridIncomeAnalysis.OptionsCustomization.AllowExpand = false; this.CurrentGridIncomeAnalysis.OptionsDataField.Area = DevExpress.XtraPivotGrid.PivotDataArea.RowArea; this.CurrentGridIncomeAnalysis.OptionsDataField.AreaIndex = 1; this.CurrentGridIncomeAnalysis.OptionsPrint.UsePrintAppearance = true; this.CurrentGridIncomeAnalysis.OptionsView.ShowDataHeaders = false; this.CurrentGridIncomeAnalysis.OptionsView.ShowFilterHeaders = false; this.CurrentGridIncomeAnalysis.OptionsView.ShowRowGrandTotals = false; this.CurrentGridIncomeAnalysis.Size = new System.Drawing.Size(960, 156); this.CurrentGridIncomeAnalysis.TabIndex = 1; this.CurrentGridIncomeAnalysis.Click += new System.EventHandler(this.CurrentGridIncomeAnalysis_Click); this.CurrentGridIncomeAnalysis.CustomSummary += new DevExpress.XtraPivotGrid.PivotGridCustomSummaryEventHandler(this.CurrentGridIncomeAnalysis_CustomSummary); // // pv2NettAmount // this.pv2NettAmount.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pv2NettAmount.AreaIndex = 0; this.pv2NettAmount.Caption = "Branch Sales"; this.pv2NettAmount.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.pv2NettAmount.FieldName = "mNettAmount"; this.pv2NettAmount.Name = "pv2NettAmount"; this.pv2NettAmount.TotalCellFormat.FormatString = "f2"; this.pv2NettAmount.TotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.pv2NettAmount.TotalValueFormat.FormatString = "f2"; this.pv2NettAmount.TotalValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.pv2NettAmount.ValueFormat.FormatString = "f2"; this.pv2NettAmount.ValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.pv2NettAmount.Width = 80; // // pivotGridField7 // this.pivotGridField7.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField7.AreaIndex = 0; this.pivotGridField7.Caption = "Branch"; this.pivotGridField7.FieldName = "strBranchCode"; this.pivotGridField7.Name = "pivotGridField7"; this.pivotGridField7.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField7.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField7.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField7.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField7.Width = 80; // // pivotGridField8 // this.pivotGridField8.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField8.AreaIndex = 1; this.pivotGridField8.Caption = "Branch Sales"; this.pivotGridField8.FieldName = "mTotalAmount"; this.pivotGridField8.Name = "pivotGridField8"; this.pivotGridField8.Visible = false; this.pivotGridField8.Width = 80; // // v2TargetAmount // this.v2TargetAmount.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.v2TargetAmount.AreaIndex = 2; this.v2TargetAmount.Caption = "Amount - Target"; this.v2TargetAmount.Name = "v2TargetAmount"; this.v2TargetAmount.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Custom; this.v2TargetAmount.UnboundFieldName = "pv2TargetAmount"; this.v2TargetAmount.UnboundType = DevExpress.Data.UnboundColumnType.Decimal; // // TargetPercent // this.TargetPercent.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.TargetPercent.AreaIndex = 2; this.TargetPercent.Caption = "% of Target"; this.TargetPercent.CellFormat.FormatString = "p"; this.TargetPercent.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.TargetPercent.Name = "TargetPercent"; this.TargetPercent.SummaryDisplayType = DevExpress.Data.PivotGrid.PivotSummaryDisplayType.PercentVariation; this.TargetPercent.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Custom; this.TargetPercent.TotalCellFormat.FormatString = "p"; this.TargetPercent.TotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.TargetPercent.TotalValueFormat.FormatString = "p"; this.TargetPercent.TotalValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.TargetPercent.ValueFormat.FormatString = "p"; this.TargetPercent.ValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.TargetPercent.Visible = false; // // DayMonthEnd // this.DayMonthEnd.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.DayMonthEnd.AreaIndex = 3; this.DayMonthEnd.Caption = "Days To Month End"; this.DayMonthEnd.Name = "DayMonthEnd"; this.DayMonthEnd.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Min; // // DayAvg // this.DayAvg.Appearance.ValueTotal.ForeColor = System.Drawing.Color.Black; this.DayAvg.Appearance.ValueTotal.Options.UseForeColor = true; this.DayAvg.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.DayAvg.AreaIndex = 4; this.DayAvg.Caption = "Daily Average"; this.DayAvg.Name = "DayAvg"; this.DayAvg.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Custom; this.DayAvg.TotalCellFormat.FormatString = "f2"; this.DayAvg.TotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.DayAvg.TotalValueFormat.FormatString = "f2"; this.DayAvg.TotalValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.DayAvg.UnboundFieldName = "DailyAvg"; this.DayAvg.UnboundType = DevExpress.Data.UnboundColumnType.Decimal; this.DayAvg.ValueFormat.FormatString = "f2"; this.DayAvg.ValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric; // // pivotGridField14 // this.pivotGridField14.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField14.AreaIndex = 0; this.pivotGridField14.Caption = "Month"; this.pivotGridField14.FieldName = "dtMonth"; this.pivotGridField14.Name = "pivotGridField14"; this.pivotGridField14.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField14.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField14.Width = 80; // // colTest // this.colTest.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.colTest.AreaIndex = 1; this.colTest.Caption = "% of Target"; this.colTest.CellFormat.FormatString = "P"; this.colTest.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.colTest.Name = "colTest"; this.colTest.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Custom; // // label63 // this.label63.BackColor = System.Drawing.Color.Transparent; this.label63.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label63.Location = new System.Drawing.Point(547, 10); this.label63.Name = "label63"; this.label63.Size = new System.Drawing.Size(56, 16); this.label63.TabIndex = 36; this.label63.Text = "Category"; // // cmbCategory // this.cmbCategory.EditValue = "cbGIROStatus"; this.cmbCategory.Location = new System.Drawing.Point(608, 8); this.cmbCategory.Name = "cmbCategory"; this.cmbCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cmbCategory.Properties.LookAndFeel.UseDefaultLookAndFeel = false; this.cmbCategory.Size = new System.Drawing.Size(200, 20); this.cmbCategory.TabIndex = 35; this.cmbCategory.SelectedValueChanged += new System.EventHandler(this.cmbCategory_SelectedValueChanged); // // label2 // this.label2.BackColor = System.Drawing.Color.Transparent; this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label2.Location = new System.Drawing.Point(0, 253); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(112, 16); this.label2.TabIndex = 38; this.label2.Text = "Current Month Sales"; this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // imageList1 // this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream"))); this.imageList1.TransparentColor = System.Drawing.Color.Magenta; this.imageList1.Images.SetKeyName(0, ""); this.imageList1.Images.SetKeyName(1, ""); this.imageList1.Images.SetKeyName(2, ""); this.imageList1.Images.SetKeyName(3, ""); this.imageList1.Images.SetKeyName(4, ""); this.imageList1.Images.SetKeyName(5, ""); this.imageList1.Images.SetKeyName(6, ""); // // PRINT1 // this.PRINT1.EditValue = "PRINT"; this.PRINT1.Location = new System.Drawing.Point(168, 432); this.PRINT1.Name = "PRINT1"; this.PRINT1.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control; this.PRINT1.Properties.Appearance.Options.UseBackColor = true; this.PRINT1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.PRINT1.Size = new System.Drawing.Size(40, 18); this.PRINT1.TabIndex = 139; this.PRINT1.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT1_OpenLink); // // printingSystem1 // this.printingSystem1.Links.AddRange(new object[] { this.printableComponentLink1, this.printableComponentLink2, this.printableComponentLink3, this.printableComponentLink4}); // // printableComponentLink1 // this.printableComponentLink1.Component = this.CurrentGridIncomeAnalysis; this.printableComponentLink1.CustomPaperSize = new System.Drawing.Size(0, 0); this.printableComponentLink1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printableComponentLink1.ImageStream"))); this.printableComponentLink1.Landscape = true; this.printableComponentLink1.Margins = new System.Drawing.Printing.Margins(50, 50, 50, 50); this.printableComponentLink1.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(new DevExpress.XtraPrinting.PageHeaderArea(new string[] { "\r\nCurrent Month Sales Report", "Income Analysis Report", "[Date Printed][Time Printed]"}, new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))), DevExpress.XtraPrinting.BrickAlignment.Near), new DevExpress.XtraPrinting.PageFooterArea(new string[] { "", "", "[Page # of Pages #]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near)); this.printableComponentLink1.PaperKind = System.Drawing.Printing.PaperKind.A4; this.printableComponentLink1.PrintingSystem = this.printingSystem1; this.printableComponentLink1.VerticalContentSplitting = DevExpress.XtraPrinting.VerticalContentSplitting.Smart; // // printableComponentLink2 // this.printableComponentLink2.CustomPaperSize = new System.Drawing.Size(0, 0); this.printableComponentLink2.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printableComponentLink2.ImageStream"))); this.printableComponentLink2.Landscape = true; this.printableComponentLink2.Margins = new System.Drawing.Printing.Margins(50, 50, 50, 50); this.printableComponentLink2.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(new DevExpress.XtraPrinting.PageHeaderArea(new string[] { "Previus Two Month Sales Report", "", "[Date Printed][Time Printed]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near), new DevExpress.XtraPrinting.PageFooterArea(new string[] { "", "", "[Page # of Pages #]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near)); this.printableComponentLink2.PaperKind = System.Drawing.Printing.PaperKind.A4; this.printableComponentLink2.PrintingSystem = this.printingSystem1; this.printableComponentLink2.VerticalContentSplitting = DevExpress.XtraPrinting.VerticalContentSplitting.Smart; // // printableComponentLink3 // this.printableComponentLink3.CustomPaperSize = new System.Drawing.Size(0, 0); this.printableComponentLink3.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printableComponentLink3.ImageStream"))); this.printableComponentLink3.Landscape = true; this.printableComponentLink3.Margins = new System.Drawing.Printing.Margins(50, 50, 50, 50); this.printableComponentLink3.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(new DevExpress.XtraPrinting.PageHeaderArea(new string[] { "Previous 10 Days Sales Report", "", "[Date Printed][Time Printed]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near), new DevExpress.XtraPrinting.PageFooterArea(new string[] { "", "", "[Page # of Pages #]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near)); this.printableComponentLink3.PaperKind = System.Drawing.Printing.PaperKind.A4; this.printableComponentLink3.PrintingSystem = this.printingSystem1; this.printableComponentLink3.VerticalContentSplitting = DevExpress.XtraPrinting.VerticalContentSplitting.Smart; // // printableComponentLink4 // this.printableComponentLink4.CustomPaperSize = new System.Drawing.Size(0, 0); this.printableComponentLink4.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printableComponentLink4.ImageStream"))); this.printableComponentLink4.Landscape = true; this.printableComponentLink4.Margins = new System.Drawing.Printing.Margins(50, 50, 50, 50); this.printableComponentLink4.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(new DevExpress.XtraPrinting.PageHeaderArea(new string[] { "Previous 10 Days Sales Report", "", "[Date Printed][Time Printed]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near), new DevExpress.XtraPrinting.PageFooterArea(new string[] { "", "", "[Page # of Pages #]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near)); this.printableComponentLink4.PaperKind = System.Drawing.Printing.PaperKind.A4; this.printableComponentLink4.PrintingSystem = this.printingSystem1; this.printableComponentLink4.VerticalContentSplitting = DevExpress.XtraPrinting.VerticalContentSplitting.Smart; // // hyperLinkEdit1 // this.hyperLinkEdit1.EditValue = "PRINT"; this.hyperLinkEdit1.Location = new System.Drawing.Point(120, 253); this.hyperLinkEdit1.Name = "hyperLinkEdit1"; this.hyperLinkEdit1.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control; this.hyperLinkEdit1.Properties.Appearance.Options.UseBackColor = true; this.hyperLinkEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.hyperLinkEdit1.Size = new System.Drawing.Size(40, 18); this.hyperLinkEdit1.TabIndex = 140; this.hyperLinkEdit1.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.hyperLinkEdit1_OpenLink); // // PrevGridIncomeAnalysis // this.PrevGridIncomeAnalysis.AppearancePrint.Cell.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.PrevGridIncomeAnalysis.AppearancePrint.Cell.Options.UseFont = true; this.PrevGridIncomeAnalysis.AppearancePrint.CustomTotalCell.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.PrevGridIncomeAnalysis.AppearancePrint.CustomTotalCell.Options.UseFont = true; this.PrevGridIncomeAnalysis.AppearancePrint.FieldValue.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.PrevGridIncomeAnalysis.AppearancePrint.FieldValue.Options.UseFont = true; this.PrevGridIncomeAnalysis.AppearancePrint.FieldValueGrandTotal.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.PrevGridIncomeAnalysis.AppearancePrint.FieldValueGrandTotal.Options.UseFont = true; this.PrevGridIncomeAnalysis.AppearancePrint.FieldValueTotal.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.PrevGridIncomeAnalysis.AppearancePrint.FieldValueTotal.Options.UseFont = true; this.PrevGridIncomeAnalysis.AppearancePrint.FilterSeparator.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.PrevGridIncomeAnalysis.AppearancePrint.FilterSeparator.Options.UseFont = true; this.PrevGridIncomeAnalysis.AppearancePrint.GrandTotalCell.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.PrevGridIncomeAnalysis.AppearancePrint.GrandTotalCell.Options.UseFont = true; this.PrevGridIncomeAnalysis.AppearancePrint.Lines.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.PrevGridIncomeAnalysis.AppearancePrint.Lines.Options.UseFont = true; this.PrevGridIncomeAnalysis.AppearancePrint.TotalCell.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.PrevGridIncomeAnalysis.AppearancePrint.TotalCell.Options.UseFont = true; this.PrevGridIncomeAnalysis.Cursor = System.Windows.Forms.Cursors.Default; this.PrevGridIncomeAnalysis.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField3, this.pivotGridField4, this.vTargetAmt, this.TargetAmt, this.pivotGridField13, this.TestTargetAmt}); this.PrevGridIncomeAnalysis.Groups.AddRange(new DevExpress.XtraPivotGrid.PivotGridGroup[] { pivotGridGroup2}); this.PrevGridIncomeAnalysis.Location = new System.Drawing.Point(-8, 450); this.PrevGridIncomeAnalysis.Name = "PrevGridIncomeAnalysis"; this.PrevGridIncomeAnalysis.OptionsBehavior.ApplyBestFitOnFieldDragging = true; this.PrevGridIncomeAnalysis.OptionsCustomization.AllowDrag = false; this.PrevGridIncomeAnalysis.OptionsCustomization.AllowExpand = false; this.PrevGridIncomeAnalysis.OptionsCustomization.AllowHideFields = DevExpress.XtraPivotGrid.AllowHideFieldsType.Never; this.PrevGridIncomeAnalysis.OptionsCustomization.AllowSort = false; this.PrevGridIncomeAnalysis.OptionsDataField.Area = DevExpress.XtraPivotGrid.PivotDataArea.RowArea; this.PrevGridIncomeAnalysis.OptionsDataField.AreaIndex = 1; this.PrevGridIncomeAnalysis.OptionsPrint.PrintDataHeaders = DevExpress.Utils.DefaultBoolean.False; this.PrevGridIncomeAnalysis.OptionsPrint.PrintFilterHeaders = DevExpress.Utils.DefaultBoolean.False; this.PrevGridIncomeAnalysis.OptionsPrint.UsePrintAppearance = true; this.PrevGridIncomeAnalysis.OptionsView.ShowDataHeaders = false; this.PrevGridIncomeAnalysis.OptionsView.ShowFilterHeaders = false; this.PrevGridIncomeAnalysis.OptionsView.ShowFilterSeparatorBar = false; this.PrevGridIncomeAnalysis.OptionsView.ShowRowGrandTotals = false; this.PrevGridIncomeAnalysis.Size = new System.Drawing.Size(960, 176); this.PrevGridIncomeAnalysis.TabIndex = 142; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField1.AreaIndex = 0; this.pivotGridField1.Caption = "Branch Sales"; this.pivotGridField1.ExpandedInFieldsGroup = false; this.pivotGridField1.FieldName = "mNettAmount"; this.pivotGridField1.MinWidth = 80; this.pivotGridField1.Name = "pivotGridField1"; this.pivotGridField1.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField1.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.True; this.pivotGridField1.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField1.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField1.TotalCellFormat.FormatString = "f2"; this.pivotGridField1.TotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.pivotGridField1.TotalValueFormat.FormatString = "f2"; this.pivotGridField1.TotalValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.pivotGridField1.ValueFormat.FormatString = "f2"; this.pivotGridField1.ValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.pivotGridField1.Width = 80; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField3.AreaIndex = 0; this.pivotGridField3.Caption = "Branch"; this.pivotGridField3.FieldName = "strBranchCode"; this.pivotGridField3.MinWidth = 10; this.pivotGridField3.Name = "pivotGridField3"; this.pivotGridField3.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField3.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.True; this.pivotGridField3.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField3.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField3.Width = 80; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField4.AreaIndex = 1; this.pivotGridField4.FieldName = "mTotalAmount"; this.pivotGridField4.Name = "pivotGridField4"; this.pivotGridField4.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField4.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField4.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField4.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField4.TotalCellFormat.FormatString = "f2"; this.pivotGridField4.TotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.pivotGridField4.TotalValueFormat.FormatString = "f2"; this.pivotGridField4.TotalValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.pivotGridField4.ValueFormat.FormatString = "f2"; this.pivotGridField4.ValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.pivotGridField4.Visible = false; this.pivotGridField4.Width = 80; // // vTargetAmt // this.vTargetAmt.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.vTargetAmt.AreaIndex = 1; this.vTargetAmt.Caption = "Target Amount"; this.vTargetAmt.Name = "vTargetAmt"; this.vTargetAmt.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False; this.vTargetAmt.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False; this.vTargetAmt.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False; this.vTargetAmt.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False; this.vTargetAmt.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Custom; this.vTargetAmt.TotalCellFormat.FormatString = "f2"; this.vTargetAmt.TotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.vTargetAmt.TotalValueFormat.FormatString = "f2"; this.vTargetAmt.TotalValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.vTargetAmt.UnboundFieldName = "gvTargetAmt"; this.vTargetAmt.UnboundType = DevExpress.Data.UnboundColumnType.Decimal; this.vTargetAmt.ValueFormat.FormatString = "f2"; this.vTargetAmt.ValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric; // // TargetAmt // this.TargetAmt.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.TargetAmt.AreaIndex = 2; this.TargetAmt.Caption = "Amount > Target"; this.TargetAmt.Name = "TargetAmt"; this.TargetAmt.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Custom; this.TargetAmt.TotalValueFormat.FormatString = "f2"; this.TargetAmt.TotalValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.TargetAmt.UnboundFieldName = "TargetAmount"; this.TargetAmt.UnboundType = DevExpress.Data.UnboundColumnType.Decimal; this.TargetAmt.ValueFormat.FormatString = "f2"; this.TargetAmt.ValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.TargetAmt.Width = 90; // // pivotGridField13 // this.pivotGridField13.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField13.AreaIndex = 0; this.pivotGridField13.Caption = "Month"; this.pivotGridField13.FieldName = "dtMonth"; this.pivotGridField13.Name = "pivotGridField13"; this.pivotGridField13.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField13.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField13.Width = 80; // // TestTargetAmt // this.TestTargetAmt.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.TestTargetAmt.AreaIndex = 1; this.TestTargetAmt.FieldName = "TargetAmount"; this.TestTargetAmt.Name = "TestTargetAmt"; this.TestTargetAmt.Visible = false; this.TestTargetAmt.Width = 90; // // label3 // this.label3.BackColor = System.Drawing.Color.Transparent; this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label3.Location = new System.Drawing.Point(-1, 8); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(136, 16); this.label3.TabIndex = 143; this.label3.Text = "Previous 10 Days Sales"; this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // label1 // this.label1.BackColor = System.Drawing.Color.Transparent; this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.Location = new System.Drawing.Point(0, 432); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(96, 16); this.label1.TabIndex = 144; this.label1.Text = "Selected Month:"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.label1.Click += new System.EventHandler(this.label1_Click); // // hyperLinkEdit2 // this.hyperLinkEdit2.EditValue = "PRINT"; this.hyperLinkEdit2.Location = new System.Drawing.Point(199, 8); this.hyperLinkEdit2.Name = "hyperLinkEdit2"; this.hyperLinkEdit2.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control; this.hyperLinkEdit2.Properties.Appearance.Options.UseBackColor = true; this.hyperLinkEdit2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.hyperLinkEdit2.Size = new System.Drawing.Size(40, 18); this.hyperLinkEdit2.TabIndex = 147; // // btn_Add // this.btn_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btn_Add.Appearance.Options.UseFont = true; this.btn_Add.Appearance.Options.UseTextOptions = true; this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top; this.btn_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap; this.btn_Add.ImageIndex = 0; this.btn_Add.ImageList = this.imageList1; this.btn_Add.ImeMode = System.Windows.Forms.ImeMode.On; this.btn_Add.Location = new System.Drawing.Point(135, 8); this.btn_Add.Name = "btn_Add"; this.btn_Add.Size = new System.Drawing.Size(32, 16); this.btn_Add.TabIndex = 146; this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click); // // btn_Del // this.btn_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btn_Del.Appearance.Options.UseFont = true; this.btn_Del.Appearance.Options.UseTextOptions = true; this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top; this.btn_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap; this.btn_Del.ImageIndex = 1; this.btn_Del.ImageList = this.imageList1; this.btn_Del.Location = new System.Drawing.Point(168, 8); this.btn_Del.Name = "btn_Del"; this.btn_Del.Size = new System.Drawing.Size(24, 16); this.btn_Del.TabIndex = 145; this.btn_Del.Click += new System.EventHandler(this.btn_Del_Click); // // pvGrandTotal10Days // this.pvGrandTotal10Days.Cursor = System.Windows.Forms.Cursors.Default; this.pvGrandTotal10Days.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField16, this.pivotGridField17}); this.pvGrandTotal10Days.Groups.AddRange(new DevExpress.XtraPivotGrid.PivotGridGroup[] { pivotGridGroup3}); this.pvGrandTotal10Days.Location = new System.Drawing.Point(0, 32); this.pvGrandTotal10Days.Name = "pvGrandTotal10Days"; this.pvGrandTotal10Days.OptionsCustomization.AllowDrag = false; this.pvGrandTotal10Days.OptionsCustomization.AllowExpand = false; this.pvGrandTotal10Days.OptionsCustomization.AllowSort = false; this.pvGrandTotal10Days.OptionsDataField.Area = DevExpress.XtraPivotGrid.PivotDataArea.RowArea; this.pvGrandTotal10Days.OptionsDataField.AreaIndex = 1; this.pvGrandTotal10Days.OptionsView.ShowDataHeaders = false; this.pvGrandTotal10Days.OptionsView.ShowFilterHeaders = false; this.pvGrandTotal10Days.OptionsView.ShowRowGrandTotals = false; this.pvGrandTotal10Days.Size = new System.Drawing.Size(960, 200); this.pvGrandTotal10Days.TabIndex = 150; // // pivotGridField16 // this.pivotGridField16.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField16.AreaIndex = 0; this.pivotGridField16.Caption = "Nett Amount"; this.pivotGridField16.FieldName = "mNettAmount"; this.pivotGridField16.Name = "pivotGridField16"; // // pivotGridField17 // this.pivotGridField17.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField17.AreaIndex = 0; this.pivotGridField17.Caption = "Branch"; this.pivotGridField17.FieldName = "strBranchCode"; this.pivotGridField17.Name = "pivotGridField17"; this.pivotGridField17.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField17.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField17.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField17.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False; // // ThirdGridIncomeAnalysis // this.ThirdGridIncomeAnalysis.Cursor = System.Windows.Forms.Cursors.Default; this.ThirdGridIncomeAnalysis.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField11, this.pivotGridField12, this.pivotGridField9}); this.ThirdGridIncomeAnalysis.Groups.AddRange(new DevExpress.XtraPivotGrid.PivotGridGroup[] { pivotGridGroup4}); this.ThirdGridIncomeAnalysis.Location = new System.Drawing.Point(0, 27); this.ThirdGridIncomeAnalysis.Name = "ThirdGridIncomeAnalysis"; this.ThirdGridIncomeAnalysis.OptionsCustomization.AllowDrag = false; this.ThirdGridIncomeAnalysis.OptionsCustomization.AllowExpand = false; this.ThirdGridIncomeAnalysis.OptionsCustomization.AllowSort = false; this.ThirdGridIncomeAnalysis.OptionsDataField.Area = DevExpress.XtraPivotGrid.PivotDataArea.RowArea; this.ThirdGridIncomeAnalysis.OptionsDataField.AreaIndex = 1; this.ThirdGridIncomeAnalysis.OptionsView.ShowDataHeaders = false; this.ThirdGridIncomeAnalysis.OptionsView.ShowFilterHeaders = false; this.ThirdGridIncomeAnalysis.OptionsView.ShowRowGrandTotals = false; this.ThirdGridIncomeAnalysis.Size = new System.Drawing.Size(960, 224); this.ThirdGridIncomeAnalysis.TabIndex = 151; // // pivotGridField11 // this.pivotGridField11.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField11.AreaIndex = 0; this.pivotGridField11.Caption = "Nett Amount"; this.pivotGridField11.FieldName = "mNettAmount"; this.pivotGridField11.Name = "pivotGridField11"; this.pivotGridField11.Width = 90; // // pivotGridField12 // this.pivotGridField12.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField12.AreaIndex = 0; this.pivotGridField12.Caption = "Branch"; this.pivotGridField12.FieldName = "strBranchCode"; this.pivotGridField12.Name = "pivotGridField12"; this.pivotGridField12.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField12.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField12.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField12.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField12.Width = 90; // // pivotGridField9 // this.pivotGridField9.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField9.AreaIndex = 0; this.pivotGridField9.Caption = "Date"; this.pivotGridField9.FieldName = "dtDate"; this.pivotGridField9.Name = "pivotGridField9"; this.pivotGridField9.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField9.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField9.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField9.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField9.ValueFormat.FormatString = "d"; this.pivotGridField9.ValueFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.pivotGridField9.Width = 80; // // cmbMonth // this.cmbMonth.Items.AddRange(new object[] { "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"}); this.cmbMonth.Location = new System.Drawing.Point(440, 5); this.cmbMonth.Name = "cmbMonth"; this.cmbMonth.Size = new System.Drawing.Size(104, 21); this.cmbMonth.TabIndex = 152; this.cmbMonth.Text = "-Select Month-"; this.cmbMonth.SelectedIndexChanged += new System.EventHandler(this.cmbMonth_SelectedIndexChanged); // // label4 // this.label4.BackColor = System.Drawing.Color.Transparent; this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label4.Location = new System.Drawing.Point(392, 10); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(40, 16); this.label4.TabIndex = 153; this.label4.Text = "Month"; // // RPIncomeAnalysis // this.AutoScroll = true; this.ClientSize = new System.Drawing.Size(994, 688); this.Controls.Add(this.label4); this.Controls.Add(this.cmbMonth); this.Controls.Add(this.hyperLinkEdit2); this.Controls.Add(this.btn_Add); this.Controls.Add(this.btn_Del); this.Controls.Add(this.label1); this.Controls.Add(this.label3); this.Controls.Add(this.PrevGridIncomeAnalysis); this.Controls.Add(this.hyperLinkEdit1); this.Controls.Add(this.PRINT1); this.Controls.Add(this.label2); this.Controls.Add(this.label63); this.Controls.Add(this.cmbCategory); this.Controls.Add(this.CurrentGridIncomeAnalysis); this.Controls.Add(this.ThirdGridIncomeAnalysis); this.Controls.Add(this.pvGrandTotal10Days); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "RPIncomeAnalysis"; this.Padding = new System.Windows.Forms.Padding(0, 0, 0, 50); this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Income Analysis Report"; this.TopMost = true; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.ShowReport_Load); ((System.ComponentModel.ISupportInitialize)(this.CurrentGridIncomeAnalysis)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.hyperLinkEdit1.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PrevGridIncomeAnalysis)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.hyperLinkEdit2.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pvGrandTotal10Days)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ThirdGridIncomeAnalysis)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.pvSpaFitness = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField5 = new DevExpress.XtraPivotGrid.PivotGridField(); this.cmbCategory = new DevExpress.XtraEditors.ImageComboBoxEdit(); this.label1 = new System.Windows.Forms.Label(); this.DateFrom = new DevExpress.XtraEditors.DateEdit(); this.DateTo = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.DateRangeTo = new DevExpress.XtraEditors.DateEdit(); this.btnReset = new DevExpress.XtraEditors.SimpleButton(); this.btnSearch = new DevExpress.XtraEditors.SimpleButton(); this.label3 = new System.Windows.Forms.Label(); this.txtItemDesc = new DevExpress.XtraEditors.TextEdit(); this.label6 = new System.Windows.Forms.Label(); this.txtItemCode = new DevExpress.XtraEditors.TextEdit(); ((System.ComponentModel.ISupportInitialize)(this.pvSpaFitness)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtItemDesc.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtItemCode.Properties)).BeginInit(); this.SuspendLayout(); // // pvSpaFitness // this.pvSpaFitness.Cursor = System.Windows.Forms.Cursors.Default; this.pvSpaFitness.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField3, this.pivotGridField4, this.pivotGridField5 }); this.pvSpaFitness.Location = new System.Drawing.Point(8, 48); this.pvSpaFitness.Name = "pvSpaFitness"; this.pvSpaFitness.OptionsCustomization.AllowDrag = false; this.pvSpaFitness.OptionsView.ShowDataHeaders = false; this.pvSpaFitness.OptionsView.ShowFilterHeaders = false; this.pvSpaFitness.Size = new System.Drawing.Size(760, 352); this.pvSpaFitness.TabIndex = 0; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField1.AreaIndex = 1; this.pivotGridField1.Caption = "Item Code"; this.pivotGridField1.FieldName = "strCode"; this.pivotGridField1.Name = "pivotGridField1"; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField2.AreaIndex = 2; this.pivotGridField2.Caption = "Item Desc"; this.pivotGridField2.FieldName = "strDescription"; this.pivotGridField2.Name = "pivotGridField2"; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField3.AreaIndex = 0; this.pivotGridField3.Caption = "Quantity"; this.pivotGridField3.FieldName = "nQuantity"; this.pivotGridField3.Name = "pivotGridField3"; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField4.AreaIndex = 0; this.pivotGridField4.Caption = "Branch"; this.pivotGridField4.FieldName = "strBranchCode"; this.pivotGridField4.Name = "pivotGridField4"; this.pivotGridField4.Options.AllowDrag = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField4.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField4.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False; // // pivotGridField5 // this.pivotGridField5.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField5.AreaIndex = 0; this.pivotGridField5.Caption = "Category"; this.pivotGridField5.FieldName = "Category"; this.pivotGridField5.Name = "pivotGridField5"; // // cmbCategory // this.cmbCategory.Location = new System.Drawing.Point(72, 24); this.cmbCategory.Name = "cmbCategory"; // // cmbCategory.Properties // this.cmbCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.cmbCategory.Size = new System.Drawing.Size(112, 20); this.cmbCategory.TabIndex = 1; // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label1.Location = new System.Drawing.Point(8, 24); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(64, 16); this.label1.TabIndex = 2; this.label1.Text = "Category"; // // DateFrom // this.DateFrom.EditValue = null; this.DateFrom.Location = new System.Drawing.Point(48, 0); this.DateFrom.Name = "DateFrom"; // // DateFrom.Properties // this.DateFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.DateFrom.Size = new System.Drawing.Size(72, 20); this.DateFrom.TabIndex = 13; // // DateTo // this.DateTo.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.DateTo.Location = new System.Drawing.Point(120, 0); this.DateTo.Name = "DateTo"; this.DateTo.Size = new System.Drawing.Size(24, 16); this.DateTo.TabIndex = 12; this.DateTo.Text = "To"; // // label2 // this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label2.Location = new System.Drawing.Point(8, 0); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(40, 16); this.label2.TabIndex = 11; this.label2.Text = "From"; // // DateRangeTo // this.DateRangeTo.EditValue = null; this.DateRangeTo.Location = new System.Drawing.Point(152, 0); this.DateRangeTo.Name = "DateRangeTo"; // // DateRangeTo.Properties // this.DateRangeTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.DateRangeTo.Properties.DisplayFormat.FormatString = "dd/MM/yyyy"; this.DateRangeTo.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.DateRangeTo.Properties.EditFormat.FormatString = "dd/MM/yyyy"; this.DateRangeTo.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.DateRangeTo.Properties.Mask.EditMask = "dd/MM/yyyy"; this.DateRangeTo.Size = new System.Drawing.Size(64, 20); this.DateRangeTo.TabIndex = 10; // // btnReset // this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.btnReset.Location = new System.Drawing.Point(520, 24); this.btnReset.Name = "btnReset"; this.btnReset.Size = new System.Drawing.Size(56, 20); this.btnReset.TabIndex = 66; this.btnReset.Text = "Reset"; this.btnReset.Click += new System.EventHandler(this.btnReset_Click); // // btnSearch // this.btnSearch.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.btnSearch.Location = new System.Drawing.Point(456, 24); this.btnSearch.Name = "btnSearch"; this.btnSearch.Size = new System.Drawing.Size(56, 20); this.btnSearch.TabIndex = 65; this.btnSearch.Text = "Search"; this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click); // // label3 // this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label3.Location = new System.Drawing.Point(312, 24); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(64, 16); this.label3.TabIndex = 60; this.label3.Text = "Item Desc"; // // txtItemDesc // this.txtItemDesc.EditValue = ""; this.txtItemDesc.Location = new System.Drawing.Point(376, 24); this.txtItemDesc.Name = "txtItemDesc"; this.txtItemDesc.Size = new System.Drawing.Size(72, 20); this.txtItemDesc.TabIndex = 59; // // label6 // this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label6.Location = new System.Drawing.Point(184, 24); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(64, 16); this.label6.TabIndex = 58; this.label6.Text = "Item Code"; // // txtItemCode // this.txtItemCode.EditValue = ""; this.txtItemCode.Location = new System.Drawing.Point(248, 24); this.txtItemCode.Name = "txtItemCode"; this.txtItemCode.Size = new System.Drawing.Size(64, 20); this.txtItemCode.TabIndex = 57; // // RPSpaFitness // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(864, 501); this.Controls.Add(this.btnReset); this.Controls.Add(this.btnSearch); this.Controls.Add(this.label3); this.Controls.Add(this.txtItemDesc); this.Controls.Add(this.label6); this.Controls.Add(this.txtItemCode); this.Controls.Add(this.DateFrom); this.Controls.Add(this.DateTo); this.Controls.Add(this.label2); this.Controls.Add(this.DateRangeTo); this.Controls.Add(this.label1); this.Controls.Add(this.cmbCategory); this.Controls.Add(this.pvSpaFitness); this.Name = "RPSpaFitness"; this.Text = "Spa & Fitness"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RPSpaFitness_Load); ((System.ComponentModel.ISupportInitialize)(this.pvSpaFitness)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtItemDesc.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtItemCode.Properties)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.GridStockRequest = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField5 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField6 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField7 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField8 = new DevExpress.XtraPivotGrid.PivotGridField(); this.DateFrom = new DevExpress.XtraEditors.DateEdit(); this.DateTo = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.DateRangeTo = new DevExpress.XtraEditors.DateEdit(); this.txtItemCode = new DevExpress.XtraEditors.TextEdit(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.txtItemDesc = new DevExpress.XtraEditors.TextEdit(); this.label4 = new System.Windows.Forms.Label(); this.txtStyleCode = new DevExpress.XtraEditors.TextEdit(); this.label5 = new System.Windows.Forms.Label(); this.txtStyleDesc = new DevExpress.XtraEditors.TextEdit(); this.btnSearch = new DevExpress.XtraEditors.SimpleButton(); this.btnReset = new DevExpress.XtraEditors.SimpleButton(); ((System.ComponentModel.ISupportInitialize)(this.GridStockRequest)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtItemCode.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtItemDesc.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtStyleCode.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtStyleDesc.Properties)).BeginInit(); this.SuspendLayout(); // // GridStockRequest // this.GridStockRequest.Cursor = System.Windows.Forms.Cursors.Default; this.GridStockRequest.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField3, this.pivotGridField4, this.pivotGridField5, this.pivotGridField6, this.pivotGridField7, this.pivotGridField8}); this.GridStockRequest.Location = new System.Drawing.Point(0, 48); this.GridStockRequest.Name = "GridStockRequest"; this.GridStockRequest.OptionsCustomization.AllowDrag = false; this.GridStockRequest.OptionsCustomization.AllowExpand = false; this.GridStockRequest.OptionsCustomization.AllowFilter = false; this.GridStockRequest.OptionsCustomization.AllowSort = false; this.GridStockRequest.OptionsView.ShowDataHeaders = false; this.GridStockRequest.OptionsView.ShowFilterHeaders = false; this.GridStockRequest.Size = new System.Drawing.Size(776, 336); this.GridStockRequest.TabIndex = 0; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField1.AreaIndex = 0; this.pivotGridField1.Caption = "Item Code"; this.pivotGridField1.FieldName = "strProductCode"; this.pivotGridField1.Name = "pivotGridField1"; this.pivotGridField1.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.True; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField2.AreaIndex = 1; this.pivotGridField2.Caption = "Brand"; this.pivotGridField2.FieldName = "strBrandCode"; this.pivotGridField2.Name = "pivotGridField2"; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField3.AreaIndex = 2; this.pivotGridField3.Caption = "Style Code"; this.pivotGridField3.FieldName = "strStyleCode"; this.pivotGridField3.Name = "pivotGridField3"; this.pivotGridField3.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.True; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField4.AreaIndex = 3; this.pivotGridField4.Caption = "Color"; this.pivotGridField4.FieldName = "strColorCode"; this.pivotGridField4.Name = "pivotGridField4"; this.pivotGridField4.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.True; // // pivotGridField5 // this.pivotGridField5.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField5.AreaIndex = 4; this.pivotGridField5.Caption = "Size"; this.pivotGridField5.FieldName = "strSizeCode"; this.pivotGridField5.Name = "pivotGridField5"; this.pivotGridField5.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.True; // // pivotGridField6 // this.pivotGridField6.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField6.AreaIndex = 0; this.pivotGridField6.Caption = "Branch"; this.pivotGridField6.FieldName = "strBranchCodeFrom"; this.pivotGridField6.Name = "pivotGridField6"; // // pivotGridField7 // this.pivotGridField7.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField7.AreaIndex = 0; this.pivotGridField7.Caption = "Quantity"; this.pivotGridField7.FieldName = "nQuantity"; this.pivotGridField7.Name = "pivotGridField7"; // // pivotGridField8 // this.pivotGridField8.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField8.AreaIndex = 5; this.pivotGridField8.Caption = "Item Desc"; this.pivotGridField8.FieldName = "strDescription"; this.pivotGridField8.Name = "pivotGridField8"; this.pivotGridField8.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.True; // // DateFrom // this.DateFrom.EditValue = null; this.DateFrom.Location = new System.Drawing.Point(40, 0); this.DateFrom.Name = "DateFrom"; // // DateFrom.Properties // this.DateFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.DateFrom.Size = new System.Drawing.Size(80, 20); this.DateFrom.TabIndex = 9; // // DateTo // this.DateTo.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.DateTo.Location = new System.Drawing.Point(128, 0); this.DateTo.Name = "DateTo"; this.DateTo.Size = new System.Drawing.Size(24, 16); this.DateTo.TabIndex = 8; this.DateTo.Text = "To"; // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label1.Location = new System.Drawing.Point(0, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(40, 16); this.label1.TabIndex = 7; this.label1.Text = "From"; // // DateRangeTo // this.DateRangeTo.EditValue = null; this.DateRangeTo.Location = new System.Drawing.Point(160, 0); this.DateRangeTo.Name = "DateRangeTo"; // // DateRangeTo.Properties // this.DateRangeTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.DateRangeTo.Properties.DisplayFormat.FormatString = "dd/MM/yyyy"; this.DateRangeTo.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.DateRangeTo.Properties.EditFormat.FormatString = "dd/MM/yyyy"; this.DateRangeTo.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.DateRangeTo.Properties.Mask.EditMask = "dd/MM/yyyy"; this.DateRangeTo.Size = new System.Drawing.Size(88, 20); this.DateRangeTo.TabIndex = 6; // // txtItemCode // this.txtItemCode.EditValue = ""; this.txtItemCode.Location = new System.Drawing.Point(72, 24); this.txtItemCode.Name = "txtItemCode"; this.txtItemCode.Size = new System.Drawing.Size(56, 20); this.txtItemCode.TabIndex = 10; // // label2 // this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label2.Location = new System.Drawing.Point(0, 24); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(64, 16); this.label2.TabIndex = 11; this.label2.Text = "Item Code"; // // label3 // this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label3.Location = new System.Drawing.Point(136, 24); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(64, 16); this.label3.TabIndex = 13; this.label3.Text = "Item Desc"; // // txtItemDesc // this.txtItemDesc.EditValue = ""; this.txtItemDesc.Location = new System.Drawing.Point(208, 24); this.txtItemDesc.Name = "txtItemDesc"; this.txtItemDesc.Size = new System.Drawing.Size(56, 20); this.txtItemDesc.TabIndex = 12; // // label4 // this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label4.Location = new System.Drawing.Point(272, 24); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(72, 16); this.label4.TabIndex = 15; this.label4.Text = "Style Code"; // // txtStyleCode // this.txtStyleCode.EditValue = ""; this.txtStyleCode.Location = new System.Drawing.Point(344, 24); this.txtStyleCode.Name = "txtStyleCode"; this.txtStyleCode.Size = new System.Drawing.Size(56, 20); this.txtStyleCode.TabIndex = 14; // // label5 // this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label5.Location = new System.Drawing.Point(400, 24); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(72, 16); this.label5.TabIndex = 17; this.label5.Text = "Style Desc"; // // txtStyleDesc // this.txtStyleDesc.EditValue = ""; this.txtStyleDesc.Location = new System.Drawing.Point(472, 24); this.txtStyleDesc.Name = "txtStyleDesc"; this.txtStyleDesc.Size = new System.Drawing.Size(56, 20); this.txtStyleDesc.TabIndex = 16; // // btnSearch // this.btnSearch.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.btnSearch.Location = new System.Drawing.Point(536, 24); this.btnSearch.Name = "btnSearch"; this.btnSearch.Size = new System.Drawing.Size(56, 20); this.btnSearch.TabIndex = 55; this.btnSearch.Text = "Search"; this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click); // // btnReset // this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.btnReset.Location = new System.Drawing.Point(600, 24); this.btnReset.Name = "btnReset"; this.btnReset.Size = new System.Drawing.Size(56, 20); this.btnReset.TabIndex = 56; this.btnReset.Text = "Reset"; this.btnReset.Click += new System.EventHandler(this.btnReset_Click); // // RPStock // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(808, 453); this.Controls.Add(this.btnReset); this.Controls.Add(this.btnSearch); this.Controls.Add(this.label5); this.Controls.Add(this.txtStyleDesc); this.Controls.Add(this.label4); this.Controls.Add(this.txtStyleCode); this.Controls.Add(this.label3); this.Controls.Add(this.txtItemDesc); this.Controls.Add(this.label2); this.Controls.Add(this.txtItemCode); this.Controls.Add(this.DateFrom); this.Controls.Add(this.DateTo); this.Controls.Add(this.label1); this.Controls.Add(this.DateRangeTo); this.Controls.Add(this.GridStockRequest); this.Name = "RPStock"; this.Text = "Stock Report"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RPStock_Load); ((System.ComponentModel.ISupportInitialize)(this.GridStockRequest)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtItemCode.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtItemDesc.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtStyleCode.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtStyleDesc.Properties)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.GridSpaService = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.DateFrom = new DevExpress.XtraEditors.DateEdit(); this.DateRangeTo = new DevExpress.XtraEditors.DateEdit(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.GridSpaService)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).BeginInit(); this.SuspendLayout(); // // GridSpaService // this.GridSpaService.Cursor = System.Windows.Forms.Cursors.Default; this.GridSpaService.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField3, this.pivotGridField4}); this.GridSpaService.Location = new System.Drawing.Point(0, 32); this.GridSpaService.Name = "GridSpaService"; this.GridSpaService.OptionsCustomization.AllowDrag = false; this.GridSpaService.OptionsCustomization.AllowExpand = false; this.GridSpaService.OptionsCustomization.AllowFilter = false; this.GridSpaService.OptionsCustomization.AllowSort = false; this.GridSpaService.OptionsView.ShowDataHeaders = false; this.GridSpaService.OptionsView.ShowFilterHeaders = false; this.GridSpaService.Size = new System.Drawing.Size(768, 344); this.GridSpaService.TabIndex = 0; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField1.AreaIndex = 0; this.pivotGridField1.Caption = "Branch"; this.pivotGridField1.FieldName = "strBranchCode"; this.pivotGridField1.Name = "pivotGridField1"; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField2.AreaIndex = 0; this.pivotGridField2.Caption = "Code"; this.pivotGridField2.FieldName = "Code"; this.pivotGridField2.Name = "pivotGridField2"; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField3.AreaIndex = 1; this.pivotGridField3.Caption = "Description"; this.pivotGridField3.FieldName = "strDescription"; this.pivotGridField3.Name = "pivotGridField3"; this.pivotGridField3.Width = 150; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField4.AreaIndex = 0; this.pivotGridField4.Caption = "Total"; this.pivotGridField4.FieldName = "Code"; this.pivotGridField4.Name = "pivotGridField4"; this.pivotGridField4.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; // // DateFrom // this.DateFrom.EditValue = null; this.DateFrom.Location = new System.Drawing.Point(40, 8); this.DateFrom.Name = "DateFrom"; // // DateFrom.Properties // this.DateFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.DateFrom.TabIndex = 1; this.DateFrom.EditValueChanged += new System.EventHandler(this.DateFrom_EditValueChanged); // // DateRangeTo // this.DateRangeTo.EditValue = null; this.DateRangeTo.Location = new System.Drawing.Point(168, 8); this.DateRangeTo.Name = "DateRangeTo"; // // DateRangeTo.Properties // this.DateRangeTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.DateRangeTo.TabIndex = 2; this.DateRangeTo.EditValueChanged += new System.EventHandler(this.DateRangeTo_EditValueChanged); // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label1.Location = new System.Drawing.Point(0, 8); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(40, 23); this.label1.TabIndex = 3; this.label1.Text = "From"; // // label2 // this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label2.Location = new System.Drawing.Point(144, 8); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(24, 23); this.label2.TabIndex = 4; this.label2.Text = "To"; // // RPOperation // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(776, 477); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.DateRangeTo); this.Controls.Add(this.DateFrom); this.Controls.Add(this.GridSpaService); this.Name = "RPOperation"; this.Text = "Spa Service Activity Report"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RPOperation_Load); ((System.ComponentModel.ISupportInitialize)(this.GridSpaService)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.GridCVType = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.DateFrom = new DevExpress.XtraEditors.DateEdit(); this.DateTo = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.DateRangeTo = new DevExpress.XtraEditors.DateEdit(); this.GridCVCategory = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField5 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField6 = new DevExpress.XtraPivotGrid.PivotGridField(); this.GridCVDepartment = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField7 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField8 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField9 = new DevExpress.XtraPivotGrid.PivotGridField(); this.GridCVTypeCat = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField10 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField11 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField12 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField13 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField14 = new DevExpress.XtraPivotGrid.PivotGridField(); this.GridCVSpa = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField15 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField16 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField17 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField18 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField19 = new DevExpress.XtraPivotGrid.PivotGridField(); this.GridCVOffice = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField20 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField21 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField22 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField23 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField24 = new DevExpress.XtraPivotGrid.PivotGridField(); this.GridCVList = new DevExpress.XtraGrid.GridControl(); this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.label5 = new System.Windows.Forms.Label(); this.label6 = new System.Windows.Forms.Label(); this.label7 = new System.Windows.Forms.Label(); this.label8 = new System.Windows.Forms.Label(); this.btnReset = new DevExpress.XtraEditors.SimpleButton(); ((System.ComponentModel.ISupportInitialize)(this.GridCVType)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVCategory)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVDepartment)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVTypeCat)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVSpa)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVOffice)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVList)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit(); this.SuspendLayout(); // // GridCVType // this.GridCVType.Cursor = System.Windows.Forms.Cursors.Default; this.GridCVType.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField3 }); this.GridCVType.Location = new System.Drawing.Point(0, 56); this.GridCVType.Name = "GridCVType"; this.GridCVType.OptionsCustomization.AllowDrag = false; this.GridCVType.OptionsCustomization.AllowExpand = false; this.GridCVType.OptionsCustomization.AllowFilter = false; this.GridCVType.OptionsCustomization.AllowSort = false; this.GridCVType.OptionsView.ShowDataHeaders = false; this.GridCVType.OptionsView.ShowFilterHeaders = false; this.GridCVType.Size = new System.Drawing.Size(712, 184); this.GridCVType.TabIndex = 0; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField1.AreaIndex = 0; this.pivotGridField1.Caption = "Type"; this.pivotGridField1.FieldName = "strDescription"; this.pivotGridField1.Name = "pivotGridField1"; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField2.AreaIndex = 0; this.pivotGridField2.Caption = "Branch"; this.pivotGridField2.FieldName = "strBranchCode"; this.pivotGridField2.Name = "pivotGridField2"; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField3.AreaIndex = 0; this.pivotGridField3.Caption = "Type"; this.pivotGridField3.FieldName = "nTypeID"; this.pivotGridField3.Name = "pivotGridField3"; // // DateFrom // this.DateFrom.EditValue = null; this.DateFrom.Location = new System.Drawing.Point(40, 8); this.DateFrom.Name = "DateFrom"; // // DateFrom.Properties // this.DateFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.DateFrom.Size = new System.Drawing.Size(72, 20); this.DateFrom.TabIndex = 9; // // DateTo // this.DateTo.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.DateTo.Location = new System.Drawing.Point(120, 8); this.DateTo.Name = "DateTo"; this.DateTo.Size = new System.Drawing.Size(24, 16); this.DateTo.TabIndex = 8; this.DateTo.Text = "To"; // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label1.Location = new System.Drawing.Point(0, 8); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(40, 16); this.label1.TabIndex = 7; this.label1.Text = "From"; // // DateRangeTo // this.DateRangeTo.EditValue = null; this.DateRangeTo.Location = new System.Drawing.Point(152, 8); this.DateRangeTo.Name = "DateRangeTo"; // // DateRangeTo.Properties // this.DateRangeTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.DateRangeTo.Properties.DisplayFormat.FormatString = "dd/MM/yyyy"; this.DateRangeTo.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.DateRangeTo.Properties.EditFormat.FormatString = "dd/MM/yyyy"; this.DateRangeTo.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.DateRangeTo.Properties.Mask.EditMask = "dd/MM/yyyy"; this.DateRangeTo.Size = new System.Drawing.Size(72, 20); this.DateRangeTo.TabIndex = 6; // // GridCVCategory // this.GridCVCategory.Cursor = System.Windows.Forms.Cursors.Default; this.GridCVCategory.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField4, this.pivotGridField5, this.pivotGridField6 }); this.GridCVCategory.Location = new System.Drawing.Point(0, 264); this.GridCVCategory.Name = "GridCVCategory"; this.GridCVCategory.OptionsCustomization.AllowDrag = false; this.GridCVCategory.OptionsCustomization.AllowExpand = false; this.GridCVCategory.OptionsCustomization.AllowFilter = false; this.GridCVCategory.OptionsCustomization.AllowSort = false; this.GridCVCategory.OptionsView.ShowDataHeaders = false; this.GridCVCategory.OptionsView.ShowFilterHeaders = false; this.GridCVCategory.Size = new System.Drawing.Size(712, 184); this.GridCVCategory.TabIndex = 10; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField4.AreaIndex = 0; this.pivotGridField4.Caption = "Category"; this.pivotGridField4.FieldName = "strDescription"; this.pivotGridField4.Name = "pivotGridField4"; // // pivotGridField5 // this.pivotGridField5.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField5.AreaIndex = 0; this.pivotGridField5.Caption = "Branch"; this.pivotGridField5.FieldName = "strBranchCode"; this.pivotGridField5.Name = "pivotGridField5"; // // pivotGridField6 // this.pivotGridField6.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField6.AreaIndex = 0; this.pivotGridField6.Caption = "Category"; this.pivotGridField6.FieldName = "nCategoryID"; this.pivotGridField6.Name = "pivotGridField6"; // // GridCVDepartment // this.GridCVDepartment.Cursor = System.Windows.Forms.Cursors.Default; this.GridCVDepartment.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField7, this.pivotGridField8, this.pivotGridField9 }); this.GridCVDepartment.Location = new System.Drawing.Point(0, 472); this.GridCVDepartment.Name = "GridCVDepartment"; this.GridCVDepartment.OptionsCustomization.AllowDrag = false; this.GridCVDepartment.OptionsCustomization.AllowExpand = false; this.GridCVDepartment.OptionsCustomization.AllowFilter = false; this.GridCVDepartment.OptionsCustomization.AllowSort = false; this.GridCVDepartment.OptionsView.ShowDataHeaders = false; this.GridCVDepartment.OptionsView.ShowFilterHeaders = false; this.GridCVDepartment.OptionsView.ShowFilterSeparatorBar = false; this.GridCVDepartment.Size = new System.Drawing.Size(712, 184); this.GridCVDepartment.TabIndex = 11; // // pivotGridField7 // this.pivotGridField7.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField7.AreaIndex = 0; this.pivotGridField7.Caption = "Department"; this.pivotGridField7.FieldName = "strDescription"; this.pivotGridField7.Name = "pivotGridField7"; // // pivotGridField8 // this.pivotGridField8.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField8.AreaIndex = 0; this.pivotGridField8.Caption = "Branch"; this.pivotGridField8.FieldName = "strBranchCode"; this.pivotGridField8.Name = "pivotGridField8"; // // pivotGridField9 // this.pivotGridField9.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField9.AreaIndex = 0; this.pivotGridField9.Caption = "Department"; this.pivotGridField9.FieldName = "nDepartmentID"; this.pivotGridField9.Name = "pivotGridField9"; // // GridCVTypeCat // this.GridCVTypeCat.Cursor = System.Windows.Forms.Cursors.Default; this.GridCVTypeCat.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField10, this.pivotGridField11, this.pivotGridField12, this.pivotGridField13, this.pivotGridField14 }); this.GridCVTypeCat.Location = new System.Drawing.Point(0, 680); this.GridCVTypeCat.Name = "GridCVTypeCat"; this.GridCVTypeCat.OptionsCustomization.AllowDrag = false; this.GridCVTypeCat.OptionsCustomization.AllowExpand = false; this.GridCVTypeCat.OptionsCustomization.AllowFilter = false; this.GridCVTypeCat.OptionsCustomization.AllowSort = false; this.GridCVTypeCat.OptionsView.ShowDataHeaders = false; this.GridCVTypeCat.OptionsView.ShowFilterHeaders = false; this.GridCVTypeCat.Size = new System.Drawing.Size(712, 184); this.GridCVTypeCat.TabIndex = 12; // // pivotGridField10 // this.pivotGridField10.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField10.AreaIndex = 0; this.pivotGridField10.Caption = "Type"; this.pivotGridField10.FieldName = "Type"; this.pivotGridField10.Name = "pivotGridField10"; // // pivotGridField11 // this.pivotGridField11.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField11.AreaIndex = 0; this.pivotGridField11.Caption = "Category"; this.pivotGridField11.FieldName = "Category"; this.pivotGridField11.Name = "pivotGridField11"; // // pivotGridField12 // this.pivotGridField12.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField12.AreaIndex = 2; this.pivotGridField12.Caption = "Total"; this.pivotGridField12.FieldName = "nTypeID"; this.pivotGridField12.Name = "pivotGridField12"; this.pivotGridField12.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; this.pivotGridField12.Width = 50; // // pivotGridField13 // this.pivotGridField13.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField13.AreaIndex = 0; this.pivotGridField13.Caption = "Pending"; this.pivotGridField13.FieldName = "Pending"; this.pivotGridField13.Name = "pivotGridField13"; this.pivotGridField13.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; this.pivotGridField13.Width = 50; // // pivotGridField14 // this.pivotGridField14.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField14.AreaIndex = 1; this.pivotGridField14.Caption = "Closed"; this.pivotGridField14.FieldName = "Closed"; this.pivotGridField14.Name = "pivotGridField14"; this.pivotGridField14.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; this.pivotGridField14.Width = 45; // // GridCVSpa // this.GridCVSpa.Cursor = System.Windows.Forms.Cursors.Default; this.GridCVSpa.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField15, this.pivotGridField16, this.pivotGridField17, this.pivotGridField18, this.pivotGridField19 }); this.GridCVSpa.Location = new System.Drawing.Point(0, 888); this.GridCVSpa.Name = "GridCVSpa"; this.GridCVSpa.OptionsCustomization.AllowDrag = false; this.GridCVSpa.OptionsCustomization.AllowExpand = false; this.GridCVSpa.OptionsCustomization.AllowFilter = false; this.GridCVSpa.OptionsCustomization.AllowSort = false; this.GridCVSpa.OptionsView.ShowDataHeaders = false; this.GridCVSpa.OptionsView.ShowFilterHeaders = false; this.GridCVSpa.Size = new System.Drawing.Size(704, 184); this.GridCVSpa.TabIndex = 13; // // pivotGridField15 // this.pivotGridField15.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField15.AreaIndex = 0; this.pivotGridField15.Caption = "Type"; this.pivotGridField15.FieldName = "Type"; this.pivotGridField15.Name = "pivotGridField15"; // // pivotGridField16 // this.pivotGridField16.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField16.AreaIndex = 0; this.pivotGridField16.Caption = "Category"; this.pivotGridField16.FieldName = "Category"; this.pivotGridField16.Name = "pivotGridField16"; // // pivotGridField17 // this.pivotGridField17.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField17.AreaIndex = 2; this.pivotGridField17.Caption = "Total"; this.pivotGridField17.FieldName = "nTypeID"; this.pivotGridField17.Name = "pivotGridField17"; this.pivotGridField17.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; this.pivotGridField17.Width = 50; // // pivotGridField18 // this.pivotGridField18.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField18.AreaIndex = 0; this.pivotGridField18.Caption = "Pending"; this.pivotGridField18.FieldName = "Pending"; this.pivotGridField18.Name = "pivotGridField18"; this.pivotGridField18.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; this.pivotGridField18.Width = 50; // // pivotGridField19 // this.pivotGridField19.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField19.AreaIndex = 1; this.pivotGridField19.Caption = "Closed"; this.pivotGridField19.FieldName = "Closed"; this.pivotGridField19.Name = "pivotGridField19"; this.pivotGridField19.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; this.pivotGridField19.Width = 45; // // GridCVOffice // this.GridCVOffice.Cursor = System.Windows.Forms.Cursors.Default; this.GridCVOffice.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField20, this.pivotGridField21, this.pivotGridField22, this.pivotGridField23, this.pivotGridField24 }); this.GridCVOffice.Location = new System.Drawing.Point(0, 1096); this.GridCVOffice.Name = "GridCVOffice"; this.GridCVOffice.OptionsCustomization.AllowDrag = false; this.GridCVOffice.OptionsCustomization.AllowExpand = false; this.GridCVOffice.OptionsCustomization.AllowFilter = false; this.GridCVOffice.OptionsCustomization.AllowSort = false; this.GridCVOffice.OptionsView.ShowDataHeaders = false; this.GridCVOffice.OptionsView.ShowFilterHeaders = false; this.GridCVOffice.Size = new System.Drawing.Size(712, 184); this.GridCVOffice.TabIndex = 14; // // pivotGridField20 // this.pivotGridField20.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField20.AreaIndex = 0; this.pivotGridField20.Caption = "Type"; this.pivotGridField20.FieldName = "Type"; this.pivotGridField20.Name = "pivotGridField20"; // // pivotGridField21 // this.pivotGridField21.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField21.AreaIndex = 0; this.pivotGridField21.Caption = "Category"; this.pivotGridField21.FieldName = "Category"; this.pivotGridField21.Name = "pivotGridField21"; // // pivotGridField22 // this.pivotGridField22.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField22.AreaIndex = 2; this.pivotGridField22.Caption = "Total"; this.pivotGridField22.FieldName = "nTypeID"; this.pivotGridField22.Name = "pivotGridField22"; this.pivotGridField22.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; this.pivotGridField22.Width = 50; // // pivotGridField23 // this.pivotGridField23.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField23.AreaIndex = 0; this.pivotGridField23.Caption = "Pending"; this.pivotGridField23.FieldName = "Pending"; this.pivotGridField23.Name = "pivotGridField23"; this.pivotGridField23.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; this.pivotGridField23.Width = 50; // // pivotGridField24 // this.pivotGridField24.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField24.AreaIndex = 1; this.pivotGridField24.Caption = "Closed"; this.pivotGridField24.FieldName = "Closed"; this.pivotGridField24.Name = "pivotGridField24"; this.pivotGridField24.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; this.pivotGridField24.Width = 45; // // GridCVList // // // GridCVList.EmbeddedNavigator // this.GridCVList.EmbeddedNavigator.Name = ""; this.GridCVList.Location = new System.Drawing.Point(0, 1304); this.GridCVList.MainView = this.gridView1; this.GridCVList.Name = "GridCVList"; this.GridCVList.Size = new System.Drawing.Size(712, 200); this.GridCVList.TabIndex = 15; this.GridCVList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridView1 }); // // gridView1 // this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.gridColumn1, this.gridColumn2, this.gridColumn3, this.gridColumn4, this.gridColumn5, this.gridColumn6, this.gridColumn7, this.gridColumn8, this.gridColumn9, this.gridColumn10, this.gridColumn11 }); this.gridView1.GridControl = this.GridCVList; this.gridView1.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always; this.gridView1.Name = "gridView1"; this.gridView1.OptionsBehavior.Editable = false; this.gridView1.OptionsCustomization.AllowColumnMoving = false; this.gridView1.OptionsCustomization.AllowFilter = false; this.gridView1.OptionsCustomization.AllowSort = false; this.gridView1.OptionsView.ColumnAutoWidth = false; this.gridView1.OptionsView.ShowGroupPanel = false; // // gridColumn1 // this.gridColumn1.Caption = "Reference No"; this.gridColumn1.FieldName = "nCaseID"; this.gridColumn1.Name = "gridColumn1"; this.gridColumn1.Visible = true; this.gridColumn1.VisibleIndex = 0; this.gridColumn1.Width = 80; // // gridColumn2 // this.gridColumn2.Caption = "Date"; this.gridColumn2.FieldName = "dtDate"; this.gridColumn2.Name = "gridColumn2"; this.gridColumn2.Visible = true; this.gridColumn2.VisibleIndex = 1; this.gridColumn2.Width = 80; // // gridColumn3 // this.gridColumn3.Caption = "Branch"; this.gridColumn3.FieldName = "strBranchCode"; this.gridColumn3.Name = "gridColumn3"; this.gridColumn3.Visible = true; this.gridColumn3.VisibleIndex = 2; this.gridColumn3.Width = 80; // // gridColumn4 // this.gridColumn4.Caption = "Department"; this.gridColumn4.FieldName = "Department"; this.gridColumn4.Name = "gridColumn4"; this.gridColumn4.Visible = true; this.gridColumn4.VisibleIndex = 3; this.gridColumn4.Width = 150; // // gridColumn5 // this.gridColumn5.Caption = "Type"; this.gridColumn5.FieldName = "Type"; this.gridColumn5.Name = "gridColumn5"; this.gridColumn5.Visible = true; this.gridColumn5.VisibleIndex = 4; this.gridColumn5.Width = 80; // // gridColumn6 // this.gridColumn6.Caption = "Member Id"; this.gridColumn6.FieldName = "strMembershipId"; this.gridColumn6.Name = "gridColumn6"; this.gridColumn6.Visible = true; this.gridColumn6.VisibleIndex = 5; this.gridColumn6.Width = 100; // // gridColumn7 // this.gridColumn7.Caption = "Member Name"; this.gridColumn7.FieldName = "strMemberName"; this.gridColumn7.Name = "gridColumn7"; this.gridColumn7.Visible = true; this.gridColumn7.VisibleIndex = 6; this.gridColumn7.Width = 120; // // gridColumn8 // this.gridColumn8.Caption = "Submitted By"; this.gridColumn8.FieldName = "SubmittedBy"; this.gridColumn8.Name = "gridColumn8"; this.gridColumn8.Visible = true; this.gridColumn8.VisibleIndex = 7; this.gridColumn8.Width = 120; // // gridColumn9 // this.gridColumn9.Caption = "Assigned To"; this.gridColumn9.FieldName = "AssignedTo"; this.gridColumn9.Name = "gridColumn9"; this.gridColumn9.Visible = true; this.gridColumn9.VisibleIndex = 8; this.gridColumn9.Width = 120; // // gridColumn10 // this.gridColumn10.Caption = "Update Date"; this.gridColumn10.FieldName = "dtLastEditDate"; this.gridColumn10.Name = "gridColumn10"; this.gridColumn10.Visible = true; this.gridColumn10.VisibleIndex = 9; this.gridColumn10.Width = 100; // // gridColumn11 // this.gridColumn11.Caption = "Status"; this.gridColumn11.FieldName = "Status"; this.gridColumn11.Name = "gridColumn11"; this.gridColumn11.Visible = true; this.gridColumn11.VisibleIndex = 10; this.gridColumn11.Width = 60; // // label2 // this.label2.BackColor = System.Drawing.Color.Transparent; this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label2.Location = new System.Drawing.Point(0, 32); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(176, 24); this.label2.TabIndex = 16; this.label2.Text = "Customer Voice - By Type"; this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // label3 // this.label3.BackColor = System.Drawing.Color.Transparent; this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label3.Location = new System.Drawing.Point(0, 240); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(200, 24); this.label3.TabIndex = 17; this.label3.Text = "Customer Voice - By Category"; this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // label4 // this.label4.BackColor = System.Drawing.Color.Transparent; this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label4.Location = new System.Drawing.Point(0, 456); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(216, 16); this.label4.TabIndex = 18; this.label4.Text = "Customer Voice - By Department"; this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // label5 // this.label5.BackColor = System.Drawing.Color.Transparent; this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label5.Location = new System.Drawing.Point(0, 656); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(328, 24); this.label5.TabIndex = 19; this.label5.Text = "Customer Voice - By Type and Category - Fitness"; this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // label6 // this.label6.BackColor = System.Drawing.Color.Transparent; this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label6.Location = new System.Drawing.Point(0, 864); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(304, 24); this.label6.TabIndex = 20; this.label6.Text = "Customer Voice - By Type and Category - Spa"; this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // label7 // this.label7.BackColor = System.Drawing.Color.Transparent; this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label7.Location = new System.Drawing.Point(0, 1072); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(312, 24); this.label7.TabIndex = 21; this.label7.Text = "Customer Voice - By Type and Category - Office"; this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // label8 // this.label8.BackColor = System.Drawing.Color.Transparent; this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label8.Location = new System.Drawing.Point(0, 1280); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(72, 24); this.label8.TabIndex = 22; this.label8.Text = "CV Listing"; this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // btnReset // this.btnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.btnReset.Appearance.Options.UseFont = true; this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.btnReset.Location = new System.Drawing.Point(240, 8); this.btnReset.LookAndFeel.UseDefaultLookAndFeel = false; this.btnReset.Name = "btnReset"; this.btnReset.Size = new System.Drawing.Size(72, 16); this.btnReset.TabIndex = 216; this.btnReset.Text = "Enquiry"; this.btnReset.Click += new System.EventHandler(this.btnReset_Click); // // RPCustomerVoice // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.AutoScroll = true; this.ClientSize = new System.Drawing.Size(736, 581); this.Controls.Add(this.btnReset); this.Controls.Add(this.label8); this.Controls.Add(this.label7); this.Controls.Add(this.label6); this.Controls.Add(this.label5); this.Controls.Add(this.label4); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.GridCVList); this.Controls.Add(this.GridCVOffice); this.Controls.Add(this.GridCVSpa); this.Controls.Add(this.GridCVTypeCat); this.Controls.Add(this.GridCVDepartment); this.Controls.Add(this.GridCVCategory); this.Controls.Add(this.DateFrom); this.Controls.Add(this.DateTo); this.Controls.Add(this.label1); this.Controls.Add(this.DateRangeTo); this.Controls.Add(this.GridCVType); this.DockPadding.Bottom = 10; this.Name = "RPCustomerVoice"; this.Text = "Customer Voice"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RPCustomerVoice_Load); ((System.ComponentModel.ISupportInitialize)(this.GridCVType)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVCategory)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVDepartment)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVTypeCat)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVSpa)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVOffice)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVList)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.gvPromotionAnalysis = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField5 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField6 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField7 = new DevExpress.XtraPivotGrid.PivotGridField(); this.btnReset = new DevExpress.XtraEditors.SimpleButton(); this.sbtnReset = new DevExpress.XtraEditors.SimpleButton(); this.lkBranch = new DevExpress.XtraEditors.LookUpEdit(); this.lkPromotion = new DevExpress.XtraEditors.LookUpEdit(); this.label6 = new System.Windows.Forms.Label(); this.label5 = new System.Windows.Forms.Label(); this.DateFrom = new DevExpress.XtraEditors.DateEdit(); this.DateRangeTo = new DevExpress.XtraEditors.DateEdit(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.gvPromotionAnalysis)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.lkPromotion.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).BeginInit(); this.SuspendLayout(); // // gvPromotionAnalysis // this.gvPromotionAnalysis.Cursor = System.Windows.Forms.Cursors.Default; this.gvPromotionAnalysis.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField5, this.pivotGridField6, this.pivotGridField3, this.pivotGridField4, this.pivotGridField7 }); this.gvPromotionAnalysis.Location = new System.Drawing.Point(8, 40); this.gvPromotionAnalysis.Name = "gvPromotionAnalysis"; this.gvPromotionAnalysis.OptionsCustomization.AllowDrag = false; this.gvPromotionAnalysis.OptionsCustomization.AllowFilter = false; this.gvPromotionAnalysis.OptionsCustomization.AllowSort = false; this.gvPromotionAnalysis.OptionsView.ShowDataHeaders = false; this.gvPromotionAnalysis.OptionsView.ShowFilterHeaders = false; this.gvPromotionAnalysis.Size = new System.Drawing.Size(960, 440); this.gvPromotionAnalysis.TabIndex = 0; this.gvPromotionAnalysis.CellDoubleClick += new DevExpress.XtraPivotGrid.PivotCellEventHandler(this.gvPromotionAnalysis_CellDoubleClick); // // pivotGridField1 // this.pivotGridField1.Appearance.Header.BackColor = System.Drawing.SystemColors.ActiveCaptionText; this.pivotGridField1.Appearance.Header.Options.UseBackColor = true; this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField1.AreaIndex = 3; this.pivotGridField1.Caption = "Code"; this.pivotGridField1.FieldName = "strPromotionCode"; this.pivotGridField1.Name = "pivotGridField1"; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField2.AreaIndex = 2; this.pivotGridField2.Caption = "Description"; this.pivotGridField2.ExpandedInFieldsGroup = false; this.pivotGridField2.FieldName = "strDescription"; this.pivotGridField2.Name = "pivotGridField2"; this.pivotGridField2.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField2.Width = 180; // // pivotGridField5 // this.pivotGridField5.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField5.AreaIndex = 0; this.pivotGridField5.Caption = "Branch Code"; this.pivotGridField5.FieldName = "strBranchCode"; this.pivotGridField5.Name = "pivotGridField5"; this.pivotGridField5.Width = 70; // // pivotGridField6 // this.pivotGridField6.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField6.AreaIndex = 0; this.pivotGridField6.FieldName = "Amount"; this.pivotGridField6.Name = "pivotGridField6"; this.pivotGridField6.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; // // pivotGridField3 // this.pivotGridField3.AllowedAreas = DevExpress.XtraPivotGrid.PivotGridAllowedAreas.RowArea; this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField3.AreaIndex = 4; this.pivotGridField3.CellFormat.FormatString = "{yyyy-MM-dd}"; this.pivotGridField3.FieldName = "dtDate"; this.pivotGridField3.GrandTotalText = "Date"; this.pivotGridField3.Name = "pivotGridField3"; this.pivotGridField3.Options.ShowInCustomizationForm = false; this.pivotGridField3.ValueFormat.FormatString = "MM/dd/yyyy"; this.pivotGridField3.ValueFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.pivotGridField3.Width = 80; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField4.AreaIndex = 0; this.pivotGridField4.Caption = "Valid Start"; this.pivotGridField4.CellFormat.FormatString = "dd/MM/yyyy"; this.pivotGridField4.CellFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.pivotGridField4.ExpandedInFieldsGroup = false; this.pivotGridField4.FieldName = "dtValidStart"; this.pivotGridField4.Name = "pivotGridField4"; this.pivotGridField4.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField4.ValueFormat.FormatString = "MM/dd/yyyy"; this.pivotGridField4.ValueFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.pivotGridField4.Width = 80; // // pivotGridField7 // this.pivotGridField7.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField7.AreaIndex = 1; this.pivotGridField7.Caption = "Valid End"; this.pivotGridField7.CellFormat.FormatString = "d"; this.pivotGridField7.CellFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.pivotGridField7.ExpandedInFieldsGroup = false; this.pivotGridField7.FieldName = "dtValidEnd"; this.pivotGridField7.Name = "pivotGridField7"; this.pivotGridField7.Options.AllowExpand = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField7.ValueFormat.FormatString = "MM/dd/yyyy"; this.pivotGridField7.ValueFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.pivotGridField7.Width = 80; // // btnReset // this.btnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.btnReset.Appearance.Options.UseFont = true; this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.btnReset.Location = new System.Drawing.Point(752, 8); this.btnReset.LookAndFeel.UseDefaultLookAndFeel = false; this.btnReset.Name = "btnReset"; this.btnReset.Size = new System.Drawing.Size(48, 16); this.btnReset.TabIndex = 198; this.btnReset.Text = "Reset"; this.btnReset.Click += new System.EventHandler(this.btnReset_Click); // // sbtnReset // this.sbtnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.sbtnReset.Appearance.Options.UseFont = true; this.sbtnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.sbtnReset.Location = new System.Drawing.Point(696, 8); this.sbtnReset.LookAndFeel.UseDefaultLookAndFeel = false; this.sbtnReset.Name = "sbtnReset"; this.sbtnReset.Size = new System.Drawing.Size(48, 16); this.sbtnReset.TabIndex = 192; this.sbtnReset.Text = "Enquiry"; this.sbtnReset.Click += new System.EventHandler(this.sbtnReset_Click); // // lkBranch // this.lkBranch.Location = new System.Drawing.Point(416, 8); this.lkBranch.Name = "lkBranch"; // // lkBranch.Properties // this.lkBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.lkBranch.Size = new System.Drawing.Size(96, 22); this.lkBranch.TabIndex = 191; // // lkPromotion // this.lkPromotion.Location = new System.Drawing.Point(592, 8); this.lkPromotion.Name = "lkPromotion"; // // lkPromotion.Properties // this.lkPromotion.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.lkPromotion.Size = new System.Drawing.Size(96, 22); this.lkPromotion.TabIndex = 190; // // label6 // this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.label6.Location = new System.Drawing.Point(520, 8); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(72, 16); this.label6.TabIndex = 189; this.label6.Text = "Promotion Code"; // // label5 // this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.label5.Location = new System.Drawing.Point(360, 8); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(56, 16); this.label5.TabIndex = 188; this.label5.Text = "Branch"; // // DateFrom // this.DateFrom.EditValue = null; this.DateFrom.Location = new System.Drawing.Point(88, 8); this.DateFrom.Name = "DateFrom"; // // DateFrom.Properties // this.DateFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.DateFrom.Size = new System.Drawing.Size(88, 22); this.DateFrom.TabIndex = 199; // // DateRangeTo // this.DateRangeTo.EditValue = null; this.DateRangeTo.Location = new System.Drawing.Point(248, 8); this.DateRangeTo.Name = "DateRangeTo"; // // DateRangeTo.Properties // this.DateRangeTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.DateRangeTo.Size = new System.Drawing.Size(100, 22); this.DateRangeTo.TabIndex = 200; // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.label1.Location = new System.Drawing.Point(8, 8); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(72, 16); this.label1.TabIndex = 201; this.label1.Text = "Date From"; // // label2 // this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.label2.Location = new System.Drawing.Point(184, 8); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(56, 16); this.label2.TabIndex = 202; this.label2.Text = "Date To"; // // RPPromotionAnalysis // this.AutoScaleBaseSize = new System.Drawing.Size(5, 14); this.ClientSize = new System.Drawing.Size(984, 533); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.DateRangeTo); this.Controls.Add(this.DateFrom); this.Controls.Add(this.btnReset); this.Controls.Add(this.sbtnReset); this.Controls.Add(this.lkBranch); this.Controls.Add(this.lkPromotion); this.Controls.Add(this.label6); this.Controls.Add(this.label5); this.Controls.Add(this.gvPromotionAnalysis); this.Name = "RPPromotionAnalysis"; this.Text = "Promotion Analysis"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RPPromotionAnalysis_Load); ((System.ComponentModel.ISupportInitialize)(this.gvPromotionAnalysis)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.lkPromotion.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.GridCVType = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.DateFrom = new DevExpress.XtraEditors.DateEdit(); this.DateTo = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.DateRangeTo = new DevExpress.XtraEditors.DateEdit(); this.GridCVCategory = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField5 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField6 = new DevExpress.XtraPivotGrid.PivotGridField(); this.GridCVDepartment = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField7 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField8 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField9 = new DevExpress.XtraPivotGrid.PivotGridField(); this.GridCVTypeCat = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField10 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField11 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField12 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField13 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField14 = new DevExpress.XtraPivotGrid.PivotGridField(); this.GridCVSpa = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField15 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField16 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField17 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField18 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField19 = new DevExpress.XtraPivotGrid.PivotGridField(); this.GridCVOffice = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField20 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField21 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField22 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField23 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField24 = new DevExpress.XtraPivotGrid.PivotGridField(); this.GridCVList = new DevExpress.XtraGrid.GridControl(); this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.label5 = new System.Windows.Forms.Label(); this.label6 = new System.Windows.Forms.Label(); this.label7 = new System.Windows.Forms.Label(); this.label8 = new System.Windows.Forms.Label(); this.btnReset = new DevExpress.XtraEditors.SimpleButton(); ((System.ComponentModel.ISupportInitialize)(this.GridCVType)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVCategory)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVDepartment)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVTypeCat)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVSpa)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVOffice)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVList)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit(); this.SuspendLayout(); // // GridCVType // this.GridCVType.Cursor = System.Windows.Forms.Cursors.Default; this.GridCVType.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField3}); this.GridCVType.Location = new System.Drawing.Point(0, 56); this.GridCVType.Name = "GridCVType"; this.GridCVType.OptionsCustomization.AllowDrag = false; this.GridCVType.OptionsCustomization.AllowExpand = false; this.GridCVType.OptionsCustomization.AllowFilter = false; this.GridCVType.OptionsCustomization.AllowSort = false; this.GridCVType.OptionsView.ShowDataHeaders = false; this.GridCVType.OptionsView.ShowFilterHeaders = false; this.GridCVType.Size = new System.Drawing.Size(712, 184); this.GridCVType.TabIndex = 0; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField1.AreaIndex = 0; this.pivotGridField1.Caption = "Type"; this.pivotGridField1.FieldName = "strDescription"; this.pivotGridField1.Name = "pivotGridField1"; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField2.AreaIndex = 0; this.pivotGridField2.Caption = "Branch"; this.pivotGridField2.FieldName = "strBranchCode"; this.pivotGridField2.Name = "pivotGridField2"; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField3.AreaIndex = 0; this.pivotGridField3.Caption = "Type"; this.pivotGridField3.FieldName = "nTypeID"; this.pivotGridField3.Name = "pivotGridField3"; // // DateFrom // this.DateFrom.EditValue = null; this.DateFrom.Location = new System.Drawing.Point(40, 8); this.DateFrom.Name = "DateFrom"; // // DateFrom.Properties // this.DateFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.DateFrom.Size = new System.Drawing.Size(72, 20); this.DateFrom.TabIndex = 9; // // DateTo // this.DateTo.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.DateTo.Location = new System.Drawing.Point(120, 8); this.DateTo.Name = "DateTo"; this.DateTo.Size = new System.Drawing.Size(24, 16); this.DateTo.TabIndex = 8; this.DateTo.Text = "To"; // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label1.Location = new System.Drawing.Point(0, 8); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(40, 16); this.label1.TabIndex = 7; this.label1.Text = "From"; // // DateRangeTo // this.DateRangeTo.EditValue = null; this.DateRangeTo.Location = new System.Drawing.Point(152, 8); this.DateRangeTo.Name = "DateRangeTo"; // // DateRangeTo.Properties // this.DateRangeTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.DateRangeTo.Properties.DisplayFormat.FormatString = "dd/MM/yyyy"; this.DateRangeTo.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.DateRangeTo.Properties.EditFormat.FormatString = "dd/MM/yyyy"; this.DateRangeTo.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.DateRangeTo.Properties.Mask.EditMask = "dd/MM/yyyy"; this.DateRangeTo.Size = new System.Drawing.Size(72, 20); this.DateRangeTo.TabIndex = 6; // // GridCVCategory // this.GridCVCategory.Cursor = System.Windows.Forms.Cursors.Default; this.GridCVCategory.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField4, this.pivotGridField5, this.pivotGridField6}); this.GridCVCategory.Location = new System.Drawing.Point(0, 264); this.GridCVCategory.Name = "GridCVCategory"; this.GridCVCategory.OptionsCustomization.AllowDrag = false; this.GridCVCategory.OptionsCustomization.AllowExpand = false; this.GridCVCategory.OptionsCustomization.AllowFilter = false; this.GridCVCategory.OptionsCustomization.AllowSort = false; this.GridCVCategory.OptionsView.ShowDataHeaders = false; this.GridCVCategory.OptionsView.ShowFilterHeaders = false; this.GridCVCategory.Size = new System.Drawing.Size(712, 184); this.GridCVCategory.TabIndex = 10; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField4.AreaIndex = 0; this.pivotGridField4.Caption = "Category"; this.pivotGridField4.FieldName = "strDescription"; this.pivotGridField4.Name = "pivotGridField4"; // // pivotGridField5 // this.pivotGridField5.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField5.AreaIndex = 0; this.pivotGridField5.Caption = "Branch"; this.pivotGridField5.FieldName = "strBranchCode"; this.pivotGridField5.Name = "pivotGridField5"; // // pivotGridField6 // this.pivotGridField6.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField6.AreaIndex = 0; this.pivotGridField6.Caption = "Category"; this.pivotGridField6.FieldName = "nCategoryID"; this.pivotGridField6.Name = "pivotGridField6"; // // GridCVDepartment // this.GridCVDepartment.Cursor = System.Windows.Forms.Cursors.Default; this.GridCVDepartment.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField7, this.pivotGridField8, this.pivotGridField9}); this.GridCVDepartment.Location = new System.Drawing.Point(0, 472); this.GridCVDepartment.Name = "GridCVDepartment"; this.GridCVDepartment.OptionsCustomization.AllowDrag = false; this.GridCVDepartment.OptionsCustomization.AllowExpand = false; this.GridCVDepartment.OptionsCustomization.AllowFilter = false; this.GridCVDepartment.OptionsCustomization.AllowSort = false; this.GridCVDepartment.OptionsView.ShowDataHeaders = false; this.GridCVDepartment.OptionsView.ShowFilterHeaders = false; this.GridCVDepartment.OptionsView.ShowFilterSeparatorBar = false; this.GridCVDepartment.Size = new System.Drawing.Size(712, 184); this.GridCVDepartment.TabIndex = 11; // // pivotGridField7 // this.pivotGridField7.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField7.AreaIndex = 0; this.pivotGridField7.Caption = "Department"; this.pivotGridField7.FieldName = "strDescription"; this.pivotGridField7.Name = "pivotGridField7"; // // pivotGridField8 // this.pivotGridField8.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField8.AreaIndex = 0; this.pivotGridField8.Caption = "Branch"; this.pivotGridField8.FieldName = "strBranchCode"; this.pivotGridField8.Name = "pivotGridField8"; // // pivotGridField9 // this.pivotGridField9.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField9.AreaIndex = 0; this.pivotGridField9.Caption = "Department"; this.pivotGridField9.FieldName = "nDepartmentID"; this.pivotGridField9.Name = "pivotGridField9"; // // GridCVTypeCat // this.GridCVTypeCat.Cursor = System.Windows.Forms.Cursors.Default; this.GridCVTypeCat.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField10, this.pivotGridField11, this.pivotGridField12, this.pivotGridField13, this.pivotGridField14}); this.GridCVTypeCat.Location = new System.Drawing.Point(0, 680); this.GridCVTypeCat.Name = "GridCVTypeCat"; this.GridCVTypeCat.OptionsCustomization.AllowDrag = false; this.GridCVTypeCat.OptionsCustomization.AllowExpand = false; this.GridCVTypeCat.OptionsCustomization.AllowFilter = false; this.GridCVTypeCat.OptionsCustomization.AllowSort = false; this.GridCVTypeCat.OptionsView.ShowDataHeaders = false; this.GridCVTypeCat.OptionsView.ShowFilterHeaders = false; this.GridCVTypeCat.Size = new System.Drawing.Size(712, 184); this.GridCVTypeCat.TabIndex = 12; // // pivotGridField10 // this.pivotGridField10.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField10.AreaIndex = 0; this.pivotGridField10.Caption = "Type"; this.pivotGridField10.FieldName = "Type"; this.pivotGridField10.Name = "pivotGridField10"; // // pivotGridField11 // this.pivotGridField11.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField11.AreaIndex = 0; this.pivotGridField11.Caption = "Category"; this.pivotGridField11.FieldName = "Category"; this.pivotGridField11.Name = "pivotGridField11"; // // pivotGridField12 // this.pivotGridField12.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField12.AreaIndex = 2; this.pivotGridField12.Caption = "Total"; this.pivotGridField12.FieldName = "nTypeID"; this.pivotGridField12.Name = "pivotGridField12"; this.pivotGridField12.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; this.pivotGridField12.Width = 50; // // pivotGridField13 // this.pivotGridField13.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField13.AreaIndex = 0; this.pivotGridField13.Caption = "Pending"; this.pivotGridField13.FieldName = "Pending"; this.pivotGridField13.Name = "pivotGridField13"; this.pivotGridField13.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; this.pivotGridField13.Width = 50; // // pivotGridField14 // this.pivotGridField14.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField14.AreaIndex = 1; this.pivotGridField14.Caption = "Closed"; this.pivotGridField14.FieldName = "Closed"; this.pivotGridField14.Name = "pivotGridField14"; this.pivotGridField14.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; this.pivotGridField14.Width = 45; // // GridCVSpa // this.GridCVSpa.Cursor = System.Windows.Forms.Cursors.Default; this.GridCVSpa.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField15, this.pivotGridField16, this.pivotGridField17, this.pivotGridField18, this.pivotGridField19}); this.GridCVSpa.Location = new System.Drawing.Point(0, 888); this.GridCVSpa.Name = "GridCVSpa"; this.GridCVSpa.OptionsCustomization.AllowDrag = false; this.GridCVSpa.OptionsCustomization.AllowExpand = false; this.GridCVSpa.OptionsCustomization.AllowFilter = false; this.GridCVSpa.OptionsCustomization.AllowSort = false; this.GridCVSpa.OptionsView.ShowDataHeaders = false; this.GridCVSpa.OptionsView.ShowFilterHeaders = false; this.GridCVSpa.Size = new System.Drawing.Size(704, 184); this.GridCVSpa.TabIndex = 13; // // pivotGridField15 // this.pivotGridField15.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField15.AreaIndex = 0; this.pivotGridField15.Caption = "Type"; this.pivotGridField15.FieldName = "Type"; this.pivotGridField15.Name = "pivotGridField15"; // // pivotGridField16 // this.pivotGridField16.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField16.AreaIndex = 0; this.pivotGridField16.Caption = "Category"; this.pivotGridField16.FieldName = "Category"; this.pivotGridField16.Name = "pivotGridField16"; // // pivotGridField17 // this.pivotGridField17.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField17.AreaIndex = 2; this.pivotGridField17.Caption = "Total"; this.pivotGridField17.FieldName = "nTypeID"; this.pivotGridField17.Name = "pivotGridField17"; this.pivotGridField17.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; this.pivotGridField17.Width = 50; // // pivotGridField18 // this.pivotGridField18.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField18.AreaIndex = 0; this.pivotGridField18.Caption = "Pending"; this.pivotGridField18.FieldName = "Pending"; this.pivotGridField18.Name = "pivotGridField18"; this.pivotGridField18.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; this.pivotGridField18.Width = 50; // // pivotGridField19 // this.pivotGridField19.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField19.AreaIndex = 1; this.pivotGridField19.Caption = "Closed"; this.pivotGridField19.FieldName = "Closed"; this.pivotGridField19.Name = "pivotGridField19"; this.pivotGridField19.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; this.pivotGridField19.Width = 45; // // GridCVOffice // this.GridCVOffice.Cursor = System.Windows.Forms.Cursors.Default; this.GridCVOffice.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField20, this.pivotGridField21, this.pivotGridField22, this.pivotGridField23, this.pivotGridField24}); this.GridCVOffice.Location = new System.Drawing.Point(0, 1096); this.GridCVOffice.Name = "GridCVOffice"; this.GridCVOffice.OptionsCustomization.AllowDrag = false; this.GridCVOffice.OptionsCustomization.AllowExpand = false; this.GridCVOffice.OptionsCustomization.AllowFilter = false; this.GridCVOffice.OptionsCustomization.AllowSort = false; this.GridCVOffice.OptionsView.ShowDataHeaders = false; this.GridCVOffice.OptionsView.ShowFilterHeaders = false; this.GridCVOffice.Size = new System.Drawing.Size(712, 184); this.GridCVOffice.TabIndex = 14; // // pivotGridField20 // this.pivotGridField20.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField20.AreaIndex = 0; this.pivotGridField20.Caption = "Type"; this.pivotGridField20.FieldName = "Type"; this.pivotGridField20.Name = "pivotGridField20"; // // pivotGridField21 // this.pivotGridField21.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField21.AreaIndex = 0; this.pivotGridField21.Caption = "Category"; this.pivotGridField21.FieldName = "Category"; this.pivotGridField21.Name = "pivotGridField21"; // // pivotGridField22 // this.pivotGridField22.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField22.AreaIndex = 2; this.pivotGridField22.Caption = "Total"; this.pivotGridField22.FieldName = "nTypeID"; this.pivotGridField22.Name = "pivotGridField22"; this.pivotGridField22.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; this.pivotGridField22.Width = 50; // // pivotGridField23 // this.pivotGridField23.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField23.AreaIndex = 0; this.pivotGridField23.Caption = "Pending"; this.pivotGridField23.FieldName = "Pending"; this.pivotGridField23.Name = "pivotGridField23"; this.pivotGridField23.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; this.pivotGridField23.Width = 50; // // pivotGridField24 // this.pivotGridField24.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField24.AreaIndex = 1; this.pivotGridField24.Caption = "Closed"; this.pivotGridField24.FieldName = "Closed"; this.pivotGridField24.Name = "pivotGridField24"; this.pivotGridField24.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; this.pivotGridField24.Width = 45; // // GridCVList // // // GridCVList.EmbeddedNavigator // this.GridCVList.EmbeddedNavigator.Name = ""; this.GridCVList.Location = new System.Drawing.Point(0, 1304); this.GridCVList.MainView = this.gridView1; this.GridCVList.Name = "GridCVList"; this.GridCVList.Size = new System.Drawing.Size(712, 200); this.GridCVList.TabIndex = 15; this.GridCVList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridView1}); // // gridView1 // this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.gridColumn1, this.gridColumn2, this.gridColumn3, this.gridColumn4, this.gridColumn5, this.gridColumn6, this.gridColumn7, this.gridColumn8, this.gridColumn9, this.gridColumn10, this.gridColumn11}); this.gridView1.GridControl = this.GridCVList; this.gridView1.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always; this.gridView1.Name = "gridView1"; this.gridView1.OptionsBehavior.Editable = false; this.gridView1.OptionsCustomization.AllowColumnMoving = false; this.gridView1.OptionsCustomization.AllowFilter = false; this.gridView1.OptionsCustomization.AllowSort = false; this.gridView1.OptionsView.ColumnAutoWidth = false; this.gridView1.OptionsView.ShowGroupPanel = false; // // gridColumn1 // this.gridColumn1.Caption = "Reference No"; this.gridColumn1.FieldName = "nCaseID"; this.gridColumn1.Name = "gridColumn1"; this.gridColumn1.Visible = true; this.gridColumn1.VisibleIndex = 0; this.gridColumn1.Width = 80; // // gridColumn2 // this.gridColumn2.Caption = "Date"; this.gridColumn2.FieldName = "dtDate"; this.gridColumn2.Name = "gridColumn2"; this.gridColumn2.Visible = true; this.gridColumn2.VisibleIndex = 1; this.gridColumn2.Width = 80; // // gridColumn3 // this.gridColumn3.Caption = "Branch"; this.gridColumn3.FieldName = "strBranchCode"; this.gridColumn3.Name = "gridColumn3"; this.gridColumn3.Visible = true; this.gridColumn3.VisibleIndex = 2; this.gridColumn3.Width = 80; // // gridColumn4 // this.gridColumn4.Caption = "Department"; this.gridColumn4.FieldName = "Department"; this.gridColumn4.Name = "gridColumn4"; this.gridColumn4.Visible = true; this.gridColumn4.VisibleIndex = 3; this.gridColumn4.Width = 150; // // gridColumn5 // this.gridColumn5.Caption = "Type"; this.gridColumn5.FieldName = "Type"; this.gridColumn5.Name = "gridColumn5"; this.gridColumn5.Visible = true; this.gridColumn5.VisibleIndex = 4; this.gridColumn5.Width = 80; // // gridColumn6 // this.gridColumn6.Caption = "Member Id"; this.gridColumn6.FieldName = "strMembershipId"; this.gridColumn6.Name = "gridColumn6"; this.gridColumn6.Visible = true; this.gridColumn6.VisibleIndex = 5; this.gridColumn6.Width = 100; // // gridColumn7 // this.gridColumn7.Caption = "Member Name"; this.gridColumn7.FieldName = "strMemberName"; this.gridColumn7.Name = "gridColumn7"; this.gridColumn7.Visible = true; this.gridColumn7.VisibleIndex = 6; this.gridColumn7.Width = 120; // // gridColumn8 // this.gridColumn8.Caption = "Submitted By"; this.gridColumn8.FieldName = "SubmittedBy"; this.gridColumn8.Name = "gridColumn8"; this.gridColumn8.Visible = true; this.gridColumn8.VisibleIndex = 7; this.gridColumn8.Width = 120; // // gridColumn9 // this.gridColumn9.Caption = "Assigned To"; this.gridColumn9.FieldName = "AssignedTo"; this.gridColumn9.Name = "gridColumn9"; this.gridColumn9.Visible = true; this.gridColumn9.VisibleIndex = 8; this.gridColumn9.Width = 120; // // gridColumn10 // this.gridColumn10.Caption = "Update Date"; this.gridColumn10.FieldName = "dtLastEditDate"; this.gridColumn10.Name = "gridColumn10"; this.gridColumn10.Visible = true; this.gridColumn10.VisibleIndex = 9; this.gridColumn10.Width = 100; // // gridColumn11 // this.gridColumn11.Caption = "Status"; this.gridColumn11.FieldName = "Status"; this.gridColumn11.Name = "gridColumn11"; this.gridColumn11.Visible = true; this.gridColumn11.VisibleIndex = 10; this.gridColumn11.Width = 60; // // label2 // this.label2.BackColor = System.Drawing.Color.Transparent; this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label2.Location = new System.Drawing.Point(0, 32); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(176, 24); this.label2.TabIndex = 16; this.label2.Text = "Customer Voice - By Type"; this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // label3 // this.label3.BackColor = System.Drawing.Color.Transparent; this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label3.Location = new System.Drawing.Point(0, 240); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(200, 24); this.label3.TabIndex = 17; this.label3.Text = "Customer Voice - By Category"; this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // label4 // this.label4.BackColor = System.Drawing.Color.Transparent; this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label4.Location = new System.Drawing.Point(0, 456); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(216, 16); this.label4.TabIndex = 18; this.label4.Text = "Customer Voice - By Department"; this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // label5 // this.label5.BackColor = System.Drawing.Color.Transparent; this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label5.Location = new System.Drawing.Point(0, 656); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(328, 24); this.label5.TabIndex = 19; this.label5.Text = "Customer Voice - By Type and Category - Fitness"; this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // label6 // this.label6.BackColor = System.Drawing.Color.Transparent; this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label6.Location = new System.Drawing.Point(0, 864); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(304, 24); this.label6.TabIndex = 20; this.label6.Text = "Customer Voice - By Type and Category - Spa"; this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // label7 // this.label7.BackColor = System.Drawing.Color.Transparent; this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label7.Location = new System.Drawing.Point(0, 1072); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(312, 24); this.label7.TabIndex = 21; this.label7.Text = "Customer Voice - By Type and Category - Office"; this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // label8 // this.label8.BackColor = System.Drawing.Color.Transparent; this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label8.Location = new System.Drawing.Point(0, 1280); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(72, 24); this.label8.TabIndex = 22; this.label8.Text = "CV Listing"; this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // btnReset // this.btnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.btnReset.Appearance.Options.UseFont = true; this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.btnReset.Location = new System.Drawing.Point(240, 8); this.btnReset.LookAndFeel.UseDefaultLookAndFeel = false; this.btnReset.Name = "btnReset"; this.btnReset.Size = new System.Drawing.Size(72, 16); this.btnReset.TabIndex = 216; this.btnReset.Text = "Enquiry"; this.btnReset.Click += new System.EventHandler(this.btnReset_Click); // // RPCustomerVoice // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.AutoScroll = true; this.ClientSize = new System.Drawing.Size(736, 581); this.Controls.Add(this.btnReset); this.Controls.Add(this.label8); this.Controls.Add(this.label7); this.Controls.Add(this.label6); this.Controls.Add(this.label5); this.Controls.Add(this.label4); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.GridCVList); this.Controls.Add(this.GridCVOffice); this.Controls.Add(this.GridCVSpa); this.Controls.Add(this.GridCVTypeCat); this.Controls.Add(this.GridCVDepartment); this.Controls.Add(this.GridCVCategory); this.Controls.Add(this.DateFrom); this.Controls.Add(this.DateTo); this.Controls.Add(this.label1); this.Controls.Add(this.DateRangeTo); this.Controls.Add(this.GridCVType); this.DockPadding.Bottom = 10; this.Name = "RPCustomerVoice"; this.Text = "Customer Voice"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RPCustomerVoice_Load); ((System.ComponentModel.ISupportInitialize)(this.GridCVType)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVCategory)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVDepartment)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVTypeCat)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVSpa)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVOffice)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.GridCVList)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.label7 = new System.Windows.Forms.Label(); this.label6 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.luedtRPStaffSalesPerfmCategory = new DevExpress.XtraEditors.LookUpEdit(); this.label1 = new System.Windows.Forms.Label(); this.gridStaffPerformance = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.dateEdit1 = new DevExpress.XtraEditors.DateEdit(); this.dateEdit2 = new DevExpress.XtraEditors.DateEdit(); this.btnReset = new DevExpress.XtraEditors.SimpleButton(); this.btnSearch = new DevExpress.XtraEditors.SimpleButton(); this.gridControl1 = new DevExpress.XtraGrid.GridControl(); this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn(); ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmCategory.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridStaffPerformance)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties.VistaTimeProperties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties.VistaTimeProperties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit(); this.SuspendLayout(); // // label7 // this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label7.Location = new System.Drawing.Point(136, 0); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(24, 23); this.label7.TabIndex = 67; this.label7.Text = "To"; // // label6 // this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label6.Location = new System.Drawing.Point(168, 0); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(40, 23); this.label6.TabIndex = 64; this.label6.Text = "Date"; // // label3 // this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label3.Location = new System.Drawing.Point(0, 0); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(40, 23); this.label3.TabIndex = 61; this.label3.Text = "Date"; // // luedtRPStaffSalesPerfmCategory // this.luedtRPStaffSalesPerfmCategory.EditValue = ""; this.luedtRPStaffSalesPerfmCategory.Location = new System.Drawing.Point(360, 0); this.luedtRPStaffSalesPerfmCategory.Name = "luedtRPStaffSalesPerfmCategory"; this.luedtRPStaffSalesPerfmCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.luedtRPStaffSalesPerfmCategory.Size = new System.Drawing.Size(128, 20); this.luedtRPStaffSalesPerfmCategory.TabIndex = 60; this.luedtRPStaffSalesPerfmCategory.Visible = false; // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label1.Location = new System.Drawing.Point(296, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(64, 23); this.label1.TabIndex = 57; this.label1.Text = "Category"; this.label1.Visible = false; // // gridStaffPerformance // this.gridStaffPerformance.Cursor = System.Windows.Forms.Cursors.Default; this.gridStaffPerformance.Dock = System.Windows.Forms.DockStyle.Bottom; this.gridStaffPerformance.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField3, this.pivotGridField4 }); this.gridStaffPerformance.Location = new System.Drawing.Point(0, 452); this.gridStaffPerformance.Name = "gridStaffPerformance"; this.gridStaffPerformance.OptionsCustomization.AllowDrag = false; this.gridStaffPerformance.OptionsCustomization.AllowExpand = false; this.gridStaffPerformance.OptionsCustomization.AllowFilter = false; this.gridStaffPerformance.OptionsCustomization.AllowSort = false; this.gridStaffPerformance.OptionsView.ShowDataHeaders = false; this.gridStaffPerformance.OptionsView.ShowFilterHeaders = false; this.gridStaffPerformance.Size = new System.Drawing.Size(976, 10); this.gridStaffPerformance.TabIndex = 56; this.gridStaffPerformance.Visible = false; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField1.AreaIndex = 0; this.pivotGridField1.Caption = "Date"; this.pivotGridField1.CellFormat.FormatString = "d/MM/yyyy"; this.pivotGridField1.CellFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.pivotGridField1.FieldName = "dtDate"; this.pivotGridField1.GroupInterval = DevExpress.XtraPivotGrid.PivotGroupInterval.Date; this.pivotGridField1.Name = "pivotGridField1"; this.pivotGridField1.UnboundFieldName = "pivotGridField1"; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField3.AreaIndex = 0; this.pivotGridField3.Caption = "Branch"; this.pivotGridField3.FieldName = "strBranchCode"; this.pivotGridField3.Name = "pivotGridField3"; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField4.AreaIndex = 0; this.pivotGridField4.Caption = "Amount"; this.pivotGridField4.FieldName = "nQuantity"; this.pivotGridField4.Name = "pivotGridField4"; // // dateEdit1 // this.dateEdit1.EditValue = null; this.dateEdit1.Location = new System.Drawing.Point(40, 0); this.dateEdit1.Name = "dateEdit1"; this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.dateEdit1.Properties.DisplayFormat.FormatString = "dd/MM/yyyy"; this.dateEdit1.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.dateEdit1.Properties.EditFormat.FormatString = "dd/MM/yyyy"; this.dateEdit1.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.dateEdit1.Properties.Mask.EditMask = "dd/MM/yyyy"; this.dateEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret; this.dateEdit1.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton() }); this.dateEdit1.Size = new System.Drawing.Size(88, 20); this.dateEdit1.TabIndex = 68; // // dateEdit2 // this.dateEdit2.EditValue = null; this.dateEdit2.Location = new System.Drawing.Point(208, 0); this.dateEdit2.Name = "dateEdit2"; this.dateEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.dateEdit2.Properties.DisplayFormat.FormatString = "dd/MM/yyyy"; this.dateEdit2.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.dateEdit2.Properties.EditFormat.FormatString = "dd/MM/yyyy"; this.dateEdit2.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom; this.dateEdit2.Properties.Mask.EditMask = "dd/MM/yyyy"; this.dateEdit2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret; this.dateEdit2.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton() }); this.dateEdit2.Size = new System.Drawing.Size(80, 20); this.dateEdit2.TabIndex = 69; // // btnReset // this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.btnReset.Location = new System.Drawing.Point(560, 0); this.btnReset.Name = "btnReset"; this.btnReset.Size = new System.Drawing.Size(56, 20); this.btnReset.TabIndex = 71; this.btnReset.Text = "Reset"; this.btnReset.Visible = false; this.btnReset.Click += new System.EventHandler(this.btnReset_Click); // // btnSearch // this.btnSearch.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple; this.btnSearch.Location = new System.Drawing.Point(496, 0); this.btnSearch.Name = "btnSearch"; this.btnSearch.Size = new System.Drawing.Size(56, 20); this.btnSearch.TabIndex = 70; this.btnSearch.Text = "Search"; this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click); // // gridControl1 // this.gridControl1.Location = new System.Drawing.Point(3, 41); this.gridControl1.MainView = this.gridView1; this.gridControl1.Name = "gridControl1"; this.gridControl1.Size = new System.Drawing.Size(973, 405); this.gridControl1.TabIndex = 72; this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridView1, this.gridView2 }); // // gridView1 // this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.gridColumn1, this.gridColumn2, this.gridColumn3, this.gridColumn4, this.gridColumn5, this.gridColumn6, this.gridColumn7 }); this.gridView1.GridControl = this.gridControl1; this.gridView1.Name = "gridView1"; // // gridView2 // this.gridView2.GridControl = this.gridControl1; this.gridView2.Name = "gridView2"; // // gridColumn1 // this.gridColumn1.Caption = "Date"; this.gridColumn1.FieldName = "dtSignupDate"; this.gridColumn1.Name = "gridColumn1"; this.gridColumn1.Visible = true; this.gridColumn1.VisibleIndex = 0; // // gridColumn2 // this.gridColumn2.Caption = "Branch"; this.gridColumn2.FieldName = "strBranchCode"; this.gridColumn2.Name = "gridColumn2"; this.gridColumn2.Visible = true; this.gridColumn2.VisibleIndex = 1; // // gridColumn3 // this.gridColumn3.Caption = "Introducee"; this.gridColumn3.FieldName = "introducee"; this.gridColumn3.Name = "gridColumn3"; this.gridColumn3.Visible = true; this.gridColumn3.VisibleIndex = 2; // // gridColumn4 // this.gridColumn4.Caption = "Introducer"; this.gridColumn4.FieldName = "introducer"; this.gridColumn4.Name = "gridColumn4"; this.gridColumn4.Visible = true; this.gridColumn4.VisibleIndex = 3; // // gridColumn5 // this.gridColumn5.Caption = "Freebie"; this.gridColumn5.FieldName = "freebie"; this.gridColumn5.Name = "gridColumn5"; this.gridColumn5.Visible = true; this.gridColumn5.VisibleIndex = 4; // // gridColumn6 // this.gridColumn6.Caption = "Points"; this.gridColumn6.FieldName = "points"; this.gridColumn6.Name = "gridColumn6"; this.gridColumn6.Visible = true; this.gridColumn6.VisibleIndex = 5; // // gridColumn7 // this.gridColumn7.Caption = "Staff"; this.gridColumn7.FieldName = "nEmployeeID"; this.gridColumn7.Name = "gridColumn7"; this.gridColumn7.Visible = true; this.gridColumn7.VisibleIndex = 6; // // RPNewMember // this.ClientSize = new System.Drawing.Size(976, 462); this.Controls.Add(this.gridControl1); this.Controls.Add(this.btnReset); this.Controls.Add(this.btnSearch); this.Controls.Add(this.dateEdit2); this.Controls.Add(this.dateEdit1); this.Controls.Add(this.label7); this.Controls.Add(this.label6); this.Controls.Add(this.label3); this.Controls.Add(this.luedtRPStaffSalesPerfmCategory); this.Controls.Add(this.label1); this.Controls.Add(this.gridStaffPerformance); this.Name = "RPNewMember"; this.Text = "New Member SignUp"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RPNewMember_Load); ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmCategory.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridStaffPerformance)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties.VistaTimeProperties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties.VistaTimeProperties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.GridRPInstructor = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.label1 = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.GridRPInstructor)).BeginInit(); this.SuspendLayout(); // // GridRPInstructor // this.GridRPInstructor.Cursor = System.Windows.Forms.Cursors.Default; this.GridRPInstructor.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField3, this.pivotGridField4}); this.GridRPInstructor.Location = new System.Drawing.Point(8, 32); this.GridRPInstructor.Name = "GridRPInstructor"; this.GridRPInstructor.OptionsCustomization.AllowDrag = false; this.GridRPInstructor.OptionsCustomization.AllowExpand = false; this.GridRPInstructor.OptionsCustomization.AllowFilter = false; this.GridRPInstructor.OptionsCustomization.AllowSort = false; this.GridRPInstructor.OptionsView.ShowDataHeaders = false; this.GridRPInstructor.OptionsView.ShowFilterHeaders = false; this.GridRPInstructor.Size = new System.Drawing.Size(760, 360); this.GridRPInstructor.TabIndex = 0; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField1.AreaIndex = 0; this.pivotGridField1.Caption = "Date"; this.pivotGridField1.FieldName = "dtDate"; this.pivotGridField1.GroupInterval = DevExpress.XtraPivotGrid.PivotGroupInterval.DateDayOfWeek; this.pivotGridField1.Name = "pivotGridField1"; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField2.AreaIndex = 1; this.pivotGridField2.Caption = "Time"; this.pivotGridField2.FieldName = "dtStartTime"; this.pivotGridField2.Name = "pivotGridField2"; this.pivotGridField2.ValueFormat.FormatString = "HH:mm:ss"; this.pivotGridField2.ValueFormat.FormatType = DevExpress.Utils.FormatType.DateTime; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField3.AreaIndex = 0; this.pivotGridField3.FieldName = "dtDate"; this.pivotGridField3.GroupInterval = DevExpress.XtraPivotGrid.PivotGroupInterval.DateWeekOfMonth; this.pivotGridField3.Name = "pivotGridField3"; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField4.AreaIndex = 0; this.pivotGridField4.Caption = "Fees"; this.pivotGridField4.FieldName = "mInstructorFees"; this.pivotGridField4.Name = "pivotGridField4"; // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label1.Location = new System.Drawing.Point(8, 8); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(160, 23); this.label1.TabIndex = 1; this.label1.Text = "Instructor Details"; // // RPInstructorDetails // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(784, 461); this.Controls.Add(this.label1); this.Controls.Add(this.GridRPInstructor); this.Name = "RPInstructorDetails"; this.Text = "Instructor Details"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RPInstructorDetails_Load); ((System.ComponentModel.ISupportInitialize)(this.GridRPInstructor)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { DevExpress.XtraPivotGrid.PivotGridCustomTotal pivotGridCustomTotal1 = new DevExpress.XtraPivotGrid.PivotGridCustomTotal(); DevExpress.XtraPivotGrid.PivotGridGroup pivotGridGroup1 = new DevExpress.XtraPivotGrid.PivotGridGroup(); this.pivotGridField6 = new DevExpress.XtraPivotGrid.PivotGridField(); this.GridInstructorFee = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField5 = new DevExpress.XtraPivotGrid.PivotGridField(); this.label1 = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.GridInstructorFee)).BeginInit(); this.SuspendLayout(); // // pivotGridField6 // this.pivotGridField6.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField6.AreaIndex = 2; this.pivotGridField6.Caption = "Standing Inst. Fees"; this.pivotGridField6.CustomTotals.AddRange(new DevExpress.XtraPivotGrid.PivotGridCustomTotal[] { pivotGridCustomTotal1}); this.pivotGridField6.FieldName = "mStandinInstructorFees"; this.pivotGridField6.Name = "pivotGridField6"; this.pivotGridField6.TotalsVisibility = DevExpress.XtraPivotGrid.PivotTotalsVisibility.CustomTotals; this.pivotGridField6.Width = 110; // // GridInstructorFee // this.GridInstructorFee.Cursor = System.Windows.Forms.Cursors.Default; this.GridInstructorFee.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField3, this.pivotGridField4, this.pivotGridField5, this.pivotGridField6}); pivotGridGroup1.Fields.Add(this.pivotGridField6); this.GridInstructorFee.Groups.AddRange(new DevExpress.XtraPivotGrid.PivotGridGroup[] { pivotGridGroup1}); this.GridInstructorFee.Location = new System.Drawing.Point(8, 24); this.GridInstructorFee.Name = "GridInstructorFee"; this.GridInstructorFee.OptionsCustomization.AllowDrag = false; this.GridInstructorFee.OptionsCustomization.AllowExpand = false; this.GridInstructorFee.OptionsCustomization.AllowFilter = false; this.GridInstructorFee.OptionsCustomization.AllowSort = false; this.GridInstructorFee.OptionsView.ShowDataHeaders = false; this.GridInstructorFee.OptionsView.ShowFilterHeaders = false; this.GridInstructorFee.OptionsView.ShowRowTotals = false; this.GridInstructorFee.OptionsView.ShowTotalsForSingleValues = true; this.GridInstructorFee.Size = new System.Drawing.Size(760, 376); this.GridInstructorFee.TabIndex = 0; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField1.AreaIndex = 1; this.pivotGridField1.Caption = "Instructor Id"; this.pivotGridField1.FieldName = "InstructorId"; this.pivotGridField1.Name = "pivotGridField1"; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField2.AreaIndex = 0; this.pivotGridField2.Caption = "Instructor Name"; this.pivotGridField2.FieldName = "strEmployeeName"; this.pivotGridField2.Name = "pivotGridField2"; this.pivotGridField2.Width = 150; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField3.AreaIndex = 0; this.pivotGridField3.Caption = "Branch"; this.pivotGridField3.FieldName = "strBranchCode"; this.pivotGridField3.Name = "pivotGridField3"; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField4.AreaIndex = 1; this.pivotGridField4.Caption = "# of Class"; this.pivotGridField4.FieldName = "strBranchCode"; this.pivotGridField4.Name = "pivotGridField4"; this.pivotGridField4.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count; this.pivotGridField4.Width = 80; // // pivotGridField5 // this.pivotGridField5.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField5.AreaIndex = 0; this.pivotGridField5.Caption = "Total Fee"; this.pivotGridField5.FieldName = "mInstructorFees"; this.pivotGridField5.Name = "pivotGridField5"; this.pivotGridField5.Width = 80; // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label1.Location = new System.Drawing.Point(8, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(160, 23); this.label1.TabIndex = 2; this.label1.Text = "Instructor Fees"; // // RPInstructorFees // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(792, 461); this.Controls.Add(this.label1); this.Controls.Add(this.GridInstructorFee); this.Name = "RPInstructorFees"; this.Text = "Instructors Fee Summary Report"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.RPInstructorFees_Load); ((System.ComponentModel.ISupportInitialize)(this.GridInstructorFee)).EndInit(); this.ResumeLayout(false); }
/// <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(); this.MtMSalesGrid = new DevExpress.XtraPivotGrid.PivotGridControl(); this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField(); this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField(); this.label63 = new System.Windows.Forms.Label(); this.cmbCategory = new DevExpress.XtraEditors.ImageComboBoxEdit(); this.PRINT1 = new DevExpress.XtraEditors.HyperLinkEdit(); this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components); this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components); ((System.ComponentModel.ISupportInitialize)(this.MtMSalesGrid)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit(); this.SuspendLayout(); // // MtMSalesGrid // this.MtMSalesGrid.Cursor = System.Windows.Forms.Cursors.Default; this.MtMSalesGrid.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] { this.pivotGridField1, this.pivotGridField2, this.pivotGridField3, this.pivotGridField4 }); this.MtMSalesGrid.Location = new System.Drawing.Point(8, 40); this.MtMSalesGrid.Name = "MtMSalesGrid"; this.MtMSalesGrid.OptionsCustomization.AllowDrag = false; this.MtMSalesGrid.OptionsCustomization.AllowExpand = false; this.MtMSalesGrid.OptionsCustomization.AllowSort = false; this.MtMSalesGrid.OptionsView.ShowDataHeaders = false; this.MtMSalesGrid.OptionsView.ShowFilterHeaders = false; this.MtMSalesGrid.Size = new System.Drawing.Size(960, 424); this.MtMSalesGrid.TabIndex = 0; // // pivotGridField1 // this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea; this.pivotGridField1.AreaIndex = 0; this.pivotGridField1.Caption = "Year"; this.pivotGridField1.FieldName = "Year"; this.pivotGridField1.Name = "pivotGridField1"; this.pivotGridField1.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False; this.pivotGridField1.Options.AllowSort = DevExpress.Utils.DefaultBoolean.False; // // pivotGridField2 // this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField2.AreaIndex = 1; this.pivotGridField2.Caption = "Month"; this.pivotGridField2.FieldName = "Month"; this.pivotGridField2.Name = "pivotGridField2"; // // pivotGridField3 // this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea; this.pivotGridField3.AreaIndex = 0; this.pivotGridField3.EmptyValueText = "0"; this.pivotGridField3.FieldName = "TotalAmount"; this.pivotGridField3.Name = "pivotGridField3"; // // pivotGridField4 // this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea; this.pivotGridField4.AreaIndex = 0; this.pivotGridField4.Caption = "Category"; this.pivotGridField4.FieldName = "strDescription"; this.pivotGridField4.Name = "pivotGridField4"; // // label63 // this.label63.BackColor = System.Drawing.Color.Transparent; this.label63.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.label63.Location = new System.Drawing.Point(16, 8); this.label63.Name = "label63"; this.label63.Size = new System.Drawing.Size(100, 16); this.label63.TabIndex = 38; this.label63.Text = "Category"; // // cmbCategory // this.cmbCategory.EditValue = "cbGIROStatus"; this.cmbCategory.Location = new System.Drawing.Point(96, 8); this.cmbCategory.Name = "cmbCategory"; // // cmbCategory.Properties // this.cmbCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.cmbCategory.Properties.Items.AddRange(new object[] { new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Active", 1, -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Inactive", 0, -1) }); this.cmbCategory.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin; this.cmbCategory.Properties.LookAndFeel.UseDefaultLookAndFeel = false; this.cmbCategory.Size = new System.Drawing.Size(176, 20); this.cmbCategory.TabIndex = 39; this.cmbCategory.SelectedValueChanged += new System.EventHandler(this.cmbCategory_SelectedValueChanged); // // PRINT1 // this.PRINT1.EditValue = "PRINT"; this.PRINT1.Location = new System.Drawing.Point(288, 8); this.PRINT1.Name = "PRINT1"; // // PRINT1.Properties // this.PRINT1.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control; this.PRINT1.Properties.Appearance.Options.UseBackColor = true; this.PRINT1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.PRINT1.Size = new System.Drawing.Size(40, 18); this.PRINT1.TabIndex = 140; this.PRINT1.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT1_OpenLink); // // printingSystem1 // this.printingSystem1.Links.AddRange(new object[] { this.printableComponentLink1 }); // // printableComponentLink1 // this.printableComponentLink1.Component = this.MtMSalesGrid; this.printableComponentLink1.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(new DevExpress.XtraPrinting.PageHeaderArea(new string[] { "Month To Month Sales Report", "", "[Date Printed] [Time Printed]" }, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near), new DevExpress.XtraPrinting.PageFooterArea(new string[] { "", "", "[Page # of Pages #]" }, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))), DevExpress.XtraPrinting.BrickAlignment.Near)); this.printableComponentLink1.PrintingSystem = this.printingSystem1; this.printableComponentLink1.CreateDetailHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink1_CreateDetailHeaderArea); // // RPMtMSales // this.AutoScale = false; this.AutoScaleBaseSize = new System.Drawing.Size(5, 14); this.ClientSize = new System.Drawing.Size(874, 470); this.Controls.Add(this.PRINT1); this.Controls.Add(this.cmbCategory); this.Controls.Add(this.label63); this.Controls.Add(this.MtMSalesGrid); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; this.Name = "RPMtMSales"; this.Text = "Month to Month Sales"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.XtraForm1_Load); ((System.ComponentModel.ISupportInitialize)(this.MtMSalesGrid)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit(); this.ResumeLayout(false); }