Windows XP visual styles with controls on win forms.... problem.

  • Thread starter Thread starter Guest
  • Start date Start date
If your application is using .net 1.1 or above you don't have to use
manifests anymore, theres much simpler support built into the framework. In
your applications's 'Sub Main' add the following lines before any other
code.

Application.EnableVisualStyle()
Application.DoEvents() ' fixes minor error in EnableVisualStyle
implementation

Cathal
 
Back
Top