Fixed a bug in the row parsing engine related to ad special rows. Move all data from the old format to the new format. Updated the main form's UI.
This commit is contained in:
+63
-63
@@ -43,6 +43,8 @@
|
||||
this.helpMainMenu = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.showHideConsoleHelpMainMenu = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.dbVersionHelpMainMenu = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.debugToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.debugToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.mainTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
|
||||
this.commentMainTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
|
||||
this.profitAnalysisMainGroupBox = new System.Windows.Forms.GroupBox();
|
||||
@@ -100,8 +102,6 @@
|
||||
this.grossProfitEstimatedWeeklyDeptmartmentExpenseLabel = new System.Windows.Forms.Label();
|
||||
this.perfectGrossProfitLabel = new System.Windows.Forms.Label();
|
||||
this.grossProfitDollarGrossProfitLabel = new System.Windows.Forms.Label();
|
||||
this.debugToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.debugToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.mainMenu.SuspendLayout();
|
||||
this.mainTableLayoutPanel.SuspendLayout();
|
||||
this.commentMainTableLayoutPanel.SuspendLayout();
|
||||
@@ -127,7 +127,7 @@
|
||||
//
|
||||
// printPreviewButton
|
||||
//
|
||||
this.printPreviewButton.Location = new System.Drawing.Point(313, 277);
|
||||
this.printPreviewButton.Location = new System.Drawing.Point(171, 273);
|
||||
this.printPreviewButton.Name = "printPreviewButton";
|
||||
this.printPreviewButton.Size = new System.Drawing.Size(138, 49);
|
||||
this.printPreviewButton.TabIndex = 4;
|
||||
@@ -248,11 +248,27 @@
|
||||
this.dbVersionHelpMainMenu.Text = "Get &Database Version";
|
||||
this.dbVersionHelpMainMenu.Click += new System.EventHandler(this.dbVersionHelpMainMenu_Click);
|
||||
//
|
||||
// debugToolStripMenuItem
|
||||
//
|
||||
this.debugToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.debugToolStripMenuItem1});
|
||||
this.debugToolStripMenuItem.Name = "debugToolStripMenuItem";
|
||||
this.debugToolStripMenuItem.Size = new System.Drawing.Size(87, 34);
|
||||
this.debugToolStripMenuItem.Text = "Debug";
|
||||
this.debugToolStripMenuItem.Visible = false;
|
||||
//
|
||||
// debugToolStripMenuItem1
|
||||
//
|
||||
this.debugToolStripMenuItem1.Name = "debugToolStripMenuItem1";
|
||||
this.debugToolStripMenuItem1.Size = new System.Drawing.Size(240, 34);
|
||||
this.debugToolStripMenuItem1.Text = "Debug";
|
||||
this.debugToolStripMenuItem1.Click += new System.EventHandler(this.debugToolStripMenuItem1_Click);
|
||||
//
|
||||
// mainTableLayoutPanel
|
||||
//
|
||||
this.mainTableLayoutPanel.ColumnCount = 2;
|
||||
this.mainTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 75F));
|
||||
this.mainTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
|
||||
this.mainTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 80F));
|
||||
this.mainTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20F));
|
||||
this.mainTableLayoutPanel.Controls.Add(this.commentMainTableLayoutPanel, 0, 2);
|
||||
this.mainTableLayoutPanel.Controls.Add(this.mainMenu, 0, 0);
|
||||
this.mainTableLayoutPanel.Controls.Add(this.mainViewTabControl, 0, 1);
|
||||
@@ -272,10 +288,10 @@
|
||||
// commentMainTableLayoutPanel
|
||||
//
|
||||
this.commentMainTableLayoutPanel.ColumnCount = 4;
|
||||
this.commentMainTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 355F));
|
||||
this.commentMainTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 27.5F));
|
||||
this.commentMainTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 27.5F));
|
||||
this.commentMainTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 45F));
|
||||
this.commentMainTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 365F));
|
||||
this.commentMainTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30F));
|
||||
this.commentMainTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30F));
|
||||
this.commentMainTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 40F));
|
||||
this.commentMainTableLayoutPanel.Controls.Add(this.profitAnalysisMainGroupBox, 3, 0);
|
||||
this.commentMainTableLayoutPanel.Controls.Add(this.weeklySalesGroupBox, 1, 0);
|
||||
this.commentMainTableLayoutPanel.Controls.Add(this.taxableGroupBox, 2, 0);
|
||||
@@ -286,7 +302,7 @@
|
||||
this.commentMainTableLayoutPanel.Name = "commentMainTableLayoutPanel";
|
||||
this.commentMainTableLayoutPanel.RowCount = 1;
|
||||
this.commentMainTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
||||
this.commentMainTableLayoutPanel.Size = new System.Drawing.Size(1375, 329);
|
||||
this.commentMainTableLayoutPanel.Size = new System.Drawing.Size(1467, 329);
|
||||
this.commentMainTableLayoutPanel.TabIndex = 5;
|
||||
//
|
||||
// profitAnalysisMainGroupBox
|
||||
@@ -300,9 +316,9 @@
|
||||
this.profitAnalysisMainGroupBox.Controls.Add(this.remainingSalesLabel);
|
||||
this.profitAnalysisMainGroupBox.Controls.Add(this.totalProfitFromAdItemsLabel);
|
||||
this.profitAnalysisMainGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.profitAnalysisMainGroupBox.Location = new System.Drawing.Point(918, 3);
|
||||
this.profitAnalysisMainGroupBox.Location = new System.Drawing.Point(1028, 3);
|
||||
this.profitAnalysisMainGroupBox.Name = "profitAnalysisMainGroupBox";
|
||||
this.profitAnalysisMainGroupBox.Size = new System.Drawing.Size(454, 323);
|
||||
this.profitAnalysisMainGroupBox.Size = new System.Drawing.Size(436, 323);
|
||||
this.profitAnalysisMainGroupBox.TabIndex = 2;
|
||||
this.profitAnalysisMainGroupBox.TabStop = false;
|
||||
this.profitAnalysisMainGroupBox.Text = "Profit Analysis";
|
||||
@@ -332,7 +348,7 @@
|
||||
// departmentSalesLabel
|
||||
//
|
||||
this.departmentSalesLabel.AutoSize = true;
|
||||
this.departmentSalesLabel.Location = new System.Drawing.Point(11, 61);
|
||||
this.departmentSalesLabel.Location = new System.Drawing.Point(11, 64);
|
||||
this.departmentSalesLabel.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
|
||||
this.departmentSalesLabel.Name = "departmentSalesLabel";
|
||||
this.departmentSalesLabel.Size = new System.Drawing.Size(179, 25);
|
||||
@@ -342,7 +358,7 @@
|
||||
// totalProfitReturnLabel
|
||||
//
|
||||
this.totalProfitReturnLabel.AutoSize = true;
|
||||
this.totalProfitReturnLabel.Location = new System.Drawing.Point(11, 221);
|
||||
this.totalProfitReturnLabel.Location = new System.Drawing.Point(11, 279);
|
||||
this.totalProfitReturnLabel.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
|
||||
this.totalProfitReturnLabel.Name = "totalProfitReturnLabel";
|
||||
this.totalProfitReturnLabel.Size = new System.Drawing.Size(178, 25);
|
||||
@@ -352,7 +368,7 @@
|
||||
// salesProducedLabel
|
||||
//
|
||||
this.salesProducedLabel.AutoSize = true;
|
||||
this.salesProducedLabel.Location = new System.Drawing.Point(11, 93);
|
||||
this.salesProducedLabel.Location = new System.Drawing.Point(11, 97);
|
||||
this.salesProducedLabel.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
|
||||
this.salesProducedLabel.Name = "salesProducedLabel";
|
||||
this.salesProducedLabel.Size = new System.Drawing.Size(300, 25);
|
||||
@@ -362,17 +378,17 @@
|
||||
// totalProfitReturnFromRemaingLabel
|
||||
//
|
||||
this.totalProfitReturnFromRemaingLabel.AutoSize = true;
|
||||
this.totalProfitReturnFromRemaingLabel.Location = new System.Drawing.Point(11, 189);
|
||||
this.totalProfitReturnFromRemaingLabel.Location = new System.Drawing.Point(11, 221);
|
||||
this.totalProfitReturnFromRemaingLabel.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
|
||||
this.totalProfitReturnFromRemaingLabel.Name = "totalProfitReturnFromRemaingLabel";
|
||||
this.totalProfitReturnFromRemaingLabel.Size = new System.Drawing.Size(380, 25);
|
||||
this.totalProfitReturnFromRemaingLabel.Size = new System.Drawing.Size(220, 50);
|
||||
this.totalProfitReturnFromRemaingLabel.TabIndex = 4;
|
||||
this.totalProfitReturnFromRemaingLabel.Text = "Total Profit Return From Remaining Sales: ";
|
||||
this.totalProfitReturnFromRemaingLabel.Text = "Total Profit Return \r\nFrom Remaining Sales: ";
|
||||
//
|
||||
// remainingSalesLabel
|
||||
//
|
||||
this.remainingSalesLabel.AutoSize = true;
|
||||
this.remainingSalesLabel.Location = new System.Drawing.Point(11, 125);
|
||||
this.remainingSalesLabel.Location = new System.Drawing.Point(11, 130);
|
||||
this.remainingSalesLabel.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
|
||||
this.remainingSalesLabel.Name = "remainingSalesLabel";
|
||||
this.remainingSalesLabel.Size = new System.Drawing.Size(170, 25);
|
||||
@@ -382,12 +398,12 @@
|
||||
// totalProfitFromAdItemsLabel
|
||||
//
|
||||
this.totalProfitFromAdItemsLabel.AutoSize = true;
|
||||
this.totalProfitFromAdItemsLabel.Location = new System.Drawing.Point(11, 157);
|
||||
this.totalProfitFromAdItemsLabel.Location = new System.Drawing.Point(11, 163);
|
||||
this.totalProfitFromAdItemsLabel.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
|
||||
this.totalProfitFromAdItemsLabel.Name = "totalProfitFromAdItemsLabel";
|
||||
this.totalProfitFromAdItemsLabel.Size = new System.Drawing.Size(342, 25);
|
||||
this.totalProfitFromAdItemsLabel.Size = new System.Drawing.Size(182, 50);
|
||||
this.totalProfitFromAdItemsLabel.TabIndex = 3;
|
||||
this.totalProfitFromAdItemsLabel.Text = "Total Profit Return From Ad Items (B): ";
|
||||
this.totalProfitFromAdItemsLabel.Text = "Total Profit Return \r\nFrom Ad Items (B): ";
|
||||
//
|
||||
// weeklySalesGroupBox
|
||||
//
|
||||
@@ -400,9 +416,9 @@
|
||||
this.weeklySalesGroupBox.Controls.Add(this.wednesdayWeeklySalesLabel);
|
||||
this.weeklySalesGroupBox.Controls.Add(this.sundayWeeklySalesLabel);
|
||||
this.weeklySalesGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.weeklySalesGroupBox.Location = new System.Drawing.Point(358, 3);
|
||||
this.weeklySalesGroupBox.Location = new System.Drawing.Point(368, 3);
|
||||
this.weeklySalesGroupBox.Name = "weeklySalesGroupBox";
|
||||
this.weeklySalesGroupBox.Size = new System.Drawing.Size(274, 323);
|
||||
this.weeklySalesGroupBox.Size = new System.Drawing.Size(324, 323);
|
||||
this.weeklySalesGroupBox.TabIndex = 3;
|
||||
this.weeklySalesGroupBox.TabStop = false;
|
||||
this.weeklySalesGroupBox.Text = "Weekly Sales";
|
||||
@@ -490,9 +506,9 @@
|
||||
this.taxableGroupBox.Controls.Add(this.wednesdayTaxableLabel);
|
||||
this.taxableGroupBox.Controls.Add(this.sundayTaxableLabel);
|
||||
this.taxableGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.taxableGroupBox.Location = new System.Drawing.Point(638, 3);
|
||||
this.taxableGroupBox.Location = new System.Drawing.Point(698, 3);
|
||||
this.taxableGroupBox.Name = "taxableGroupBox";
|
||||
this.taxableGroupBox.Size = new System.Drawing.Size(274, 323);
|
||||
this.taxableGroupBox.Size = new System.Drawing.Size(324, 323);
|
||||
this.taxableGroupBox.TabIndex = 4;
|
||||
this.taxableGroupBox.TabStop = false;
|
||||
this.taxableGroupBox.Text = "Taxable";
|
||||
@@ -575,7 +591,7 @@
|
||||
this.dateTimeGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.dateTimeGroupBox.Location = new System.Drawing.Point(3, 3);
|
||||
this.dateTimeGroupBox.Name = "dateTimeGroupBox";
|
||||
this.dateTimeGroupBox.Size = new System.Drawing.Size(349, 323);
|
||||
this.dateTimeGroupBox.Size = new System.Drawing.Size(359, 323);
|
||||
this.dateTimeGroupBox.TabIndex = 5;
|
||||
this.dateTimeGroupBox.TabStop = false;
|
||||
//
|
||||
@@ -598,7 +614,7 @@
|
||||
this.mainViewTabControl.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
|
||||
this.mainViewTabControl.Name = "mainViewTabControl";
|
||||
this.mainViewTabControl.SelectedIndex = 0;
|
||||
this.mainViewTabControl.Size = new System.Drawing.Size(1375, 499);
|
||||
this.mainViewTabControl.Size = new System.Drawing.Size(1467, 499);
|
||||
this.mainViewTabControl.TabIndex = 3;
|
||||
//
|
||||
// projectionTab
|
||||
@@ -608,7 +624,7 @@
|
||||
this.projectionTab.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
|
||||
this.projectionTab.Name = "projectionTab";
|
||||
this.projectionTab.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
|
||||
this.projectionTab.Size = new System.Drawing.Size(1367, 462);
|
||||
this.projectionTab.Size = new System.Drawing.Size(1459, 462);
|
||||
this.projectionTab.TabIndex = 0;
|
||||
this.projectionTab.Text = "Projections";
|
||||
this.projectionTab.UseVisualStyleBackColor = true;
|
||||
@@ -630,7 +646,7 @@
|
||||
this.projectionsDataGridView.RowHeadersVisible = false;
|
||||
this.projectionsDataGridView.ShowCellErrors = false;
|
||||
this.projectionsDataGridView.ShowRowErrors = false;
|
||||
this.projectionsDataGridView.Size = new System.Drawing.Size(1357, 450);
|
||||
this.projectionsDataGridView.Size = new System.Drawing.Size(1449, 450);
|
||||
this.projectionsDataGridView.TabIndex = 0;
|
||||
//
|
||||
// inventoryTabPage
|
||||
@@ -639,7 +655,7 @@
|
||||
this.inventoryTabPage.Location = new System.Drawing.Point(4, 33);
|
||||
this.inventoryTabPage.Name = "inventoryTabPage";
|
||||
this.inventoryTabPage.Padding = new System.Windows.Forms.Padding(3);
|
||||
this.inventoryTabPage.Size = new System.Drawing.Size(1367, 462);
|
||||
this.inventoryTabPage.Size = new System.Drawing.Size(1521, 462);
|
||||
this.inventoryTabPage.TabIndex = 4;
|
||||
this.inventoryTabPage.Text = "Inventory";
|
||||
this.inventoryTabPage.UseVisualStyleBackColor = true;
|
||||
@@ -658,7 +674,7 @@
|
||||
this.inventoryDataGridView.RowHeadersVisible = false;
|
||||
this.inventoryDataGridView.RowTemplate.Height = 28;
|
||||
this.inventoryDataGridView.ShowRowErrors = false;
|
||||
this.inventoryDataGridView.Size = new System.Drawing.Size(1361, 456);
|
||||
this.inventoryDataGridView.Size = new System.Drawing.Size(1515, 456);
|
||||
this.inventoryDataGridView.TabIndex = 0;
|
||||
//
|
||||
// actualSalesTab
|
||||
@@ -667,7 +683,7 @@
|
||||
this.actualSalesTab.Location = new System.Drawing.Point(4, 33);
|
||||
this.actualSalesTab.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
|
||||
this.actualSalesTab.Name = "actualSalesTab";
|
||||
this.actualSalesTab.Size = new System.Drawing.Size(1367, 462);
|
||||
this.actualSalesTab.Size = new System.Drawing.Size(1521, 462);
|
||||
this.actualSalesTab.TabIndex = 2;
|
||||
this.actualSalesTab.Text = "Actual Sales";
|
||||
this.actualSalesTab.UseVisualStyleBackColor = true;
|
||||
@@ -684,7 +700,7 @@
|
||||
this.actualSalesMainLayoutPanel.RowCount = 1;
|
||||
this.actualSalesMainLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
||||
this.actualSalesMainLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 462F));
|
||||
this.actualSalesMainLayoutPanel.Size = new System.Drawing.Size(1367, 462);
|
||||
this.actualSalesMainLayoutPanel.Size = new System.Drawing.Size(1521, 462);
|
||||
this.actualSalesMainLayoutPanel.TabIndex = 0;
|
||||
//
|
||||
// actualSalesDataGridView
|
||||
@@ -704,7 +720,7 @@
|
||||
this.actualSalesDataGridView.RowHeadersVisible = false;
|
||||
this.actualSalesDataGridView.ShowCellErrors = false;
|
||||
this.actualSalesDataGridView.ShowRowErrors = false;
|
||||
this.actualSalesDataGridView.Size = new System.Drawing.Size(1357, 450);
|
||||
this.actualSalesDataGridView.Size = new System.Drawing.Size(1511, 450);
|
||||
this.actualSalesDataGridView.TabIndex = 1;
|
||||
//
|
||||
// suppliersTabPage
|
||||
@@ -714,7 +730,7 @@
|
||||
this.suppliersTabPage.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
|
||||
this.suppliersTabPage.Name = "suppliersTabPage";
|
||||
this.suppliersTabPage.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
|
||||
this.suppliersTabPage.Size = new System.Drawing.Size(1367, 462);
|
||||
this.suppliersTabPage.Size = new System.Drawing.Size(1521, 462);
|
||||
this.suppliersTabPage.TabIndex = 1;
|
||||
this.suppliersTabPage.Text = "Invoices";
|
||||
this.suppliersTabPage.UseVisualStyleBackColor = true;
|
||||
@@ -734,7 +750,7 @@
|
||||
this.invoicesDataGridView.Name = "invoicesDataGridView";
|
||||
this.invoicesDataGridView.ReadOnly = true;
|
||||
this.invoicesDataGridView.RowHeadersVisible = false;
|
||||
this.invoicesDataGridView.Size = new System.Drawing.Size(1357, 450);
|
||||
this.invoicesDataGridView.Size = new System.Drawing.Size(1511, 450);
|
||||
this.invoicesDataGridView.TabIndex = 0;
|
||||
//
|
||||
// commentsAndAnalysisLayoutPanel
|
||||
@@ -745,12 +761,12 @@
|
||||
this.commentsAndAnalysisLayoutPanel.Controls.Add(this.costAnalysisGroupBox, 0, 1);
|
||||
this.commentsAndAnalysisLayoutPanel.Controls.Add(this.commentMainGroupBox, 0, 0);
|
||||
this.commentsAndAnalysisLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.commentsAndAnalysisLayoutPanel.Location = new System.Drawing.Point(1388, 43);
|
||||
this.commentsAndAnalysisLayoutPanel.Location = new System.Drawing.Point(1480, 43);
|
||||
this.commentsAndAnalysisLayoutPanel.Name = "commentsAndAnalysisLayoutPanel";
|
||||
this.commentsAndAnalysisLayoutPanel.RowCount = 2;
|
||||
this.commentsAndAnalysisLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
|
||||
this.commentsAndAnalysisLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
|
||||
this.commentsAndAnalysisLayoutPanel.Size = new System.Drawing.Size(456, 505);
|
||||
this.commentsAndAnalysisLayoutPanel.Size = new System.Drawing.Size(364, 505);
|
||||
this.commentsAndAnalysisLayoutPanel.TabIndex = 6;
|
||||
//
|
||||
// costAnalysisGroupBox
|
||||
@@ -763,7 +779,7 @@
|
||||
this.costAnalysisGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.costAnalysisGroupBox.Location = new System.Drawing.Point(3, 255);
|
||||
this.costAnalysisGroupBox.Name = "costAnalysisGroupBox";
|
||||
this.costAnalysisGroupBox.Size = new System.Drawing.Size(450, 247);
|
||||
this.costAnalysisGroupBox.Size = new System.Drawing.Size(358, 247);
|
||||
this.costAnalysisGroupBox.TabIndex = 4;
|
||||
this.costAnalysisGroupBox.TabStop = false;
|
||||
this.costAnalysisGroupBox.Text = "Cost Analysis";
|
||||
@@ -822,7 +838,7 @@
|
||||
this.commentMainGroupBox.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
|
||||
this.commentMainGroupBox.Name = "commentMainGroupBox";
|
||||
this.commentMainGroupBox.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
|
||||
this.commentMainGroupBox.Size = new System.Drawing.Size(446, 240);
|
||||
this.commentMainGroupBox.Size = new System.Drawing.Size(354, 240);
|
||||
this.commentMainGroupBox.TabIndex = 1;
|
||||
this.commentMainGroupBox.TabStop = false;
|
||||
this.commentMainGroupBox.Text = "Comments";
|
||||
@@ -836,7 +852,7 @@
|
||||
this.commentsTextBox.Name = "commentsTextBox";
|
||||
this.commentsTextBox.ReadOnly = true;
|
||||
this.commentsTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
||||
this.commentsTextBox.Size = new System.Drawing.Size(436, 206);
|
||||
this.commentsTextBox.Size = new System.Drawing.Size(344, 206);
|
||||
this.commentsTextBox.TabIndex = 0;
|
||||
//
|
||||
// grossProfitGroupBox
|
||||
@@ -849,9 +865,9 @@
|
||||
this.grossProfitGroupBox.Controls.Add(this.perfectGrossProfitLabel);
|
||||
this.grossProfitGroupBox.Controls.Add(this.grossProfitDollarGrossProfitLabel);
|
||||
this.grossProfitGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.grossProfitGroupBox.Location = new System.Drawing.Point(1388, 554);
|
||||
this.grossProfitGroupBox.Location = new System.Drawing.Point(1480, 554);
|
||||
this.grossProfitGroupBox.Name = "grossProfitGroupBox";
|
||||
this.grossProfitGroupBox.Size = new System.Drawing.Size(456, 335);
|
||||
this.grossProfitGroupBox.Size = new System.Drawing.Size(364, 335);
|
||||
this.grossProfitGroupBox.TabIndex = 7;
|
||||
this.grossProfitGroupBox.TabStop = false;
|
||||
this.grossProfitGroupBox.Text = "Gross Profit";
|
||||
@@ -859,13 +875,12 @@
|
||||
// usePreRenderedFilesCheckbox
|
||||
//
|
||||
this.usePreRenderedFilesCheckbox.AutoSize = true;
|
||||
this.usePreRenderedFilesCheckbox.Location = new System.Drawing.Point(40, 288);
|
||||
this.usePreRenderedFilesCheckbox.Location = new System.Drawing.Point(16, 288);
|
||||
this.usePreRenderedFilesCheckbox.Name = "usePreRenderedFilesCheckbox";
|
||||
this.usePreRenderedFilesCheckbox.Size = new System.Drawing.Size(239, 29);
|
||||
this.usePreRenderedFilesCheckbox.TabIndex = 5;
|
||||
this.usePreRenderedFilesCheckbox.Text = "Use Pre-rendered Files";
|
||||
this.usePreRenderedFilesCheckbox.UseVisualStyleBackColor = true;
|
||||
this.usePreRenderedFilesCheckbox.Visible = false;
|
||||
//
|
||||
// grossProfitLessCostOfSales
|
||||
//
|
||||
@@ -890,9 +905,9 @@
|
||||
this.grossProfitEstimatedWeeklyDeptmartmentExpenseLabel.AutoSize = true;
|
||||
this.grossProfitEstimatedWeeklyDeptmartmentExpenseLabel.Location = new System.Drawing.Point(6, 163);
|
||||
this.grossProfitEstimatedWeeklyDeptmartmentExpenseLabel.Name = "grossProfitEstimatedWeeklyDeptmartmentExpenseLabel";
|
||||
this.grossProfitEstimatedWeeklyDeptmartmentExpenseLabel.Size = new System.Drawing.Size(368, 25);
|
||||
this.grossProfitEstimatedWeeklyDeptmartmentExpenseLabel.Size = new System.Drawing.Size(206, 50);
|
||||
this.grossProfitEstimatedWeeklyDeptmartmentExpenseLabel.TabIndex = 4;
|
||||
this.grossProfitEstimatedWeeklyDeptmartmentExpenseLabel.Text = "Estimated Weekly Department Expense: ";
|
||||
this.grossProfitEstimatedWeeklyDeptmartmentExpenseLabel.Text = "Estimated Weekly \r\nDepartment Expense: ";
|
||||
//
|
||||
// perfectGrossProfitLabel
|
||||
//
|
||||
@@ -912,21 +927,6 @@
|
||||
this.grossProfitDollarGrossProfitLabel.TabIndex = 2;
|
||||
this.grossProfitDollarGrossProfitLabel.Text = "Dollar Gross Profit: ";
|
||||
//
|
||||
// debugToolStripMenuItem
|
||||
//
|
||||
this.debugToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.debugToolStripMenuItem1});
|
||||
this.debugToolStripMenuItem.Name = "debugToolStripMenuItem";
|
||||
this.debugToolStripMenuItem.Size = new System.Drawing.Size(87, 34);
|
||||
this.debugToolStripMenuItem.Text = "Debug";
|
||||
//
|
||||
// debugToolStripMenuItem1
|
||||
//
|
||||
this.debugToolStripMenuItem1.Name = "debugToolStripMenuItem1";
|
||||
this.debugToolStripMenuItem1.Size = new System.Drawing.Size(240, 34);
|
||||
this.debugToolStripMenuItem1.Text = "Debug";
|
||||
this.debugToolStripMenuItem1.Click += new System.EventHandler(this.debugToolStripMenuItem1_Click);
|
||||
//
|
||||
// FrmMain
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(168F, 168F);
|
||||
|
||||
Reference in New Issue
Block a user