CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Jan 2003
    Location
    Poland
    Posts
    2

    showing bitmaps on full screen

    I want to show bitmaps in fullscreen mode not in a window and i have no idea how to do it . I tried to do it in many ways but nothig seems to work fine . I'm not using DirectX. The program is dialog-based so dialog boxes must apear on this bitmap

  2. #2
    Join Date
    Aug 2002
    Location
    United States
    Posts
    729
    full screen but dialog boxes must appear on it? i dont understand what exactly you want then.

    to do a full screen thing then create a window over the entire desktop and use BitBlt in that window's WM_PAINT message handler.

    WS_EX_TOPMOST is the style you could set on a window if you truely want it fullscreen and nothing in front. if you elaborated a bit more i'm sure we could help more effectively

  3. #3
    Join Date
    Jan 2003
    Location
    Poland
    Posts
    2

    re bitmaps

    I mean that i don't want the titlebar and the border of the main window to be visible - only my bitmap image.

  4. #4
    Join Date
    Aug 2002
    Location
    Viet Nam
    Posts
    26
    In "Rendering a Region Dialog From a BMP/JPEG" aticle of "Zhefu Zhang". U can get what you want.
    "Education is what remains after one has forgotten all one learned at school."
    Albert Einstein

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