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:
+11
-1
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user