Hi,

I have just been trying to get the XP Visual style in my application (like the buttons and stuff) But how can I do it?

I did
VB Code:
  1. Public Sub New()
  2.         MyBase.New()
  3.  
  4.         'This call is required by the Windows Form Designer.
  5.         InitializeComponent()
  6.         Application.EnableVisualStyles()
  7.  
  8.         'Add any initialization after the InitializeComponent() call
  9.  
  10.     End Sub

And set the button I want on its property of FlatStyle = System but it doesn't work...

Is there something that I have to do first or something should be?

Thanks,