Hi,
I am using WinTree with OutlookExpress view style.
I want to set same value to all cells of a particular column of the tree control. I wish to achieve this in a faster way other than iterating each and every cell of the column.
Appreciate any help.
Sheeba
Hello,
I will be happy to assist you with this matter,
You should be able to use a loop to generate the same value for each cell within a column of a tree.
Please use the following code as reference:
//Loop
for (int i = 0; i <= 100; i++)
{
dt.Rows.Add(i,
}
Please let me know if you require further assistance in this matter.