2
votes
1answer
56 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
votes
2answers
114 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 …
0
votes
4answers
76 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
78 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
76 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
65 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
1answer
54 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
57 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 …
1
vote
4answers
197 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
3answers
139 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
86 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 …
0
votes
0answers
23 views
Winlogon: How to run app after explorer terminates during logoff?
Windows XP/VISTA/7
How might it be possible to run an application during the logoff procedure of a user, after explorer.exe terminates?
The purpose is to block shutdown but with …
0
votes
1answer
53 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 o …
2
votes
2answers
28 views
Is there a way to hook or intercept CoGetClassObject and/or CoCreateInstance calls?
I'd like to intercept the COM CoCreateInstanceEx and/or CoGetClassObject functions to replace a class with a testing shim in a unit test. This will only be for a single CLSID; all …
1
vote
1answer
38 views
Adding a hook to script/generate migration
I do my Rails dev from xterm and in vim.
I'm getting sick of running script/generate migration do_whatever, then trawling through db/migrate trying to tab-complete to 200910152350 …
