1
vote
2answers
27 views
Git post-receive hook acts differently to shell
I'm trying to setup a git repo on my live server to automatically update a subdomain on receive. Using this guide http://toroid.org/ams/git-website-howto.
hooks/post-receive
#!/bin/sh
pwd
git …
4
votes
3answers
695 views
Firefox/Gecko control interfering with Windows Forms key presses
Edit: In addition to the bounty, we're willing to pay $250 to have this bug fixed in the Firefox/Gecko codebase. Here is a simple test project (Visual Studio 2008 C#) that reproduces the problem.
…
3
votes
1answer
130 views
drawing under icons on desktop
I wrote a program who paints widget on desktop wallpaper, under desktop icons, and all was good.
But I reveal a strange bug - my program was not works on some other computers - they displays
the same …
1
vote
1answer
30 views
I Don’t get the WM_GETMINMAXINFO message from other applications
Hello!
In my C-Dll there is a Windows hook:
hook = SetWindowsHookEx(WH_CALLWNDPROC, CallWndProc, hinstance, 0);
With this Callback method:
LRESULT CALLBACK CallWndProc(int nCode, WPARAM wParam, …
8
votes
8answers
715 views
What is meant by the term “hook” in programming?
I recently heard the term "hook" while talking to some people about a program I was writing. I'm unsure exactly what this term implies although I inferred from the conversation that a hook is a type …
1
vote
5answers
74 views
Setting application hooks - C#/ASP.NET
Many popular applications such as Wordpress, WHMCS and the majority of PHP forums allow plugins to hook into core application events (such as registration, logging in, create post etc.) by simply …
0
votes
1answer
121 views
Overlay Window not drawing correctly when hooking
The requirement is to draw my information in side of another application's window.
To take care of z order and so forth hooking WH_GETMESSAGE and draw on WM_PAINT seem good.
However some WM_PAINT are …
1
vote
3answers
147 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 …
0
votes
2answers
112 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 …
0
votes
1answer
155 views
Hook to WM6 sound
How can i hook to the window mobile sound (driver?) and read the data while it is passing it to the speaker.
1
vote
4answers
230 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 …
0
votes
0answers
12 views
Is there any possible way to make hook flash to any extension throoght software?
I like to make conference call following this step.
2222 make call to 3333 (phone)
3333 receive phone call (phone)
simulate push flash button to 2222 thought AMI/? (software)
originate call to 4444 …
14
votes
17answers
1k views
Share common / useful SVN pre-commit hooks
What are some common and/or useful pre-commit hooks for SVN?
0
votes
3answers
147 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
70 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!
