Try to add the items in the Load event handler of the form, and not in design mode
(this happens after few times that the designer add the items also in the designer.cs class and not just in the ctor.
private void Form2_Load(object sender, EventArgs e)
{
if (!DesignMode)
{
// add the items to the tree view
}
}
Eli Gazit (try this free icons site: http://www.iconbuffet.com/people/new?ref=EliGazit)