Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
A

AlexAbramov

@AlexAbramov
About
Posts
4
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Win32 Global hooks and mouse overs....
    A AlexAbramov

    Have you thought about getting into the address space of the process that creates the window(s) and subclassing the particular window in order to capture the relevant messages?

    C / C++ / MFC question csharp visual-studio help

  • LVM_FINDITEM
    A AlexAbramov

    If you don't like drivers then its possible to hook that function in a DLL and inject the DLL into Task Manager. Although I'd go with NtQuerySystemInformation then instead of Zw, since Zw are more commonly used from kernel mode and you want to intercept it in user-mode. Nt vs. Zw - Clearing Confusion On The Native API[^] --- Similiar technique in action[^]

    C / C++ / MFC c++ delphi database com

  • LVM_FINDITEM
    A AlexAbramov

    Another way to hide entries would be to hook the ZwQuerySystemInformation API, which Task Manager calls to get a list of the running processes on the system. You can modify the linked list of processes returned by changing around the NextEntryDelta member of the SYSTEM_PROCESS_INFORMATION struct once the process is found (ProcessName member). I don't really see why you'd want to hide a process from Task Manager though -- outside of malicious purposes.

    C / C++ / MFC c++ delphi database com

  • How can I remove an item in Combo box's list box ?
    A AlexAbramov

    I would try creating a context menu with CreatePopupMenu() and then just delete the current selection when you click "Remove item." CreatePopupMenu http://msdn.microsoft.com/en-us/library/ms647626(VS.85).aspx[^] CB_GETCURSEL http://msdn.microsoft.com/en-us/library/bb775845(VS.85).aspx[^][^] CB_DELETESTRING http://msdn.microsoft.com/en-us/library/bb775830(VS.85).aspx[^]

    C / C++ / MFC question design help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups