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

Thread: Modeless Dialog

  1. #1
    Guest

    Modeless Dialog

    Within a modal dialog I started a modeless dialog - how can I find out when the modeless dialog is going to be closed ?
    (I tried a lot of things OnNotify(), OnChildNoitify(), OnParentNotify()..., but I could not find out)


  2. #2
    Join Date
    Aug 1999
    Posts
    6

    Re: Modeless Dialog

    Use ASSERT statement and compare it with NULL in class of Modal less dialog.
    ASSERT(if(IDD_MODALLESS != NULL))

    Suresh kumar K

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