Hey,

I have a data-grid-view that has a data source associated with it. Suppose the information contained in the database is:

0. ID
1. Number of Pieces
2. Price / piece

Now I manually add a new UNBOUNDED column in my DGV. Lets name it Total.

I want this column to display the "Number of pieces" * "Price / piece" multiplication.

But I want this multiplication to be made at runtime for all the records in the database, without having to store this information in the database.

How can I do this?

Thx.