Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. apply control panel settings

apply control panel settings

Scheduled Pinned Locked Moved C#
windows-adminhelpquestion
3 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • P Offline
    P Offline
    Pyro Joe
    wrote on last edited by
    #1

    hi, I simply want to change the registry value "swapmousebuttons", I can do this. however I want to apply this setting without rebooting or logging off, much like the windows control panel does. how is this done? thanks for your help. Stephen

    M 1 Reply Last reply
    0
    • P Pyro Joe

      hi, I simply want to change the registry value "swapmousebuttons", I can do this. however I want to apply this setting without rebooting or logging off, much like the windows control panel does. how is this done? thanks for your help. Stephen

      M Offline
      M Offline
      Mohamad Al Husseiny
      wrote on last edited by
      #2

      You can use SwapMouseButton Api function

      [DllImport("user32.dll")]
      static extern bool SwapMouseButton(bool fSwap);
      

      and somewhere write code like that

      private void button3_Click(object sender, System.EventArgs e)
      {
      SwapMouseButton(true);
      }
      

      To set it back pass false value SwapMouseButton Function[^] MCAD

      P 1 Reply Last reply
      0
      • M Mohamad Al Husseiny

        You can use SwapMouseButton Api function

        [DllImport("user32.dll")]
        static extern bool SwapMouseButton(bool fSwap);
        

        and somewhere write code like that

        private void button3_Click(object sender, System.EventArgs e)
        {
        SwapMouseButton(true);
        }
        

        To set it back pass false value SwapMouseButton Function[^] MCAD

        P Offline
        P Offline
        Pyro Joe
        wrote on last edited by
        #3

        thanks a ton! it works perfectly.

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups