hook

Drupal hook alter with hook validate

I have a CCK defined form called 'mytype_node_form'. I create a module called form_overrides I create a function called form_overrides_form_alter where I successfully check for $form_id = 'mytype_node_form' Question: What should be the name of my validation function (hook_validate) in module form_overrides that would allow me to add ...

help explaining precommit remove trailing whitespace script

Could someone help explain what is going on in this precommit hook? I thought changing files would cause them to be restaged. http://snipplr.com/view/28523/git-precommit-hook-to-fix-trailing-whitespace/ ...

How Do I Detect A WordPress Admin Panel in my Plugin?

I've got two events in my plugin. One is run for the front-end. The other is run for the admin panel. Both call the same function in one particular situation, and this echoes stuff to the screen. How do I make it such that the function is smart, calls something in WordPress, and detects whether it's being loaded in the front-end versus t...

Read Text From Windows Form

I would like, if for no other reason that an academic exercise, to be able to read text written to a form on a Windows Application. The program appears to be written in non-.NET, but in .NET terms, I think you would describe the program as having a Form with a Label and I would like to read the text from that label. I believe I can see...

How to change the sorting of a view using hook_views_pre_view()?

I've got the following: function view_sorter_views_pre_view(&$view) { // don't need $items if ($view->name == 'MOST_RECENT') { $insert = array(); $insert[order] = 'DESC'; //SORT ORDER $insert[id] = 'title'; $insert[table] = 'node'; $insert[field] = 'title'; $insert[override] = array(...

SVN change property in pre-commit

I want to have a pre-commit hook check if the current commit is a tag, and if so, check for any svn:externals properties and change them to have revisions if they do not. I have a good idea of how to grep for if they are tags or not, but getting and changing the properties is proving challenging. ...

Hooking extTextOut problems

Hi, I am working on a dll injection soft in c#, the injected dll is also in c# and i'am using pinvoke for certain system functions. When using extTextOut i get the string scrambled and the lines get mixed together What am i doing wrong? I hooked extTextOut using EasyHook from codeplex.com like this: try { ...

Windows API Programming....

Hello There... Its me Vijay.. I m Trying to make a CrossHair(some kind of cursor) On The Screen while running a Game (Counter Strike)... so i did this... ############################# #include<iostream.h> #include<windows.h> #include<conio.h> #include<dos.h> #include<stdlib.h> #include<process.h> #include <time.h> int main() { ...

Set focus on particular tab in IE and/or FireFox

Hi all, I want to write an application that will monitor the content of all open tabs in IE / FireFox and trigger event once particular data is displayed in the tab. I would like to know if there is an API for IE/FF to set focus on particular TAB, so that once event is triggered I set focus on a relevant tab. Thanks in advance ...

How to return the handle of a window when we click on it, without any DLL injection?

Hello! For one of my projects, I need to create a function that will return a handle to a window when the user click on it (any window displayed on screen, and anywhere inside that window). I know it is possible to use a global hook, but I think there must be a more simple way of doing that, without using any DLL injection. In fact, I ...

Monitor Windows API withOUT drivers or injection - Can it be done?

I have a list of a few windows API I would like to monitor on both 32 and 64 bit versions of Windows. Now, there are two basic approaches to this - Kernel based system wide hook driver - which won't work on Win 7 64 bit. And I'd like to refrain from using kernel drivers where possible in any OS. DLL Injection into specific processes....

Is it possible to register a user and submit a comment with one form with Wordpress?

Is it possible to do both registering for an account and submit a comment at the same time? I want the user to be able to do this all on one page to ecourage the registration rather than be discouraged about typing something, not realizing they had to be registered and thus having to leave the page. I think that this could be done by a...

Drupal: How to modify menu items with hooks?

I need to add the URL 'user/7/orders' to a particular menu. As this requires PHP for the UID (7), how do I write a script to add an item to a particular menu? ...

Module not found

Hi There! I've been working on this one quite a bit and haven't gotten any closer to a solution. I juut dug up my old copy of the WindowsHookLib again - It's available with source at http://www.codeproject.com/KB/DLL/WindowsHookLib.aspx. This library allows Global Windows Mouse/Keyboard/Clipboard Hooks, which is very useful. I'm tryin...

How to capture the event if a new process (application!) is started?

I would like to have some eventhandler which raise if a new application is started. I've heard that this is possible by using a hook but the only examples I can find are based on mouse/keyboard events. What is an example link of how I can create such a hook in C#? Oh and btw: Nope, I don't want to use WMI which could be a solution as w...

How to hook for particular windows message without subclassing?

Is there a way to hook for a particular windows message without subclassing the window. There is WH_GETMESSAGE but that seems create performance issues. Any other solutions apart from these which doesn't deteriorate performance? ...

handling ImageList with windows hooks

Hi, I am programming an application that can catching the information about the screen items by Hooks Now I am trying to get the information of the ImageList when I pass them by mouse, "I want to know the name of the item" how can i do this? Thank you. ...

how can i get notified on every control clicked in another application?

Hi all, Im writing an application that needs to get notified when a control in another application is clicked\invoked. How can i catch the click from my application? Here are some more related questions : Is UIAutomation can be a solution? is it working on unmanaged applications also? Is the Spy++ solution works also on managed applic...

add/get/delete/update_option() not working in activation hook (wordpress)

I'm in the process of updating a WordPress plugin that's been out for a while, and part of "future proofing" the plugin is to get rid of some shoddy naming schemes that were implemented in the beginning phases of the plugin. I figured I would simply add an activation hook which would check to see if any of those names existed, and if so...

Python msn hook - possible?

Is it possible to hook msn via a python application to send messages to your contacts etc? ...