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:
+10
-8
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user