How to dispaly certain no of columns after binding the datacontrol to a dataset
How to do this after binding the the datacontrol...at a later stage
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Vilas GitePosted May 8, 2011, 9:06 AM
Select DatagridView then DataGridview Tasks and after you can click on Preview Data--Privew. In that pane, you will see "columns :*** Rows:***"
I think its solve your post
Thanks
Abhimanyu K VatsaPosted May 7, 2011, 1:14 AM
select id, name, add from tablename;
//no matter how my columns we have in this table but we only see 3 here.
or
select top 20 id, name, add from tablename;
hope this helps.