sainath wrote: > Sry for not asking the question clearly > Server means wine server. > When we go to server to handle request,is it possible to send messages to window, like we do using SendMessageW(). No, you can't use SendMessage (or it's wineserver equivalent). At best you can post a message into required thread's queue. This means you won't get result back. See post_message() function.