J
Jeff
Hi,
When I call Hide( ) on five buttons, it takes 600 mSec to complete.
The screen updates are very, very slow on a 2Ghz machine.
Ouch! How can this be so slow?
Code looks like:
foreach (MyButton button in this.buttonList)
{
button.Hide( );
}
Note: MyButton is derived from Forms.Button
I have tried "for loop" instead of foreach....No help.
I have tried button.Visible = false instead of Hide( )....No help.
Any thoughts?
Thanks, Jeff
When I call Hide( ) on five buttons, it takes 600 mSec to complete.
The screen updates are very, very slow on a 2Ghz machine.
Ouch! How can this be so slow?
Code looks like:
foreach (MyButton button in this.buttonList)
{
button.Hide( );
}
Note: MyButton is derived from Forms.Button
I have tried "for loop" instead of foreach....No help.
I have tried button.Visible = false instead of Hide( )....No help.
Any thoughts?
Thanks, Jeff