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 7677265
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T17:23:02+00:00 2026-05-31T17:23:02+00:00

I am developing a tiny keylogger (for non-malicious purposes) and I want to write

  • 0

I am developing a tiny keylogger (for non-malicious purposes) and I want to write all logged keypresses to a text box. Currently, all calls to WriteOutput don’t write anything to the box except for the start and stop methods. What am I doing wrong?

Here is my code:

Program.cs

using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using System.Drawing;

namespace Logger
{
    /// <summary>
    /// Class with program entry point.
    /// </summary>
    internal sealed class Program
    {
        public static bool log = false;

        private const int WH_KEYBOARD_LL = 13;
        private const int WM_KEYDOWN = 0x0100;
        private static LowLevelKeyboardProc _proc = HookCallback;
        private static IntPtr _hookID = IntPtr.Zero;

        [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
        private static extern IntPtr SetWindowsHookEx(int idHook, LowLevelKeyboardProc 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);

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

        /// <summary>
        /// Program entry point.
        /// </summary>
        [STAThread]
        private static void Main(string[] args)
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            _hookID = SetHook(_proc);
            Application.Run(new MainForm());
            UnhookWindowsHookEx(_hookID);
        }

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

        private static IntPtr HookCallback(int nCode, IntPtr wParam, IntPtr lParam)
        {
            if (nCode >= 0 && wParam == (IntPtr)WM_KEYDOWN && log == true)
            {               
                int vkCode = Marshal.ReadInt32(lParam);

                MainForm MF = new MainForm();
                //THIS IS THE CALL THAT DOESN'T OUTPUT ANYTHING!
                MF.WriteOutput(vkCode.ToString());
            }
            return CallNextHookEx(_hookID, nCode, wParam, lParam);
        }       
    }
}

Mainform.cs

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;
using System.IO;

namespace Logger
{
    /// <summary>
    /// Description of MainForm.
    /// </summary>
    public partial class MainForm : Form
    {       
        public MainForm()
        {
            InitializeComponent();
        }

        public void WriteOutput(string input)
        {
            output.AppendText(string.Format(input));
            using (StreamWriter sr = new StreamWriter("log.log", true))
            {
                sr.Write(input.ToString());
            }
        }

        private void StartClick(object sender, System.EventArgs e)
        {
            Program.log = true;
            output.AppendText(string.Format("Logging started\n"));
        }

        private void StopClick(object sender, EventArgs e)
        {
            Program.log = false;
            output.AppendText(string.Format("Logging stopped\n"));
        }
    }
}
  • 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-31T17:23:03+00:00Added an answer on May 31, 2026 at 5:23 pm

    You are instantiating a new form each time:

    MainForm MF = new MainForm();
    MF.WriteOutput(vkCode.ToString());
    

    Instead, re-use the same MainForm instance. In Program.cs:

    private static MainForm mainForm;
    
    ....
    
    [STAThread]
    private static void Main(string[] args)
    {
        ...
        mainForm = new MainForm();
        Application.Run(mainForm);
        ...
    }
    
    ....
    
    mainForm.WriteOutput(vkCode.ToString());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Since I'm a TDD newbie, I'm currently developing a tiny C# console application in
I'm developing software that writes to a tiny LCD screen (less than 1 x
Developing server side code i finally got my eyes X-crossed trying to write -
I am developing Twitter API to my application. In my app, I want to
I'm currently developing my first android app, and my first game. I've been developing
Developing an app where all tabular data is returned as an object. Some cells
Developing an application for Android, i want to record data that will be usefull
Developing mobile apps is a challenging job. Customers want to be present not only
I am developing a tiny webapp on google app engine using python. I am
Developing websites are time-consuming. To improve productivity, I would code a prototype to show

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.