Click here to Skip to main content
15,895,746 members
Articles / Desktop Programming / Win32

Spying Window Messages from the Inside

Rate me:
Please Sign up or sign in to vote.
4.94/5 (25 votes)
18 Feb 2009GPL36 min read 108.8K   13.9K   136  
An article on Hooking and Monitoring Window messages
using System;
using System.Windows.Forms;

class EntryPoint
{

    static int Main(string[] args)
    {
        Application.EnableVisualStyles();

        try { Deviare.SpyMgr _mgr = new Deviare.SpyMgr(); }
        catch { Exception e;       
            MessageBox.Show("Deviare is not installed, Please download and install Deviare");
            System.Diagnostics.Process.Start("http://www.nektra.com/products/deviare/download.php");
            return 0;
        }


        DeviareMsgSpy.Window wnd = new DeviareMsgSpy.Window();
        wnd.Show();

        Application.Run();
      


        return 0;
    }

}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer
Argentina Argentina
C/C++ developer interested on operating systems, reverse engineering, general system programming, CPU architecture, etc.
Now I'm working creating plugins Outlook Plugin Development.

Comments and Discussions