when i send message to Task Manager Window
SysListView32 through ListView_FindItem()
by SendMessage() it generates an error
Any Solution
SysListView32 through ListView_FindItem()
by SendMessage() it generates an error
Any Solution
You cannot use the pointer to the LVFINDINFO structure in your own process in a message to another process. You will have to allocate memory in the other process, copy your structure to it then send the message with that address. When the message returns you copy the contents of the remote process memory into your process and there you have it.
I posted code somewhere to do it with the desktop listview, can't remember the name of the thread anymore and i doubt I bothered to keep the code myself.
Found it :
http://www.asmcommunity.net/board/index.php?topic=17427
I posted code somewhere to do it with the desktop listview, can't remember the name of the thread anymore and i doubt I bothered to keep the code myself.
Found it :
http://www.asmcommunity.net/board/index.php?topic=17427
Go to Donkey's website. You'll find it all there. Atleast user-mode with serious tools and how to use them.