Updated the APC table builder so zeros won't show in some columns. Changed the ad special index setting to the cell validation event, and stabilized the user changing an ad item to an ad special keyword. Fixed a bug where saying no to deleting a row wouldn't work.
This commit is contained in:
@@ -16,6 +16,11 @@ namespace AdvertsingProfitControl
|
||||
/// <param name="dataGridView">The DataGridView to parse.</param>
|
||||
public void PaintRowGroupsFromIndex(int startingIndex, DataGridView dataGridView)
|
||||
{
|
||||
//Underflow protection for the lazy.
|
||||
if (startingIndex < 0)
|
||||
{
|
||||
return;
|
||||
}
|
||||
var parser = new RowParsing();
|
||||
int isHeaderColumn;
|
||||
int isMemberColumn;
|
||||
|
||||
Reference in New Issue
Block a user