|
-
Jun 12th, 2003, 10:38 PM
#1
Thread Starter
New Member
how to filter the datagrid column
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
-
Jun 13th, 2003, 12:42 AM
#2
New Member
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.
-
Jun 13th, 2003, 12:47 AM
#3
Thread Starter
New Member
got it, thanks guy
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|