Ok, I know this is a silly question, but why don't form created by VS .NET
(2003) look the same as form in other MS apps like IE and Office? The
buttons are different and the tab-controls etc. etc. Is there a way of
getting them to look the same?

Re: Question about Form appearance... by Gabriel

Gabriel
Fri Nov 11 12:53:37 CST 2005

In Main() before calling the Run() operation enable visual styles:

System.Windows.Forms.Application.EnableVisualStyles()

Gabriel Lozano-Morán



Re: Question about Form appearance... by Jako

Jako
Mon Nov 14 03:14:08 CST 2005

"Gabriel Lozano-Morán" <gabriel.lozano@no-spam-thx.org> wrote in message
news:eYsw6Ev5FHA.1032@TK2MSFTNGP11.phx.gbl...
> In Main() before calling the Run() operation enable visual styles:
>
> System.Windows.Forms.Application.EnableVisualStyles()
>
> Gabriel Lozano-Morán
>

Cool, thanks for that, it works...

What if the PC I install this on doesn't run Windows XP? Will I get an
error or will it just revert back to normal windows?