CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Sep 2007
    Location
    Philippines
    Posts
    60

    Question Separate Windows

    Good Day. I have an MFC application that has a download functionality. What I want is to imitate Firefox where in the download list is shown in a seperate window and the main window still responds to the message. Is there a way to do that using DoModal or I need a modeless dialog? I tried using DoModal but I can't seem to go to the Main Window so I thought it was a property of a Modal Dialog. Could anyone please suggest of a way? Thank you very much

  2. #2
    Join Date
    Sep 2004
    Location
    Holland (land of the dope)
    Posts
    4,123

    Re: Separate Windows

    Instead of DoModal, Create the dialog yourself and use ShowWindow to show it.

  3. #3
    Join Date
    Sep 2007
    Location
    Philippines
    Posts
    60

    Re: Separate Windows

    I tried that earlier and had a problem. And I figured out that it's because I forgot to change the window to popup style. Thank you very much for your help.

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