Added the new modify record form, can only pull in the Projections table and parse it. Fixed a bug in the modify record form where the first row would be marked as pending edit due to not checking the beginning cell variable correctly.

This commit is contained in:
2017-01-17 12:20:48 -06:00
parent bd586580e6
commit c9d8186d75
14 changed files with 3611 additions and 32 deletions
+30
View File
@@ -83,6 +83,8 @@
this.weeklySalesDataGridView = new System.Windows.Forms.DataGridView();
this.taxableTabPage = new System.Windows.Forms.TabPage();
this.taxableDataGridView = new System.Windows.Forms.DataGridView();
this.debugTabPage = new System.Windows.Forms.TabPage();
this.monthCalendar = new System.Windows.Forms.MonthCalendar();
this.mainTableLayoutPanel.SuspendLayout();
this.mainMenu.SuspendLayout();
this.commentMainTableLayoutPanel.SuspendLayout();
@@ -105,6 +107,7 @@
((System.ComponentModel.ISupportInitialize)(this.weeklySalesDataGridView)).BeginInit();
this.taxableTabPage.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.taxableDataGridView)).BeginInit();
this.debugTabPage.SuspendLayout();
this.SuspendLayout();
//
// mainTableLayoutPanel
@@ -535,6 +538,7 @@
this.mainViewTabControl.Controls.Add(this.suppliersTabPage);
this.mainViewTabControl.Controls.Add(this.WeeklySalesTabPage);
this.mainViewTabControl.Controls.Add(this.taxableTabPage);
this.mainViewTabControl.Controls.Add(this.debugTabPage);
this.mainViewTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
this.mainViewTabControl.Location = new System.Drawing.Point(5, 47);
this.mainViewTabControl.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
@@ -733,6 +737,29 @@
this.taxableDataGridView.Size = new System.Drawing.Size(1710, 498);
this.taxableDataGridView.TabIndex = 0;
//
// debugTabPage
//
this.debugTabPage.Controls.Add(this.monthCalendar);
this.debugTabPage.Location = new System.Drawing.Point(4, 33);
this.debugTabPage.Name = "debugTabPage";
this.debugTabPage.Padding = new System.Windows.Forms.Padding(3);
this.debugTabPage.Size = new System.Drawing.Size(1716, 504);
this.debugTabPage.TabIndex = 6;
this.debugTabPage.Text = "Debug";
this.debugTabPage.UseVisualStyleBackColor = true;
//
// monthCalendar
//
this.monthCalendar.Location = new System.Drawing.Point(12, 12);
this.monthCalendar.MaxSelectionCount = 1;
this.monthCalendar.MonthlyBoldedDates = new System.DateTime[] {
new System.DateTime(2017, 1, 1, 0, 0, 0, 0)};
this.monthCalendar.Name = "monthCalendar";
this.monthCalendar.ShowTodayCircle = false;
this.monthCalendar.ShowWeekNumbers = true;
this.monthCalendar.TabIndex = 0;
this.monthCalendar.TabStop = false;
//
// FrmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(168F, 168F);
@@ -775,6 +802,7 @@
((System.ComponentModel.ISupportInitialize)(this.weeklySalesDataGridView)).EndInit();
this.taxableTabPage.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.taxableDataGridView)).EndInit();
this.debugTabPage.ResumeLayout(false);
this.ResumeLayout(false);
}
@@ -835,6 +863,8 @@
private System.Windows.Forms.LinkLabel shrinkLinkLabel;
private System.Windows.Forms.TabPage taxableTabPage;
private System.Windows.Forms.DataGridView taxableDataGridView;
private System.Windows.Forms.TabPage debugTabPage;
private System.Windows.Forms.MonthCalendar monthCalendar;
}
}