Click here to Skip to main content
15,881,803 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
suppose there are four columans and 6 rows..
1234
0000
1111
2222
3333
4444
5555
6666

now i want to add text + link only on the fourth coulmn of row 5... how to do so..
I am doing this to add text and linklabel together in a particular row of a column in a DataGridView.

LinkLabel m_link = new LinkLabel();
m_link.Text = " test";
//string[] row5 = { osCategory[0], issues[13], Severity[1], description[13] };
DataGridView.Rows.Add(osCategory[0], issues[13], Severity[1], "helloworld"+m_link);

this is not the way I believe can anybody help me.... with complete source code.
Posted
Updated 25-Feb-15 2:07am
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900