Hi Guys,
I need to send a string from c# application to another c# Application.

On receiving application side the code i have is below.

Code:
 protected override void WndProc(ref Message m)
        {
            switch (m.Msg)
            {
                case (int)Msg.WM_USER:
                    break;
                case (int)Msg.WM_COPYDATA:
...