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
mirko gogic
NA
3
0
get selected from listview
Jun 17 2008 6:04 PM
I have a listview and i added data using ListViewItem, i added tag text to all rows.
while (...)
{
ListViewItem item = new ListViewItem();
item.Tag = (Int64)data[0];
item.Text = (string)data[1];
item.SubItems.Add((string)data[2]);
list.Items.Add(item);
}
Now i have a button the needs to remove items data form listview, but the problem is how to get tag values of
selected
rows ?
Reply
Answers (
2
)
Listing files from a web site?
Newbie - Trying to insert data into sql table from a dataset