reinterpret_cast<PVOID>( whatever );
A pointer is only valid in the memory space of one process. If you pass it
to another program it is meaningless. Use a proper IPC method, like named
pipes or sockets, to communcate between your programs and pass the string
through. Never send pointers through.
>
> any one have any ideas? ^^
>
> Thank you
>
> calvin