how to set up formula using WinGrid in c# Command
this my problem i have 3 column ex. first Column "UnitPrice", second Column "Quantity" 3rd Column is the "Amount" the column"UnitPrice" have exciting Value coming from the selection, column " Quantity" is inputed, Column "Amount" is the Total of column "UnitPrice" and Column "Quantity". my question is how can i apply formula for this kind of computation? thanks a lot..
What you would do is place an UltraCalcManager component on the form with the grid. You can then set the Formula property on the Amount column in the grid. There are some samples included with NetAdvantage for using formulas, and all of the formulas and functions are documented.
Your formula in this case would probably look something like this: "[UnitPrice] * [Quantity]"