Jump to content

Create A Window With No Titlebar?


Recommended Posts

I want to add some of my own buttons to an existing App.

So, I need to create a window that has no titlebar or anything else, so that the button(s) appear as if they have no window.

Thanks!

2015 - Still no flying cars, instead blankets with sleeves.

Link to comment
Share on other sites

I want to add some of my own buttons to an existing App.

So, I need to create a window that has no titlebar or anything else, so that the button(s) appear as if they have no window.

Thanks!

Belowe code will show you a window with no titlebar and no minimize, full window and close buttons

#include <GuiConstants.au3>
$MainGui = GUICreate("", 250, 99, @DesktopWidth/2-125, @DesktopHeight/2-50,  $WS_POPUP,$WS_EX_DLGMODALFRAME)
guisetstate()
While 1
Wend
Edited by blckbrd
Link to comment
Share on other sites

Belowe code will show you a window with no titlebar and no minimize, full window and close buttons

#include <GuiConstants.au3>
$MainGui = GUICreate("", 250, 99, @DesktopWidth/2-125, @DesktopHeight/2-50,  $WS_POPUP,$WS_EX_DLGMODALFRAME)
guisetstate()
While 1
Wend
Thanks Dude :)

I usually rely on Koda to do the GUI stuff.

2015 - Still no flying cars, instead blankets with sleeves.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...