data gridview error
-
i have a datagridview with columns group,description,unit_price,amount....i want only the first three columns of the data grid view to be populated..the fourth column is filled using calculations.is it possible to bind this to datatable ???
-
i have a datagridview with columns group,description,unit_price,amount....i want only the first three columns of the data grid view to be populated..the fourth column is filled using calculations.is it possible to bind this to datatable ???
you can achieve this scenario in the database itself... Code:
create table test_tab (m1 numeric, m2 numeric, m3 numeric)
insert into test_tab values (1,2,3)
insert into test_tab values (4,6,8)
insert into test_tab values (5,7,9)select m1,m2,m3 , (m1+m2+m3) as tot from test_tab
Padmanabhan
My Articles:
Articles[^]
My latest Article:
Word Automation[^]