Tried that. Still it doesnt work. Is this because the listview I'm
trying to access is in some other process?
How do you think you will access memory from another process?
If you from process A send message to the process B, who allocates memory,
and returns pointer to the memory within the structure - you will not get
that memory.
However, every process has it own virtual address space, so, that other
processes couldn't access the memory.
AFAIK if you want to interchange data with another process, there are
numerous IPC methods ( WM_COPYDATA, memmory mapped files, sockets, pipes
etc )

Signature
Vadym Stetsyak aka Vadmyst
> Tried that. Still it doesnt work. Is this because the listview I'm
> trying to access is in some other process?
Have a look here:
http://www.codeproject.com/threads/int64_memsteal.asp
The example is in C, but should be convertible.
HTH
Charles
> Tried that. Still it doesnt work. Is this because the listview I'm
> trying to access is in some other process?