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

    full screen mode

    i want my application to be displayed in full screen mode. How do i achieve this using windows SDK?


  2. #2
    Join Date
    Jun 1999
    Location
    Canada - Québec
    Posts
    273

    Re: full screen mode

    try to add this flag : WS_MAXIMIZE



  3. #3
    Join Date
    Jul 1999
    Location
    FRANCE
    Posts
    23

    Re: full screen mode

    iF YOU WANT A REAL FULL SCREEN MODE YOU MAY GET A DC ON NULL i.e the ENTIRE SCREEN
    Yet U are not sure any other application will not interact.
    If you want some tips U may :
    Look for the screen savers samples.
    Look for multidisplays API but only on W98 and not NT 4

    /************************ FROM MSDN ***********************
    HDC GetDC(
    HWND hWnd // handle to a window
    );

    Parameters
    hWnd
    Handle to the window whose device context is to be retrieved. If this value is NULL, GetDC retrieves the device context for the entire screen.
    ***************************************/




  4. #4
    Guest

    Re: full screen mode

    Thnk you for the feedback. Actually i want real full screen mode like in power point or word applications. Can you please provide me with more details?


  5. #5
    Join Date
    May 1999
    Location
    Oregon, USA
    Posts
    302

    Re: full screen mode

    Try this knowledge base article :
    http://support.microsoft.com/support.../q164/1/62.asp


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