Window Without border and without title bar 
Author Message
 Window Without border and without title bar

Can I create in Visual C++ Window without border and without title bar (Not
in MFC)?


Thu, 13 May 2004 22:20:38 GMT  
 Window Without border and without title bar

Quote:
> Can I create in visual c++ Window without border and without title bar
(Not
> in MFC)?

Yes, create a popup window with no border. If you don't want it to have a
"button" in the taskbar make it a toolwindow. Something like this (which has
not been compiled):

    CreateWindowEx(WS_EX_TOOLWINDOW,
                                 "yourWindowClass", "yourCaption",
                                    WS_POPUP | WS_VISIBLE,
                                      pt.x, pt.y, width, height,
                                        NULL, 0, GetModuleHandle(NULL),
NULL);

Regards,
Will



Fri, 14 May 2004 00:51:22 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. Application window without title bar

2. Windows Without Title Bars

3. Howto minimize window without title bar?

4. Getting two identical windows without a title bar

5. window without title bar

6. Application window without title bar

7. Problems with Taslkbar icon of a window without a title bar

8. How can I highlight a window's title bar without setting the focus

9. How to make a full-screen window without frame and title bar

10. How to make a full-screen window without frame and title bar

11. How to have a Window without no title bar.in c#

12. Frame client without borders(without WS_EX_CLIENTEDGE) ?

 

 
Powered by phpBB® Forum Software