Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6236139
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T10:47:51+00:00 2026-05-24T10:47:51+00:00

Im currently creating a AFKChecker for my application. The problem is that the low

  • 0

Im currently creating a AFKChecker for my application.
The problem is that the low level mouse hook doesnt get called.
I have checked if it returns 0 which it doesnt.
So the keyboard hook works but not the mouse hook.
I have googled, but I have still not found a solution for my problem.

using System;
using System.Diagnostics;
using System.Runtime.InteropServices;

namespace AFKChecker
{
    public static class ActivityChecker
    {
        public static Int64 LastKeypress = 0;
        public static int AFKTime = 300;

        private const int WH_KEYBOARD_LL = 13;
        public const int WH_MOUSE_LL = 14;
        private static HookProc _keyproc = HookCallback;
        private static IntPtr _keyhookID = IntPtr.Zero;
        private static HookProc _mouseproc = HookCallback;
        private static IntPtr _mousehookID = IntPtr.Zero;

        public static void AddHook()
        {
            LastKeypress = Tools.UnixTime();
            _keyhookID = SetKeyboardHook(_keyproc);
            _mousehookID = SetKeyboardHook(_mouseproc);
        }

        private static IntPtr HookCallback(
        int nCode, IntPtr wParam, IntPtr lParam)
        {
            LastKeypress = Tools.UnixTime();
            return CallNextHookEx(_keyhookID, nCode, wParam, lParam);
        }

        public static void RemoveHook()
        {
            UnhookWindowsHookEx(_keyhookID);
            UnhookWindowsHookEx(_mousehookID);
        }

        public static Boolean IsAFK()
        {
            return (LastKeypress + AFKTime > Tools.UnixTime());
        }

        private static IntPtr SetKeyboardHook(HookProc proc)
        {
            using (Process curProcess = Process.GetCurrentProcess())
            using (ProcessModule curModule = curProcess.MainModule)
            {
                return SetWindowsHookEx(WH_KEYBOARD_LL, proc,
                    GetModuleHandle(curModule.ModuleName), 0);
            }
        }

        private static IntPtr SetMouseHook(HookProc proc)
        {
            using (Process curProcess = Process.GetCurrentProcess())
            using (ProcessModule curModule = curProcess.MainModule)
            {
                return SetWindowsHookEx(WH_MOUSE_LL, proc,
                    GetModuleHandle(curModule.ModuleName), 0);
            }
        }

        private delegate IntPtr HookProc(
            int nCode, IntPtr wParam, IntPtr lParam);

        [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
        private static extern IntPtr SetWindowsHookEx(int idHook,
            HookProc lpfn, IntPtr hMod, uint dwThreadId);

        [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
        [return: MarshalAs(UnmanagedType.Bool)]
        private static extern bool UnhookWindowsHookEx(IntPtr hhk);

        [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
        private static extern IntPtr CallNextHookEx(IntPtr hhk, int nCode,
            IntPtr wParam, IntPtr lParam);

        [DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
        private static extern IntPtr GetModuleHandle(string lpModuleName);
    }
}

Best regards

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T10:47:52+00:00Added an answer on May 24, 2026 at 10:47 am

    It seems like you are not calling SetMouseHook, re-check your AddHook() function:

        public static void AddHook()
        {
            LastKeypress = Tools.UnixTime();
            _keyhookID = SetKeyboardHook(_keyproc);
            _mousehookID = SetKeyboardHook(_mouseproc); // SetMouseHook() here?
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm currently creating an application for a customer that will allow them to automatically
I am currently creating an application that has a user, the user can follow
I am currently creating a web application that will be deployed in an intranet
I am currently creating a customer application for a local company. I have a
I am currently creating a java application in which I have a 2d array
I am currently creating a utility class that will have overloaded operators in it.
Im currently creating a uninstallation application which deletes the application folder. The problem is
I'm currently creating rspec test cases for a Rails 2.3 application. The problem I'm
Im currently creating a PHP application that searched various Social Media and analyses the
I am currently creating a website and have some javascript that works in all

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.