CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 9 of 9

Threaded View

  1. #2
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,430

    Re: Parent to Child Dialog Data Transfer & Vise Versa in VC++

    Usually such a "Data Transfer" is performed in following way:
    1. You implement in a child dialog all the data variables you need to be changed or/and displayed.
    2. You set all these data values in a child dialog just before calling its DoModal() from a parent window.
    3. After its DoModal returns IDOK you can set all the data values you need from the child dialog to the parent.
    Last edited by VictorN; January 17th, 2016 at 06:43 AM.
    Victor Nijegorodov

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