This "phenomina" also occurs when the control was not added by VS but I added it manually with this:
I declare the new instance and set its properties:
this.fileBrowser.Size= this.listBox1.Size;
this.fileBrowser.Location= this.listBox1.Location;
this.fileBrowser.Visible=false;
this.Controls.Add(this.fileBrowser);
Then, later I make it visible.
What I mean by messed up scrolling is it appears to loop all the way around before it scrolls down and looks really bad!!
Has anyone else had this problem and know how to fix it?
Or, can I handle the scrolling myself? I would definately need some help on that though. I wouldnt know where to start.