Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › C# Programming › Form showing mouse coordinates

Form showing mouse coordinates

Posts 1–4 of 4 · Page 1 of 1
VI
vitaminb2
Form showing mouse coordinates
Hello, Ive build an form that showing your mouse coordinates outside the form.

Code:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace MouseCoordinates
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            TimerMouseCoordinates.Start();
        }

        private void btnExit_Click(object sender, EventArgs e)
        {
            Application.Exit();
        }

        private void TimerMouseCoordinates_Tick(object sender, EventArgs e)
        {
            lblXas.Text = "X = " + Cursor.Position.X;
            lblYas.Text = "Y = " + Cursor.Position.Y;
        }
    }
}
Screenshot
http://prntscr.com/3id47t

VirrusScan
https://www.virustotal.com/nl/file/f...is/1399842297/
http://virusscan.jotti.org/en/scanre...43d89604b9834e

MouseCoordinates_mpgh.net.rar
#1 · 12y ago
MarkHC
MarkHC
So... you used a C# built-in method to do it? Congratz i guess... but why post it here? -.-
#2 · 12y ago
BACKD00R
[MPGH]BACKD00R
File Clear - Approved!
#3 · 12y ago
ZD
zdm
cool basic use for c# , usefull if you want to make a teamviewer like program
#4 · 12y ago
Posts 1–4 of 4 · Page 1 of 1

Post a Reply

Similar Threads

  • Set form position to mouse coordinates?By Lolland in Visual Basic Programming
    13Last post 16y ago
  • Need mouse coordinatorBy UxGotxShot in Suggestions, Requests & General Help
    0Last post 16y ago
  • mouse coordinate for botBy tiiomas in WarRock Hack Source Code
    2Last post 14y ago
  • How to find your mouse coordinates!By shawnstuh in Vindictus Tutorials
    0Last post 15y ago
  • [Source]Form Following mouseBy qddW$#%^jtyjtyj in Visual Basic Programming
    2Last post 16y ago

Tags for this Thread

#c# project#help#help c##mouse#mouse coordinates