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

C

Cathal Connolly [C# MVP]

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top