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
Yogesh Paul
NA
2
0
CheckedListBox and System.Data.DataRowView
Apr 21 2008 1:51 AM
Hi All
I am writing an application in C# where I have to write checked items from an CheckedListBox into an XML file and for that I am storing checked items in an ArrayList.
The problem I face is that , if I check 5 items , then 5 items are stored in XML file but all having text as "
System.Data.DataRowView"
Can someone please help me out as to how to resolve this ? Here is the code snippet from my program.....
// Populating the checked list box with data from a dataset. table name is variable and column //name is NAME
ckdListBox.DataSource = thisDataSet.Tables["variable"];
ckdListBox.DisplayMember = "NAME";
ckdListBox.ValueMember = "NAME";
ckdListBox.SelectedIndex = 0;
//code for extracting checked items
if (this.ckdListBox.CheckedItems.Count > 0)
{
// Loop through the CheckedItems collection of the CheckedListBox
// and add the items in the arrayList
for (int count = 0; count < this.ckdListBox.CheckedItems.Count; count++)
{
selectedTags.Add(this.ckdListBox.CheckedItems[count].ToString());
}
}
Reply
Answers (
0
)
Position and implement of images
NP96 Error in the program