send and receive message in C#.Net
-
hello friend Can anyone give me the source code to send message from ane C# application to another C# application and received the sented message thanks in Adv... shafiq
No one is going to 'send' you any code... To implement such kind of communication you might want to look at WCF (or maybe sockets).
The funniest thing about this particular signature is that by the time you realise it doesn't say anything it's too late to stop reading it.
-
hello friend Can anyone give me the source code to send message from ane C# application to another C# application and received the sented message thanks in Adv... shafiq
Look into "window messages". You can import the function (SendMessage) from one of the windows dll's. Use WndProc function (again an import) to 'catch' the message. You'll probably have to create a message id by registering it. It's pretty easy and straightforward once you found out how. Look for : - Sendmessage - Register window message - WndProc to get you started.
V.