I realize this is probably a newbie question but, can someone tell me how to avoid the ugly "multistep" painting of the screen?
For example; When I first load my form, I'm setting the visibility of some large buttons based on the Users access authority (set by the application Administrator). When the form loads, the button tool bar begins to load at the very top of the screen, then it drops down and the Menu bar appears at the top (where it belongs), and then the other screen components appear piece by piece in a hideous blotchy manner.
I'd really appreciate someone telling me how to avoid this?
Thanx in advance,
Randy
Hello Randy
I`m not familiar with your scenario, but maybe one possible approach could be if you are using the methods :
- this.SuspendLayout();
- this.ResumeLayout(false);
More information you could find at: http://msdn.microsoft.com/en-us/library/system.windows.forms.control.suspendlayout.aspx
Please let me know if you think that I misunderstood your question or if you have any other
Regards