0
votes
2answers
79 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 re …
2
votes
1answer
27 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, et …
1
vote
2answers
36 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' …
5
votes
2answers
127 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 p …
1
vote
2answers
46 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"
whe …
2
votes
1answer
77 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 …
0
votes
4answers
88 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. …
1
vote
3answers
82 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.
2
votes
4answers
79 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 …
0
votes
3answers
85 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 …
1
vote
4answers
254 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 …
1
vote
1answer
85 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 ever …
1
vote
3answers
182 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 …
1
vote
1answer
129 views
Low-level keyboard hook issue : Keyboard state losed when application is not focused (Delphi)
Hello,
I've been asked to develop a new application that will work along side the existing one. Both application will wait for a barcode reader input. I don't want our operator to …
1
vote
3answers
66 views
change a keystroke passing a hook(c/c++)
hello!
is it possible to edit a keystroke using a winapi keyboard hook? well, not neccesary a keyboard hook but something like it..
i wanna do something like this:
user presses …
