1
vote
1answer
19 views
Global Shell Hook only registering local events
I am trying to use a global shell hook to listen for windows created and destroyed events, but it seems as though my program is only registering the destroyed event for the local t …
0
votes
1answer
39 views
C# - Determine if user is moving a window
I am going to be checking if the user is moving any window around (my application does not have an interface) and respond accordingly. What do you think is the best way to do this? …
18
votes
4answers
452 views
how do aim bots in fps games work?
I was curious if anyone had any experience/knowledge about aim bots in online FPS games such as Counter-Strike. I am curious and would like to learn more about how the cursor knows …
0
votes
0answers
6 views
User registration/login external to Wordpress MU
Can anyone point me in the right direction with regards to registering a new user in WordPress (MU specifically) from outside of wordpress? I'd also like to have the user log in/o …
2
votes
3answers
22 views
keyboard hook in windows C++ or what?
Hi,
I wish to build my own application which can send keyboard commands(messages) to the Windows OS.
For example when I press ctrl+shit+n, I wish to launch the notepad.exe . How …
0
votes
3answers
199 views
codeigniter hook for app version checking
I am using CodeIgniter to build an application.
The app is having many AJAX requests on setTimeoutInterval, which fires every few seconds.
Now the situation is:
If a user has a p …
0
votes
0answers
1 views
Hooks or Subclassing on 3rd party ActiveX
Can we hook or sub-class a 3rd party activeX ocx like acrobat reader control such that it cannot receive WM_LBUTTONDOWN message? If yes then how it is possible ?
Thanks in advance …
3
votes
4answers
782 views
git push email notification
How do I configure the appropriate git hook to send a summary email whenever a set of changes is pushed to the upstream repository?
2
votes
2answers
45 views
git hooks and how they work
So I'm trying to get hudson to build with a post-receive hook. In my local git repo I set post-receive.sample to just post-receive, chmod 755 and added in the line:
/usr/bin/curl …
2
votes
1answer
51 views
Useful Mercurial Hooks
What are some useful Mercurial hooks that you have come across?
A few example hooks are located in the Mercurial book:
acl
bugzilla
notify
check for whitespace
I personally d …
0
votes
1answer
46 views
Git Hook: Take action when a branch is advanced
I'm looking to build and publish a latex document every time I advance the tip of a specific branch.
I'm looking at what hook I should be putting my build script and which conditi …
1
vote
3answers
140 views
Alternatives to windows hooks in C#?
I would like to get notification of when any/all programs are being actively used.
To do this via windows hooks I'd use an unmanaged C++ dll that talks to C#. There is an articl …
0
votes
5answers
127 views
Subversion: How to append text to every committed file?
I am looking for a way to do the following either on pre-commit or post-commit or any other way.
Here is what I need to be working
User commits the file
Something runs (hook …
0
votes
1answer
24 views
Hooks for Direct3D 6.1 to replace EMBM with shaders
I am writing Windows Hooks for DirectX 6.1. I want to intercept calls for EMBM (Environment Mapped Bump Mapping) and pass the data to own bump shader, so application which depend o …
0
votes
2answers
60 views
Need to disable mouse right click in Windows?
I am creating a system tray app which monitors mouse clicks in Windows. I want to disable the right mouse click. My app is based on this sample code.
In the HookCallback method, I …
