CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Product name

  1. #1
    Join Date
    Jul 2001
    Posts
    1

    Product name

    How to find a Product is existing in the System like oracle product or sql server product


  2. #2
    Join Date
    Apr 2001
    Location
    UK
    Posts
    24

    Re: Product name

    When a product is installed 90% of the time it will create a registry key for its self, this is normally the same every time a particular program is installed. All you have to do is find which one it creates then make you program look for that key in the registry. They are normally created in HKEY_LOCAL_MACHINE\SOFTWARE or HKEY_CURRENT_USER\Software.

    Use regedit to look through the registry to find something that looks like the program you are after.

    There are tonnes of Registry access examples on the net, but if you cant find one just say and i will knock one up for you.


    Grant French
    [email protected]


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured