TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Soumya Surendran
NA
170
0
Group heading of a dataGrid in c#
Sep 14 2009 6:31 AM
Hai expert...................
please help me.......
how can we give group heading of a data grid in in run time.....The following code will disply listno repeatedly...I want to avoid this repeation of list no...Please help me...
OleDbDataAdapter
ad =
new
OleDbDataAdapter
(
"select listno,acctno,cname,total,month1,year1 from schedule order by listno"
, con);
DataSet
ds =
new
DataSet
();
ad.Fill(ds,
"schedule"
);
if
(ds.Tables[0].Rows.Count > 0)
{
scheduleDataGridView.DataSource = ds;
scheduleDataGridView.DataMember = ds.Tables[0].ToString();
}
Reply
Answers (
1
)
how to give connection string in c# using access
console.writeline()