Originally posted by RobDog888
It should work in 98. The ShellExecute API's requirements
are 95+ or NT 3.1 +. Try this one.

VB Code:
  1. Option Explicit
  2.  
  3. Private Sub Command1_Click()
  4.     Shell "rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,3"
  5. End Sub

Yes, this way works fine !

thanx!