Hello Dieter,
You can get the subitem of NTreeList when the user click on it by the following way:
//Attach to MouseUp event
nTreeList1.MouseUp +=
...
void
{
subItem = node.SubItems[i];
}
Regards,
Angel.