Icons not showing up on Treview

I am using VS 2005 Beta and I have a Treeview UserControl that I built for a
menu. I added an imageList to the control and added some icons that I want
to associate with the control. When I build the solution and view the
UserControl placed on a form in the designer, I can see the icons.
However, when I run the solution's executable I do not see the icons in the
Treeview. It is like the images are not getting placed into the output of
the build or something. I have managed to break this in two seperate places. I cannot for the life of me figure out what I missing since this used to work.

Anyone ran into this?

-Keith

[659 byte] By [KeithElder] at [2008-3-1]
# 1
A weird thing happened today where I had a team member install the clickonce app I was building. He is running Windows 2003 Server on his desktop and when he launched the app, it shows all of the icons. On my local machine it still does not show them. On XP machines it doesn't show the icons. What is going on?
KeithElder at 2007-9-8 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 2
I am unable to replicate your problem, using Beta2. I created a UserControl that contained a TreeView and an associated ImageList. I added three nodes to the TreeView, and gave each a different image from the ImageList. I used Icons in my test case. The three nodes appear with icons both at design time and runtime.

Have you confirmed it doesn't work on other XP machines, or just yours? Can you replicate the problem in a new simplified test case project?

durstin at 2007-9-8 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 3
I have the same problem I thought it's because of enable visual style, but after I turn it off the icons are still not showing. I am using a usercontrol that I dropped to my main form. The control has a panel with a treeview. Same thing is happening with listview.
JRQ at 2007-9-8 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 4

Something weird, it's displaying random windows icons on one of the node. Tonight I got the "shared" icon (small hand).

I think, I know what going on. My panel is owner-drawn with double buffering. I removed the double-buffering logic and it seems to be working fine now.

JRQ at 2007-9-8 > top of Msdn Tech,Windows Forms,Windows Forms General...