Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4070570
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T16:38:40+00:00 2026-05-20T16:38:40+00:00

I have a coclass which checks the registry to determine if an application is

  • 0

I have a coclass which checks the registry to determine if an application is installed, but it does this poorly and doesn’t find newer versions of the application. In cases where a competing application has been installed, it will try to open that one. If the competing application has been uninstalled, the program will crash. This coclass is defined in a DLL file I do not have the source code for the library, so I can’t just change that. I have been looking into using hooking to replace the function with one that works, but it seems complicated when I look at the MSDN documentation on using SetWindowsHookEx. Can someone please provide an example of how to use SetWindowsHookEx or another method of hooking into Windows?

Thank You

EDIT: I would like to note that I accepted the answer I did because it worked for me. I could not use the other answer at the time the question was asked, but it looks like its just as good.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T16:38:40+00:00Added an answer on May 20, 2026 at 4:38 pm

    Here is a short example from my own codebase which shows the most basic hooking technique:

    unit MethodHooker;
    
    interface
    
    implementation
    
    uses
      SysUtils, Windows, Classes;
    
    procedure Patch(Address: Pointer; const NewCode; Size: Integer);
    var
      NumberOfBytes: DWORD;
    begin
      WriteProcessMemory(GetCurrentProcess, Address, @NewCode, Size, NumberOfBytes);
    end;
    
    type
      PInstruction = ^TInstruction;
      TInstruction = packed record
        Opcode: Byte;
        Offset: Integer;
      end;
    
    procedure Redirect(OldAddress, NewAddress: Pointer);
    var
      NewCode: TInstruction;
    begin
      NewCode.Opcode := $E9;//jump relative
      NewCode.Offset := Integer(NewAddress)-Integer(OldAddress)-SizeOf(NewCode);
      Patch(OldAddress, NewCode, SizeOf(NewCode));
    end;
    
    function GetCursorPos(var lpPoint: TPoint): BOOL; stdcall;
    (* The GetCursorPos API in user32 fails if it is passed a memory address >2GB which
       breaks LARGEADDRESSAWARE apps.  We counter this by calling GetCursorInfo instead
       which does not suffer from the same problem. *)
    var
      CursorInfo: TCursorInfo;
    begin
      CursorInfo.cbSize := SizeOf(CursorInfo);
      Result := GetCursorInfo(CursorInfo);
      if Result then begin
        lpPoint := CursorInfo.ptScreenPos;
      end else begin
        lpPoint := Point(0, 0);
      end;
    end;
    
    initialization
      if not ModuleIsPackage then begin
        if not CheckWin32Version(6, 1) then begin
          //this bug was fixed in Windows 7
          Redirect(@Windows.GetCursorPos, @MethodHooker.GetCursorPos);
        end;
    
    end.
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

have written this little class, which generates a UUID every time an object of
I have a .net application calling to a COM component (C++) which in turn
I am creating C# application that uses OCX component. I have this component from
Have a procedure which looks like Procedure TestProc(TVar1, TVar2 : variant); Begin TVar1 :=
Have deployed numerous report parts which reference the same view however one of them
have a problem. At first look at this HTML <div id=map style=background-image: url(map.png); width:
Have a look at the following code to find X^y. /* Find exponent in
Let's say you have two products A and B which are both developed, tested
I have a C# Winforms application that makes a call to a COM class.
have a php code like this,going to convert it in to C#. function isValid($n){

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.