active questions tagged hook - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T10:42:10Z http://stackoverflow.com/feeds/tag/hook http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1943965/modifying-global-system-menus 0 Modifying global system menus icemanind 2009-12-22T03:16:12Z 2009-12-22T03:37:32Z <p>Is there a way in C# to globally add a menu item to all the system menus on all active windows? Perhaps under the "Maximize" command?</p> http://stackoverflow.com/questions/1937507/run-php-functions-on-selected-wordpress-pages 0 Run php functions on selected Wordpress pages burntsugar 2009-12-20T23:41:47Z 2009-12-21T15:42:40Z <p>Hi, I am trying to customise a Wordpress theme. I have a function in themes/functions.php that I would like to run on some pages.</p> <p>I need to be to:</p> <ol> <li>Detect the page ID to determine whether the function should execute</li> <li>Determine which hook to attach the function to (preferably something like page load.</li> </ol> <p>Cheers</p> http://stackoverflow.com/questions/1938183/php-function-or-file-to-run-before-and-after-every-request 2 PHP function or file to run before and after every request jcmoney 2009-12-21T04:28:47Z 2009-12-21T04:40:22Z <p>I am wondering if there is a way to specify a php function or file to be called every time a user visits and exits a page on my site. So if a user visits say example.com/ex.php can I have a function called before ex.php is run and after ex.php is finished?</p> <p>I want to be able to record the time it takes to execute php files on my site and store that so I can run queries later to analyze the info. I would prefer not to have to add code to the beginning and end of every file I want to track.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1913726/has-gitorious-hooks-for-cia-commit-notification 0 Has Gitorious hooks for CIA commit notification? Egon Willighagen 2009-12-16T10:26:19Z 2009-12-20T16:46:44Z <p>As I am running out of my space on <a href="http://github.com" rel="nofollow">GitHub</a> on my free account (yes, I am considering upgrading), I am setting up new <a href="http://git-scm.com/" rel="nofollow">git</a> repositories on Gitorious (see also <a href="http://stackoverflow.com/questions/78991/why-is-github-more-popular-than-gitorious">GitHub vs Gitorious</a>). One great feature of GitHub is the post-commit hooks, that allow me to notify the (also great) <a href="http://cia.vc/" rel="nofollow">CIA network</a>...</p> <p>However, I have been unable to find if Gitorious supports such hooks... So, I'd like to ask best practices for getting commit messages show up on the CIA network for Gitorious-hosted git repositories.</p> http://stackoverflow.com/questions/1928023/how-can-i-prevent-subversion-commits-without-comments 2 How can I prevent Subversion commits without comments? Maverick 2009-12-18T12:47:30Z 2009-12-18T13:14:29Z <p>Hi,</p> <p>Does anybody know how to prevent commits to a Subversion code repository when there is no commit comment entered?</p> <p>Thanks in advance.</p> <p>Kind regards, Maverick</p> http://stackoverflow.com/questions/1411718/drawing-under-icons-on-desktop 3 drawing under icons on desktop vsvasya 2009-09-11T15:43:41Z 2009-12-18T03:43:03Z <p>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 desktop without widget after start. </p> <p>So, have anybody any expirience, some knowledge in this area? Please, help me! :)</p> <p>(I can't find any computers near, where widget not works, in my computer all works well. I wrote a lot of test programs, whose tries draw anything on desktop with rather methods, but test displays nothing too in my friends computers.)</p> <p>Drawing method:</p> <p>I wrote a dll, who finds desktop window (progman->child->child )) and creates a hook and install own window procedure for desktop. In window procedure i hook WM_ERASEBKGND: </p> <pre><code>case WM_ERASEBKGND: HDC hdc = (HDC)wparam; PaintDesktop(hdc); WidgetPaint(hdc); return 1; </code></pre> <p>// I skip in this code getting and setting clipping areas for fast drawing. (I tried all combinations with clipping and without clipping)</p> <p>And in tests I also trying to paint widget in WM_PAINT message with same results -- all already works at me, but works not at all my friends.</p> <p>upd: I solved it! :)</p> http://stackoverflow.com/questions/1088139/what-is-the-recommended-way-to-hook-win32-apis-for-a-commmercial-application 1 What is the recommended way to hook Win32 APIs for a commmercial application? Cerulean code 2009-07-06T17:13:08Z 2009-12-17T06:59:41Z <p>What is your recommendation for an API hooking library or code to be used in a commercial application?</p> <p>I have looked at Microsoft Detours which seems to be very good, but definitely is out of budget for the profit I am expecting out of my application. </p> <p>Is there any library that offers compatibility across WinXP and Vista (and Windows 7 if not too much to ask!)? Is there anyone with past experience in using such a library in a commercial product?</p> http://stackoverflow.com/questions/1915042/wordpress-base-path-hook 0 Wordpress Base Path Hook? unknown (google) 2009-12-16T14:37:51Z 2009-12-16T14:53:07Z <p>What's the wordpress / php hook to link to the base path of the wordpress installation? I want to be able to link to the home page of the wordpress blog, regardless of which directory the theme is installed in.</p> http://stackoverflow.com/questions/1898117/git-post-receive-hook-acts-differently-to-shell 1 Git post-receive hook acts differently to shell Jake 2009-12-13T23:01:58Z 2009-12-15T02:22:22Z <p>I'm trying to setup a git repo on my live server to automatically update a subdomain on receive. Using this guide <a href="http://toroid.org/ams/git-website-howto" rel="nofollow">http://toroid.org/ams/git-website-howto</a>.</p> <p><strong>hooks/post-receive</strong></p> <pre><code>#!/bin/sh pwd git checkout -f </code></pre> <p><strong>config</strong></p> <pre><code>[core] repositoryformatversion = 0 filemode = true bare = false worktree = /var/www/vhosts/domain.com/subdomains/staging/httpdocs [receive] denycurrentbranch = ignore </code></pre> <p>If I run git <em>checkout -f</em> in /var/git/domain.com.git/ it works, the subdomain is updated. However, when I push I get the following output:</p> <pre><code>/var/git/domain.com.git fatal: This operation must be run in a work tree </code></pre> <p>I'm not sure why this works in the shell, but not in the hook. Can anyone enlighten me?</p> http://stackoverflow.com/questions/1110769/firefox-gecko-control-interfering-with-windows-forms-key-presses 4 Firefox/Gecko control interfering with Windows Forms key presses Judah Himango 2009-07-10T17:08:16Z 2009-12-14T17:08:24Z <p><em>Edit</em>: In addition to the bounty, we're willing to pay $250 to have this bug fixed in the Firefox/Gecko codebase. <a href="http://judahhimango.com/GeckoKeyHookErrorRepro.zip" rel="nofollow">Here is a simple test project</a> (Visual Studio 2008 C#) that reproduces the problem.</p> <p><em>Edit #2</em> we're willing to pay $600 to have this bug fixed. See above for sample project that reproduces the problem.</p> <p>We have a Firefox (Gecko) ActiveX control on our C# Windows Form to display HTML.</p> <p>When this Firefox ActiveX control is on our form, about 2-3% of our key presses don't make it through. Or rather, a different Windows message is sent:</p> <p>We hold down the TAB key to tab through 3 regular WinForms text boxes. It will behave correctly 97% of the time. Spy++ tells us WM_KEYDOWN message is sent properly:</p> <p><img src="http://judahhimango.com/images/normaltab.jpg" alt="normal behavior" /></p> <p>But randomly, maybe 2-3% of the time, the tab key (or other key) isn't processed right. Spy++ tells us WM_CHAR is being sent instead:</p> <p><img src="http://judahhimango.com/images/screwytab.png" alt="odd behavior" /></p> <p>When the odd behavior occurs, either the key is not processed at all, or is processed incorrectly (such as inserting a '\t' character into a textbox that doesn't support tab characters.</p> <p>This only occurs if the Firefox ActiveX control is on our form.</p> <p><strong>Our question is</strong>: does Firefox/Gecko engine install some kind of keyboard hook that might cause these side effects? Or better yet, how do we fix this problem?</p> http://stackoverflow.com/questions/1614497/i-dont-get-the-wmgetminmaxinfo-message-from-other-applications 1 I Don't get the WM_GETMINMAXINFO message from other applications Marlene 2009-10-23T16:17:56Z 2009-12-11T08:00:23Z <p>Hello!</p> <p>In my C-Dll there is a Windows hook:</p> <pre><code>hook = SetWindowsHookEx(WH_CALLWNDPROC, CallWndProc, hinstance, 0); </code></pre> <p>With this Callback method:</p> <pre><code>LRESULT CALLBACK CallWndProc(int nCode, WPARAM wParam, LPARAM lParam) { ... CWPSTRUCT* cw = reinterpret_cast&lt;CWPSTRUCT*&gt;(lParam); myfile &lt;&lt; "CallWndProc allg. " &lt;&lt; cw-&gt;message &lt;&lt; "\n"; if (cw-&gt;message == WM_GETMINMAXINFO) { // I don't get the message here } } </code></pre> <p>I get all Windows messages except the WM_GETMINMAXINFO message. I want to modify the maximum size of a window. How can I resolve this problem?</p> <p>Thank you very much! <br/> Andy</p> http://stackoverflow.com/questions/467557/what-is-meant-by-the-term-hook-in-programming 8 What is meant by the term "hook" in programming? Chris 2009-01-21T23:52:51Z 2009-12-08T23:47:50Z <p>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 of function. I searched for a definition but was unable to find a good answer. Would someone be able to give me an idea of what this term generally means and perhaps a small example to illustrate the definition?</p> http://stackoverflow.com/questions/1856836/setting-application-hooks-c-asp-net 1 Setting application hooks - C#/ASP.NET Baddie 2009-12-06T22:24:13Z 2009-12-06T22:39:01Z <p>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 specifying a function with a particular name.</p> <p>I understand that these applications are not pre compiled, but is it possible to do something of the sort with C#? I've looked into event handlers, but it seems that you can only accomplish this if the plugin has the ability to instantiate the class that we want to hook into (or at least thats what searching has lead me to believe)</p> <p>Ideally, these hooks would be into business layer class events/methods and can be hooked into <strong>by multiple objects</strong>, so it would function in either WinForms or ASP.NET MVC.</p> http://stackoverflow.com/questions/944538/overlay-window-not-drawing-correctly-when-hooking 0 Overlay Window not drawing correctly when hooking s5804 2009-06-03T12:46:44Z 2009-12-03T18:04:58Z <p>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.</p> <p>However some WM_PAINT are intended for the window area of my concern, but other WM_PAINT are for something completely different, like a context menu or button.</p> <p>Example Notepad is hooked with an overlay writing "Hello" into the Notepad screen. This works fine. However when right clicking Notepad the context menu gets overlay with Hello. Basically the context menu is destroyed.</p> <p>Is there an elegant way of determining what WM_PAINT is context menu?</p> <pre><code>LRESULT CALLBACK overlayHook(int code, WPARAM wParam, LPARAM lParam) { //Try and be the LAST responder to WM_PAINT messages; LRESULT retCode = CallNextHookEx(hhk, code, wParam, lParam); //Per GetMsgProc documentation, don't do anything fancy if(code &lt; 0) { return retCode; } //Assumes that target application only draws when WM_PAINT message is //removed from input queue. if(wParam == PM_NOREMOVE) { return retCode; } MSG* message = (MSG*)lParam; if(message-&gt;message != WM_PAINT) { //Ignore everything that isn't a paint request return retCode; } PAINTSTRUCT psPaint; BeginPaint(message-&gt;hwnd, &amp;psPaint); HDC hdc = psPaint.hdc; RECT r = psPaint.rcPaint; TextOut(hdc, 10, 10, "Hello", 4); EndPaint(message-&gt;hwnd, &amp;psPaint); return retCode; } </code></pre> <p>It is not enough to test for the draw update region, because the context menu could be anywhere and contain the area of my concern.</p> http://stackoverflow.com/questions/1643676/how-to-repeat-key-strokes-with-sendinput 1 How to repeat key strokes with SendInput? LonelyPixel 2009-10-29T13:20:30Z 2009-12-02T04:24:10Z <p>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 release event. The playback works with the SendInput() function and generally also works fine - except for repeating key strokes. Pressing a key several times after releasing it every time is no problem. But pressing it and holding it down, for the input character to be repeated, can be recorded but can only be replayed in some applications. Some accept and enter the character multiple times, some do it only once. (It is reproducible which does which.) The macro recorder itself also sees the held down key pressed just a single time during playback, through its monitoring hook.</p> <p>So, how can I make SendInput send multiple subsequent key strokes of a single key without adding key release events on my own in between? Sending a sequence of [press] [press] [press] ... [release] doesn't always work.</p> http://stackoverflow.com/questions/1596363/system-wide-shell-hook-from-net-using-unmanaged-dll 0 System Wide Shell Hook from .NET using Unmanaged DLL Lusid 2009-10-20T18:07:47Z 2009-11-28T14:31:27Z <p>Hello everyone,</p> <p>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 the current thread, but it doesn't pick up system wide activity. I've tried adding requireAdministrator in the manifests and signing both the unmanaged and managed assemblies, and that doesn't appear to help.</p> <p><a href="http://www.codeproject.com/KB/system/WilsonSystemGlobalHooks.aspx?msg=2973494" rel="nofollow">Using Window Messages to Implement Global System Hooks in C#</a></p> <p>My main goal is to use SetWindowsHookEx to catch the HSHELL_WINDOWCREATED and HSHELL_WINDOWDESTROYED messages in the unmanaged assembly, and notify the C# application so that it can use the information in real time. It basically just needs to know whenever a window is created or destroyed in the system.</p> <p>I also found an example application that is pure C/C++ that works just fine in Vista/7, but I really don't want to have to write the entire application in C/C++ as I prefer C#.</p> <p><a href="http://www.codeguru.com/forum/showpost.php?p=908859&amp;postcount=8" rel="nofollow">System Wide Hook Example that Works</a></p> <p>Anyone know how to fix the code in the first CodeProject article so that it works on Vista/7 as well? Or have any other examples of ways I can do this without creating timers and similar hacks in C#?</p> <p>Thanks, Marc</p> http://stackoverflow.com/questions/322988/hook-to-wm6-sound 0 Hook to WM6 sound Dacto 2008-11-27T05:21:10Z 2009-11-27T16:00:03Z <p>How can i hook to the window mobile sound (driver?) and read the data while it is passing it to the speaker.</p> http://stackoverflow.com/questions/1563051/c-hook-into-existing-com-object 1 C# - Hook into existing COM object Jonathan.Peppers 2009-10-13T21:38:19Z 2009-11-26T17:05:18Z <p>Say we have an existing process (or application) that calls a COM object from an ocx file such as "MyCOMLibrary.ocx".</p> <p>Is there a way to write a C# library to exactly replicate the ocx file? So that the original application can call your C# code rather than the original COM object?</p> <p>You would, of course, have to use identical CLSID and ProgIDs as the original ocx. And assuming there is no signing involved, such as a SNK in the .Net world.</p> <p>Also, are there any tools that exist to automate this? Something that takes in an ocx and spits out a C# file with methods to implement.</p> <p>EDIT: I want to add that the original application is VB6, and does not use .Net at all. They are most likely loading the ocx as a VB6 app would (ProgId or Guid). Does this cause any issues?</p> <p>We also have no problem with completely rewriting the ocx--we will most likely just return success error codes for all methods and only use methods/events required by our situation.</p> <p>EDIT: You would think this would not be too difficult to accomplish. Can we make a VB6 ocx file that could replace the old ocx, and just pass all calls to a .Net assembly?</p> <p>EDIT: I tried using the following open source library: <a href="http://easyhook.codeplex.com" rel="nofollow">EasyHook</a></p> <p>But it seems like this question should still be viable. VB6 seems to load COM objects in a way that prevents hooking. I don't see a way to hook instance methods on a class/interface or a class's constructor with EasyHook.</p> http://stackoverflow.com/questions/1794795/is-there-any-possible-way-to-make-hook-flash-to-any-extension-throoght-software 0 Is there any possible way to make hook flash to any extension throoght software? bugbug 2009-11-25T05:14:02Z 2009-11-25T05:14:02Z <p>I like to make conference call following this step.</p> <ol> <li>2222 make call to 3333 (phone)</li> <li>3333 receive phone call (phone)</li> <li>simulate push flash button to 2222 thought AMI/? (software)</li> <li>originate call to 4444 throught AMI (software)</li> <li>4444 receive phone call (phone)</li> <li>simulate push flash button to 2222 thought AMI/? again (software)</li> <li>222 333 4444 speaking to each other in the same channel (phone)</li> </ol> <p>I know that AMI doesn't have exactly function to make hook flash. (some trick?)</p> <p>Is there any suggestion to complete step 3 and 6 through software it may be AMI or anything else.</p> <p>Resource:</p> <pre> AMI = Asterisk Manager Interface http://en.wikipedia.org/wiki/Hook_flash </pre> http://stackoverflow.com/questions/884608/share-common-useful-svn-pre-commit-hooks 15 Share common / useful SVN pre-commit hooks powtac 2009-05-19T19:31:24Z 2009-11-24T21:35:40Z <p>What are some common and/or useful pre-commit hooks for SVN?</p> http://stackoverflow.com/questions/1764980/safe-dll-injection 0 'Safe' DLL Injection dauphic 2009-11-19T17:14:06Z 2009-11-24T16:33:10Z <p>Not a terribly good question, sorry.</p> <p>I have a program that needs to be alerted when a file is opened from explorer (i.e. ShellExecute(A/W) is called).</p> <p>Unfortunately, Microsoft removed the COM interface (IShellExecuteHook) that allows you to hook these events in Vista and up, supposedly because older code could cause a crash due to changes. There was a work-around to re-enable this feature, but it no longer works.</p> <p>I've done some research and it looks like the only way to catch calls to ShellExecute is to re-route the call to shell32.dll. At the moment, I'm looking at injecting my own DLL into the explorer process, then copying the IAT entry for ShellExecute to some address allocation in my DLL, and finally modifying the IAT entry for ShellExecute to point to my function, which will notify the program that a file was opened and jump to the original ShellExecute function, whose address we stored earlier.</p> <p>My biggest concern here is antiviruses. Will they care that I'm injecting into explorer? Will they care that I'm modifying the IAT? </p> <p>Another concern is whether this is safe; is it possible (or rather likely) for explorer's security priveleges to not allow injection via CreateRemoteThread? If so, is there a better way to do this injection?</p> <p>Is there a better way to do this in general?</p> <p><strong>EDIT: For anyone who comes across this in the future, explorer.exe has no IAT for shell32.dll; it has a header, but the thunk is full of junk values, so there's no way (as far as I can tell) to retrieve the entry for any imported functions. <br/>Looks like code tunneling is the only way to hook this.</strong></p> http://stackoverflow.com/questions/1763568/hooking-the-windows-com-runtime 2 Hooking the windows COM runtime Danra 2009-11-19T14:14:41Z 2009-11-23T17:06:56Z <p>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.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1115755/inject-to-npswf32-dll-flash10a-ocx-flashplayer-xpt-to-create-a-global-actions 0 Inject to NPSWF32.dll & Flash10a.ocx & flashplayer.xpt to create a global ActionScript VM console and debugger? est 2009-07-12T10:33:27Z 2009-11-23T14:13:51Z <p>Hi all,</p> <p>since all browser's Flash plugin is based on: NPSWF32.dll Flash10a.ocx flashplayer.xpt</p> <p>Is there a way to inject these dll's, use some voodoo to create a global ActionScript VM console and debugger?</p> <p>Perhaps then I can submit arbitary score to any online Flash games?</p> http://stackoverflow.com/questions/1776664/c-low-level-keyboard-hook-not-working 0 C# Low-Level Keyboard Hook Not Working unknown (google) 2009-11-21T20:24:00Z 2009-11-22T10:05:05Z <p>This is the code for my keyhooking class, but it doesn't work. I was wondering if someone can tell me why? I'm instansiating it in another Console application. The debug message gives the proper output, but the keyboard hook simply doesn't catch keys. I was hoping if someone could tell me why.</p> <pre><code>namespace GlobalHooks { public class InterceptKeys { private const int WH_KEYBOARD_LL = 13; private const int WM_KEYDOWN = 0x0100; private static IntPtr _hookID = IntPtr.Zero; private static String keysHooked = String.Empty; private static LowLevelHookProc keyboardHook; public delegate IntPtr LowLevelHookProc(int nCode, Int32 wParam, IntPtr lParam); public delegate void KeyboardHandleFunction(int vkCode); public static event KeyboardHandleFunction keyHookReturn; public InterceptKeys(KeyboardHandleFunction func) { keyHookReturn = func; keyboardHook = new LowLevelHookProc(HookCallback); } public static void debug() { Console.Write("\n[Success!] _hookID: "+_hookID); Console.Write("\n[Success!] keyboardProc: "+keyboardHook.ToString()); } private IntPtr SetupHook(LowLevelHookProc keyProcess) { using (Process curProcess = Process.GetCurrentProcess()) using (ProcessModule curModule = curProcess.MainModule) { return SetWindowsHookEx(WH_KEYBOARD_LL, keyProcess, GetModuleHandle(curModule.ModuleName), 0); } } public void Hook() { _hookID = SetupHook(keyboardHook); debug(); } public void Unhook() { UnhookWindowsHookEx(_hookID); } public static void OnCallbackReturn(int nCode) { if (keyHookReturn != null) { keyHookReturn(nCode); } else { throw new Exception(); } } public static IntPtr HookCallback(int nCode, Int32 wParam, IntPtr lParam) { Console.WriteLine("Calledback"Wink; if (nCode &gt;= 0 &amp;&amp; wParam == WM_KEYDOWN) { int vkCode = Marshal.ReadInt32(lParam); Console.WriteLine((Keys)vkCode); OnCallbackReturn(nCode); } return CallNextHookEx((int)_hookID, nCode, wParam, lParam); } [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)] private static extern IntPtr SetWindowsHookEx(int idHook, LowLevelHookProc lpfn, IntPtr hMod, uint dwThreadId); [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)] private static extern bool UnhookWindowsHookEx(IntPtr hhk); [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)] private static extern IntPtr CallNextHookEx(int hhk, int nCode, int wParam, IntPtr lParam); [DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)] private static extern IntPtr GetModuleHandle(string lpModuleName); } } </code></pre> http://stackoverflow.com/questions/1764558/user-registration-login-external-to-wordpress-mu 0 User registration/login external to Wordpress MU Matt Huggins 2009-11-19T16:22:28Z 2009-11-19T16:22:28Z <p>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/out from my own back-end code if there's a way to manipulate WordPress's codebase to do so.</p> http://stackoverflow.com/questions/1743717/can-a-script-be-automated-after-a-commit-on-perforce 1 Can a script be automated after a commit on Perforce? naven87 2009-11-16T17:43:15Z 2009-11-17T09:37:18Z <p>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't have any need to edit the files but only read them. Currently we use P4Web but that requires the user so download each file individually to reassemble the project directory. Ideally I would like to have a process where when a user does a commit/submit in Perforce, the script would automatically run to generate a single zip file of the project directory and files, so that it was a one-click download that was guaranteed to be correct against current state of the source files. I know Git has a post-commit hook which could be used for this, but I can't figure out an equivalent function in Perforce.</p> http://stackoverflow.com/questions/1707294/svn-post-commit-hook-not-executing-file 1 SVN post-commit hook not executing file Oded 2009-11-10T11:29:11Z 2009-11-10T11:59:52Z <p>I have created an exe file that will print to console the first and second arguments that it receives.</p> <p>In the SVN post-commit hook I wrote:</p> <pre><code>PATH_TO_FILE\print.exe "%1" "%2" </code></pre> <p>when I make a check-in, it gets stuck.</p> <p>%1 is the PATH<br> %2 is revision number</p> http://stackoverflow.com/questions/1048931/pre-update-svn-script-to-filter-what-get 1 pre-update svn script to filter what get DrLuk 2009-06-26T12:42:54Z 2009-11-08T16:53:03Z <p>Imagine a repository with many kind of files. Then, I want to get from this repository just some kind of files in a "filter process".</p> <p>I mean ALL FILES are versioned. But to my local work, I just wanna i.e get *.php files, ignoring download *.jpg instead.</p> <p>I think about client-site hook script (pre-update). Anyone know if is it possible?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1694163/taking-use-of-laptop-custom-buttons 2 Taking use of laptop custom buttons Lycha 2009-11-07T19:39:48Z 2009-11-07T22:08:07Z <p>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 different Lenovo programs) so I started to think if I could program something of my own for it.</p> <p>However I don't have any experience with this kind of thing.</p> <p>First of all I'd like to know if it's even possible to use it on my own program in any way (capture touches or even control the lights).</p> <p>Second, where should I start researching about this? I checked Windows Device Manager to see if I could spot anything helpful there, but no success. I can only see many kind of HID devices there.</p> <p>One thing that is on my mind is to use some kind of hooks to take usage of this. Could that work? I don't really mind what language I'll have to use, learning new ones is a useful anyway.</p> <p>If it is possible to totally control the touch sensitive strip it would be nice to light up the led lights as I will on it (now led light lights up where my finger is).</p> http://stackoverflow.com/questions/1670390/are-you-sure-you-want-to-print-x-pages-dialog-before-actually-printing-for 5 "Are you sure you want to print X pages?" dialog before actually printing... (for any app) Kalmi 2009-11-03T21:54:50Z 2009-11-05T21:32:07Z <p>In Internet Cafes where people are allowed to print, sometimes they print more pages than they intended to.</p> <p><strong>I'm looking for a way to display an "Are you sure you want to print X pages?" dialog after they pressed print (in any application), but before the job is sent to the queue.</strong></p> <p>I'm looking for pointers on how to implement such a hook.</p> <p>(I have considered modifying a FOSS PDF printer to first print into a PDF and then display the dialog and then if the user presses "Yes", print it on the real printer. But this seems a really roundabout way of doing this and one also loses printer-specific features this way.)</p>