Organized the code a bit, and fixed a bug where selecting a new date wouldn't update the modify record form. Prettied up the formatting for the invoices table.

This commit is contained in:
2017-01-18 01:46:39 -06:00
parent a57ef93add
commit 22b9ba4334
4 changed files with 94 additions and 86 deletions
+10 -8
View File
@@ -38,6 +38,7 @@
this.modifyRecordMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.deleteRecordsMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.newFormTestToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.newModifyRecordToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolsMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.adSpecialKeyWordsToolsMainMenu = new System.Windows.Forms.ToolStripMenuItem();
this.manageItemsToolsMainMenu = new System.Windows.Forms.ToolStripMenuItem();
@@ -85,7 +86,6 @@
this.taxableDataGridView = new System.Windows.Forms.DataGridView();
this.debugTabPage = new System.Windows.Forms.TabPage();
this.monthCalendar = new System.Windows.Forms.MonthCalendar();
this.newModifyRecordToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.mainTableLayoutPanel.SuspendLayout();
this.mainMenu.SuspendLayout();
this.commentMainTableLayoutPanel.SuspendLayout();
@@ -187,9 +187,11 @@
//
// deleteRecordsMainMenu
//
this.deleteRecordsMainMenu.Enabled = false;
this.deleteRecordsMainMenu.Name = "deleteRecordsMainMenu";
this.deleteRecordsMainMenu.Size = new System.Drawing.Size(323, 34);
this.deleteRecordsMainMenu.Text = "&Delete Existing record";
this.deleteRecordsMainMenu.ToolTipText = "Currently Unavailable in this Version.";
this.deleteRecordsMainMenu.Click += new System.EventHandler(this.deleteRecordsMainMenu_Click);
//
// newFormTestToolStripMenuItem
@@ -199,6 +201,13 @@
this.newFormTestToolStripMenuItem.Text = "&New Form Test";
this.newFormTestToolStripMenuItem.Click += new System.EventHandler(this.newFormTestToolStripMenuItem_Click);
//
// newModifyRecordToolStripMenuItem
//
this.newModifyRecordToolStripMenuItem.Name = "newModifyRecordToolStripMenuItem";
this.newModifyRecordToolStripMenuItem.Size = new System.Drawing.Size(323, 34);
this.newModifyRecordToolStripMenuItem.Text = "New Modify Record";
this.newModifyRecordToolStripMenuItem.Click += new System.EventHandler(this.newModifyRecordToolStripMenuItem_Click);
//
// toolsMainMenu
//
this.toolsMainMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
@@ -762,13 +771,6 @@
this.monthCalendar.TabIndex = 0;
this.monthCalendar.TabStop = false;
//
// newModifyRecordToolStripMenuItem
//
this.newModifyRecordToolStripMenuItem.Name = "newModifyRecordToolStripMenuItem";
this.newModifyRecordToolStripMenuItem.Size = new System.Drawing.Size(323, 34);
this.newModifyRecordToolStripMenuItem.Text = "New Modify Record";
this.newModifyRecordToolStripMenuItem.Click += new System.EventHandler(this.newModifyRecordToolStripMenuItem_Click);
//
// FrmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(168F, 168F);