Use the Appearance tab on the Display properties when R-Clicking on desktop.
This can be done programatically but will affect all other window applications at the same time!
For this reason it is not reccommended.
Jerry Grant................tnarG yrreJ Website: <JG-Design></.net> Email: [email protected] Working towards a bug free world......
(Not a Microsoft employee)
Public Declare Function SetSysColors Lib "user32" (ByVal nChanges As Long, lpSysColor As Long, lpColorValues As Long) As Long
Public Const COLOR_MENU = 4
'=====CALL=====
' Change menu to green
SetSysColors 1, COLOR_MENU, 32768
Jerry Grant................tnarG yrreJ Website: <JG-Design></.net> Email: [email protected] Working towards a bug free world......
(Not a Microsoft employee)