TreeView in WinForms 2.0 dosen't update itself when nodes are added

Hi everyone,
Within a Winform application, a treeview is contained in a User Control and
the User Control is then located within a splitview.
When the UserControl added some nodes into the Treeview, the treeview is not
displaying the added nodes, it just keep displaying the initial node added to
it during initallisation. Tried variious method like TreeView.Invalidate()
and TreeView.Update(). The code which adds nodes to the treeview is already
surrounded by TreeView.BeginUpdate() and TreeView.EndUpdate(). it is still
not displaying the new contents. However, if you ask it to display the number
of nodes in the tree, the Nodes.Count does indicate the new nodes are
inserted correctly.
Any ideas?
[823 byte] By [Stardust] at [2007-12-17]
# 1
Search your code for a spurious BeginUpdate - this turns off painting for the TreeView and needs a matching EndUpdate.
Jessica at 2007-9-8 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 2
Hi there thanks for your reply but I have checked the code, only the section where the new nodes are populated is surrounded by a matching pair of BeginUpdate and EndUpdate.

Stardust at 2007-9-8 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 3
I'm experiencing the same problem with the migration from 2003 to 2005. Did you ever solve this problem?
tiebout at 2007-9-8 > top of Msdn Tech,Windows Forms,Windows Forms General...