Nick (DevExpress Support)
06.17.2004
You must
log in
or
register
to leave comments
1 Answer
The problem is caused by the Application.EnableVisualStyles method. It is described in detail in the following article:
http://weblogs.asp.net/rprabhu/archive/2003/09/28/56540.aspx
To make a long story short, you should call the DoEvents method after EnableVisualStyles as shown below.
[VB.NET]Application.EnableVisualStyles() Application.DoEvents() ' <<<< NEW LINE