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

    How hide Dialog Box?

    How hide Dialog Box?


  2. #2
    Join Date
    May 1999
    Location
    13 N 77 E
    Posts
    183

    Re: How hide Dialog Box?

    ShowWindow(FALSE)


  3. #3
    Guest

    Re: It's not work.

    ?


  4. #4
    Join Date
    May 1999
    Location
    CA, USA
    Posts
    586

    Re: It's not work.

    ShowWindow(SW_HIDE);

    and then to show it:

    ShowWindow(SW_SHOW);

    SW_HIDE is defined as 0 so FALSE should have worked, even though it's not the right parameter to use. Where did you try making the call... show us a li'l code.

    Rail

    Recording Engineer/Software Developer
    Rail Jon Rogut Software
    [email protected]
    http://home.earthlink.net/~railro/

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