How to send a windows message from C# to C++ (MFC)?

Discussion in 'MFC' started by CarlosEver, Dec 20, 2012.

  1. CarlosEver

    CarlosEver New Member

    Joined:
    Dec 20, 2012
    Messages:
    1
    Likes Received:
    0
    Trophy Points:
    0
    Hello mates,

    I'm trying to send a windowsmessage from an app in C# (Compact Frame) to another one in C++ (MFC), both of them in a PDA.

    In the receiver app (MFC) I realize that I receive the message but I can't read the string message, it shows a little square.

    This is the code of the Sender (C#)

    Code:
    OpenNETCF.Win32.Win32Window.SendMessage(hwndVal, typeMsgVal, intValue, stringMessage);
    And this is the code of the receiver (C++)

    Code:
    CString myStr = (CString) lParam;
        AfxMessageBox(myStr);

    Thanks a lot in advance!
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice