Added a tool to remove an entire date and all records associated with it. Updated row deletion code to handle unbalanced tables or missing row IDs.
This commit is contained in:
+9
-8
@@ -56,6 +56,7 @@
|
||||
this.FileMainMenu = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.clearFormFileMainMenu = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.exitFileMainMenu = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.debugMainMenu = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.mainLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
|
||||
this.costAnalysisGroupBox = new System.Windows.Forms.GroupBox();
|
||||
this.suppliesTextBox = new System.Windows.Forms.TextBox();
|
||||
@@ -107,7 +108,6 @@
|
||||
this.informationPanel = new System.Windows.Forms.Panel();
|
||||
this.errorLabel = new System.Windows.Forms.Label();
|
||||
this.addRecordButton = new System.Windows.Forms.Button();
|
||||
this.debugMainMenu = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.commentsGroupBox.SuspendLayout();
|
||||
this.mainTabControl.SuspendLayout();
|
||||
this.projectionTabPage.SuspendLayout();
|
||||
@@ -449,6 +449,13 @@
|
||||
this.exitFileMainMenu.Size = new System.Drawing.Size(205, 34);
|
||||
this.exitFileMainMenu.Text = "E&xit";
|
||||
//
|
||||
// debugMainMenu
|
||||
//
|
||||
this.debugMainMenu.Name = "debugMainMenu";
|
||||
this.debugMainMenu.Size = new System.Drawing.Size(87, 31);
|
||||
this.debugMainMenu.Text = "&Debug";
|
||||
this.debugMainMenu.Click += new System.EventHandler(this.debugMainMenu_Click);
|
||||
//
|
||||
// mainLayoutPanel
|
||||
//
|
||||
this.mainLayoutPanel.ColumnCount = 4;
|
||||
@@ -943,13 +950,6 @@
|
||||
this.addRecordButton.UseVisualStyleBackColor = true;
|
||||
this.addRecordButton.Click += new System.EventHandler(this.AddRecordsButtonClick);
|
||||
//
|
||||
// debugMainMenu
|
||||
//
|
||||
this.debugMainMenu.Name = "debugMainMenu";
|
||||
this.debugMainMenu.Size = new System.Drawing.Size(87, 31);
|
||||
this.debugMainMenu.Text = "&Debug";
|
||||
this.debugMainMenu.Click += new System.EventHandler(this.debugMainMenu_Click);
|
||||
//
|
||||
// NewAddRecord
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(168F, 168F);
|
||||
@@ -962,6 +962,7 @@
|
||||
this.MinimumSize = new System.Drawing.Size(1000, 1000);
|
||||
this.Name = "NewAddRecord";
|
||||
this.Text = "Add New Record";
|
||||
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
|
||||
this.commentsGroupBox.ResumeLayout(false);
|
||||
this.commentsGroupBox.PerformLayout();
|
||||
this.mainTabControl.ResumeLayout(false);
|
||||
|
||||
Reference in New Issue
Block a user