[RESOLVED] shell mouse settings?
I want to know how to shell the program that changes mouse settings, in normal focus. I dont know/cant find what the exe is or what i need to open. Any ideas on how i can get it to open. Its the same setting that is in the control panel. Thanks for your help.
Re: shell mouse settings?
Try
Code:
Private Sub Command1_Click()
Shell "control main.cpl", vbNormalFocus
End Sub
Re: shell mouse settings?
got it now...
Code:
Private Sub Form_Load()
Shell ("rundll32.exe shell32.dll,Control_RunDLL main.cpl @0")
end sub
Re: [RESOLVED] shell mouse settings?