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
Sri Hari
NA
7
4.2k
add DataGridViewLinkColumn with changing text in each row
Aug 17 2016 10:53 AM
C# windows datagridview , how to add DataGridViewLinkColumn with changing text in each row. like dynamically add link text while iterating over the rows of the datagridview.
tried to add the link column and change each row text,
DataGridViewLinkColumn lnk = new DataGridViewLinkColumn();
dataGridView1.Columns.Add(lnk);
lnk.HeaderText = "Link Data";
lnk.Name = "Link Data";
foreach (DataGridViewRow row in dataGridView1.Rows)
{
lnk.CellTemplate.Value = sometext;
}
Reply
Answers (
1
)
duplicate nodes based on specific nodes in XML
Writing a binary fikle using C#