is it possible to disable mouse wheel

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • GoOgLe
    Forum Member
    • Mar 2007
    • 452

    is it possible to disable mouse wheel

    is it possible to disable mouse wheel in combobox ?
  • abnrange
    No longer a forum member
    • Feb 2006
    • 346

    #2
    try this.....

    HKEY_CURRENT_USER\Control Panel\Desktop

    Look at the bottom of the list for "Wheel Scroll Lines" Right click and select modify.

    Enter the value "0" thats a ZERO, and then close regedit. Restart your computer and the scroll wheel should be disabled.

    Comment

    • GoOgLe
      Forum Member
      • Mar 2007
      • 452

      #3
      no i have to do it on runtime and dont have to restart pc... maybe there is dll or something ?

      Comment

      • abnrange
        No longer a forum member
        • Feb 2006
        • 346

        #4
        See attached - It may help...
        Attached Files

        Comment

        • GoOgLe
          Forum Member
          • Mar 2007
          • 452

          #5
          thanks for example abnrange

          but this doesnt do what i want !!!

          Comment

          • GoOgLe
            Forum Member
            • Mar 2007
            • 452

            #6
            what is wrong with this code ?

            Page On Show Code:
            Code:
            Page.StartTimer(100);

            Page On Timer Code:
            Code:
            result = Page.GetFocus();
            if result == "ComboBox1" then
            DLL.CallFunction("AutoPlay\\Docs\\DisableMouse.dll", "DisableMouseWheel", 1, DLL_RETURN_TYPE_LONG, DLL_CALL_CDECL);
            else
            DLL.CallFunction("AutoPlay\\Docs\\DisableMouse.dll", "DisableMouseWheel", 0, DLL_RETURN_TYPE_LONG, DLL_CALL_CDECL);
            end

            Comment

            • GoOgLe
              Forum Member
              • Mar 2007
              • 452

              #7
              any help please !!!

              Comment

              • GoOgLe
                Forum Member
                • Mar 2007
                • 452

                #8
                i really really need help with that !!!

                here is the file i have been trying to disable mouse wheel... i only want to disable if page focus is in combobox and enable when focus is not in combobox !!!

                thanks
                Attached Files

                Comment

                • GoOgLe
                  Forum Member
                  • Mar 2007
                  • 452

                  #9
                  help please :o

                  also just let me know if not possible

                  Comment

                  • GoOgLe
                    Forum Member
                    • Mar 2007
                    • 452

                    #10
                    is this code wrong ?

                    Code:
                    result = Page.GetFocus();
                    if result == "ComboBox1" then
                    DLL.CallFunction("AutoPlay\\Docs\\DisableMouse.dll", "DisableMouseWheel", 1, DLL_RETURN_TYPE_LONG, DLL_CALL_CDECL);
                    else
                    DLL.CallFunction("AutoPlay\\Docs\\DisableMouse.dll", "DisableMouseWheel", 0, DLL_RETURN_TYPE_LONG, DLL_CALL_CDECL);
                    end

                    Comment

                    • Imagine Programming
                      Indigo Rose Customer
                      • Apr 2007
                      • 4252

                      #11
                      As I have sayd before, don't message me about existing threads!
                      Bas Groothedde
                      Imagine Programming :: Blog

                      AMS8 Plugins
                      IMXLH Compiler

                      Comment

                      • mwreyf1
                        Indigo Rose Customer
                        • Aug 2004
                        • 417

                        #12
                        Please DO NOT private message me regarding open forum threads.

                        If I or someone else see's your post and can help then they will.

                        Comment

                        • longedge
                          Indigo Rose Customer
                          • Aug 2003
                          • 2498

                          #13
                          Originally posted by mwreyf1 (and others similar) View Post
                          please do not private message me regarding open forum threads.
                          It's not only me who is irritated then.

                          Comment

                          • mwreyf1
                            Indigo Rose Customer
                            • Aug 2004
                            • 417

                            #14
                            No your not.

                            DaSoulRed is also a big PM abuser.

                            I want to be able to get private messages but it would be nice to have a BLOCK list as well.

                            Comment

                            • Imagine Programming
                              Indigo Rose Customer
                              • Apr 2007
                              • 4252

                              #15
                              Originally posted by mwreyf1 View Post
                              No your not.

                              DaSoulRed is also a big PM abuser.

                              I want to be able to get private messages but it would be nice to have a BLOCK list as well.
                              Agreed. It's very annoying
                              Bas Groothedde
                              Imagine Programming :: Blog

                              AMS8 Plugins
                              IMXLH Compiler

                              Comment

                              Working...
                              X