Calculated column

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi.
I have a WinForms App and a SQL Server database. On a form, I have a Data
Grid View, showing the contents of table A from my datyabase. One of the
columns in the Data Grid View is unbound, and I would like to calculate it´s
value from one column in table A and a value taken from elsewere.
How do I do this? Any good code examples?
Regards,
Gudni
 
You can add a column to your ADO DataTable with expression - this way you can
use values from the SQL table & use other value when forming your expression
 
Back
Top