0
votes
3answers
124 views
‘Safe’ DLL Injection
Not a terribly good question, sorry.
I have a program that needs to be alerted when a file is opened from explorer (i.e. ShellExecute(A/W) is called).
Unfortunately, Microsoft removed the COM …
2
votes
4answers
57 views
Hooking the windows COM runtime
Hi,
Is there an available tool which hooks the windows COM runtime?
I want to be able to see all the instances which get created, view queries to their interfaces, method calls, etc.
Thanks!
0
votes
1answer
49 views
C# Low-Level Keyboard Hook Not Working
This is the code for my keyhooking class, but it doesn't work. I was wondering if someone can tell me why? I'm instansiating it in another Console application. The debug message gives the proper …
1
vote
2answers
43 views
Can a script be automated after a commit on Perforce?
We use Perforce at work, and routinely keep software projects in the repository. In general creators follow the normal Perforce flow, BUT we also have a class of users, who doesn't have any need to …
0
votes
2answers
95 views
System Wide Shell Hook from .NET using Unmanaged DLL
Hello everyone,
I have used the code supplied in the following CodeProject article in the past with success, but it only seems to partially work on Vista/7 (I'm guessing because of UAC). It works for …
5
votes
2answers
128 views
“Are you sure you want to print X pages?” dialog before actually printing… (for any app)
In Internet Cafes where people are allowed to print, sometimes they print more pages than they intended to.
I'm looking for a way to display an "Are you sure you want to print X pages?" dialog after …
1
vote
4answers
202 views
C# - Hook into existing COM object
Say we have an existing process (or application) that calls a COM object from an ocx file such as "MyCOMLibrary.ocx".
Is there a way to write a C# library to exactly replicate the ocx file? So that …
1
vote
2answers
50 views
SVN post-commit hook not executing file
I have created an exe file that will print to console the first and second arguments that it receives.
In the SVN post-commit hook I wrote:
PATH_TO_FILE\print.exe "%1" "%2"
when I make a check-in, …
2
votes
1answer
84 views
Taking use of laptop custom buttons
I have a Lenovo Y550 laptop which has a nice looking touch sensitive strip with led lights on top of keyboard. The usage for this is however quite useless (it can be used to start 4 different Lenovo …
0
votes
4answers
95 views
Can I put LowLevelMouseProc and LowLevelKeyboardProc in the main EXE?
Global Windows hooks must be in a DLL because the hook is going to be called in the context of a different process, so the hook procedure's code must be injected into that process. However, there are …
1
vote
4answers
281 views
Hook into the Windows File Copy API from C#
Is there a way to hook into the Windows File Copy API from C#? I'm aware this would require unmanaged code, but a code sample or starter would be helpful. I've already seen the C++ code, but it's …
2
votes
4answers
80 views
Add a function in my .NET application as an event handler in another .NET application
We have a .net application that we didn't develop, but use. I can tell using reflector that this application has 1) a static variable in the form main form that is a reference to that "main" form and …
1
vote
3answers
83 views
How to check if a file is in Git repository when visiting from emacs?
I would be most happy with some kind of emacs hook that would be activated when a file that is under git repository is visited. But other solutions are welcome as well.
0
votes
3answers
101 views
Mouse hook in a specific window
I need to set a hook on mouse clicks, using C++, Win API. So that when an icon on the desktop is being clicked I get the event. How will this happen? I think the only information I get in mouse hook …
1
vote
1answer
102 views
How to repeat key strokes with SendInput?
I'm writing a little tool in VC++ to record key strokes to replay them later, a macro recorder. It works quite nice already, using a keyboard hook function that reads each and every key press and …
