King-Of-Hearts Posted March 22, 2008 Posted March 22, 2008 (edited) Hi, this is my first attempt ! To use Left Hand Mouse: Open Notepad and type this:Option ExplicitSet WSHShell = WScript.CreateObject("WScript.Shell")Dim WSHShell, n, p, itemtype, mybox p = "HKCU\Control Panel\Mouse\SwapMouseButtons"itemtype = "REG_SZ"n = "1"WSHShell.RegWrite p, n, itemtypeMyBox = MsgBox("You must Log Off/Log On for the changes to take effect.", 64,"Done")Save as.. Filename.vbsTo Use Right Hand Mouse:Open notepad and type this:Option ExplicitSet WSHShell = WScript.CreateObject("WScript.Shell")Dim WSHShell, n, p, itemtype, mybox p = "HKCU\Control Panel\Mouse\SwapMouseButtons"itemtype = "REG_SZ"n = "0"WSHShell.RegWrite p, n, itemtypeMyBox = MsgBox("You must Log Off/Log On for the changes to take effect.", 64,"Done")Save as.. Filename.vbsDownload this file:SwapMouse.rar Edited March 22, 2008 by King-Of-Hearts
neo Posted March 22, 2008 Posted March 22, 2008 Thats nice start.You r really King-Of-Hearts Keep it up
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now