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
c_sharpkid
NA
29
0
DataView question
Nov 3 2004 3:59 PM
Hello everyone, I am reading data from xmlstring into my dataset. Now when I try to create dataview on the default dataset table it gives me error. Here is my code : Dataset ds = new Dataset(); ds.ReadXml(xmlString); DataView dv = new DataView(ds.Tables[0]); dv.sort = “ ASC”; DataGrid1.DataSource = dv; DataGrid1.BindData(); I am getting runtime error - Table[0] not found. Please suggest. I don't know why DataView can't find table. Thank you C_sharpkid
Reply
Answers (
1
)
win form application -- urgent
help me in resolving this issue