Hi all,
in vb.net, how to filter the datagrid column? besides that, how am i going to resize the columns width ?
thank you very much
Printable View
Hi all,
in vb.net, how to filter the datagrid column? besides that, how am i going to resize the columns width ?
thank you very much
Use a dataview
dim dv as DataView
dv = datatable.defaultview
dv.rowfilter = "Something = 'Something'"
See my post about table styles in another topic on how to format column sizes.
got it, thanks guy :)