Set up Invoice DataGridView event handlers to validate user input and provide basic formatting for the contents of the cells. Updated the week ending masked text box to get a parsed DateTime value, just to make it look pretty.
This commit is contained in:
@@ -288,6 +288,18 @@ namespace AdvertsingProfitControl
|
||||
IsInDatabase = 11
|
||||
}
|
||||
|
||||
public enum InvoiceTableColumns
|
||||
{
|
||||
Id = 0,
|
||||
InvoiceDate = 1,
|
||||
Supplier = 2,
|
||||
InvoiceNumber = 3,
|
||||
InvoiceNetAmountAtCost = 4,
|
||||
InvoiceNetAmount = 5,
|
||||
InvoiceNote = 6,
|
||||
IsDirty = 7
|
||||
}
|
||||
|
||||
public enum TrimmingOperationResult
|
||||
{
|
||||
FailedToTrim = 0,
|
||||
|
||||
Reference in New Issue
Block a user