office 2003 style controls

  • Thread starter Thread starter guy
  • Start date Start date
Hi Guy,

Are you aware that if you are running xp, your command buttons, radio
buttons, checkboxes, etc can appear as xp style simply by adding
Public Sub New()

MyBase.New()

Application.EnableVisualStyles()

Application.DoEvents()

in your startup method? After that, all you have to do is assign flat style
'system' to command buttons and you will have xp style controls.

HTH,

Bernie Yaeger
 
Back
Top