Fixed a bug on the modify record form where updating an existing row's ad item wouldn't mark the other APC tables as dirty.

This commit is contained in:
2017-01-17 14:15:21 -06:00
parent c9d8186d75
commit 2b3c234aaa
7 changed files with 237 additions and 26 deletions
+11 -1
View File
@@ -85,6 +85,7 @@
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();
@@ -164,7 +165,8 @@
this.addRecordsToolStripMenuItem,
this.modifyRecordMainMenu,
this.deleteRecordsMainMenu,
this.newFormTestToolStripMenuItem});
this.newFormTestToolStripMenuItem,
this.newModifyRecordToolStripMenuItem});
this.recordsToolStripMenuItem.Name = "recordsToolStripMenuItem";
this.recordsToolStripMenuItem.Size = new System.Drawing.Size(98, 35);
this.recordsToolStripMenuItem.Text = "&Records";
@@ -760,6 +762,13 @@
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);
@@ -865,6 +874,7 @@
private System.Windows.Forms.DataGridView taxableDataGridView;
private System.Windows.Forms.TabPage debugTabPage;
private System.Windows.Forms.MonthCalendar monthCalendar;
private System.Windows.Forms.ToolStripMenuItem newModifyRecordToolStripMenuItem;
}
}