CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Dec 2003
    Posts
    23

    Question how to send messages between two dialogs

    how to send messages between two dialogs

  2. #2
    Join Date
    Jan 2004
    Posts
    44

    how to send message...

    Pls specify clearly what type of messages u have to send between the dialogboxes...If u want to acess the variables in other dialogboxes just make an object of that dialogbox and then call the variable..
    dont forget to add the header of the calling dialogbox..

  3. #3
    Join Date
    Jul 2002
    Posts
    20
    if you would send to another dialog with different process use WM_COPYDATA

  4. #4
    Join Date
    Jan 2002
    Location
    bangalore india
    Posts
    183
    Inaddition u can use Pipe or memory map files
    Known Is A Drop..
    Unknown Is An Ocean....

    Programming Contest...

  5. #5
    Join Date
    May 1999
    Location
    Southern California
    Posts
    12,266
    If both dialogs are in the same application (process) then WM_COPYDATA is not needed. If both dialogs are in the same application and both use MFC, then you just need a pointer to the dialog and a user message id.

    Please specify what you need help with. Just saying "how to send messages between two dialogs" does not ask what you really need help with. It is vague and makes us guess at what you need.
    "Signature":
    My web site is Simple Samples.
    C# Corner Editor

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured