How to show Windows Control Panel
Posted on January 4, 2009
1 2 3 4 5 6 | 'System & API - How to show Windows Control Panel Public Function ShowControlPanel() As Boolean On Error Resume Next Shell "rundll32 shell32,Control_RunDLL", vbNormalFocus ShowControlPanel = Err.Number = 0 End Function |