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
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now