Jump to content

removing window title bar + border


Influx
 Share

Recommended Posts

I was wondering how to completely remove the title bar so that only the GUI(and controls in it) remain with no border (working on making a OS shell, required for start menu to work properly)

Edited by Influx
Link to comment
Share on other sites

I was wondering how to completely remove the title bar so that only the GUI(and controls in it) remain with no border (working on making a OS shell, required for start menu to work properly)

This?

#include <GuiConstantsEx.au3>
#include <WindowsConstants.au3>

$hGUI = GUICreate("My GUI", 300, 200, -1, -1, $WS_POPUP)

GUISetState()

Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
Link to comment
Share on other sites

i used $WS_Popup and it didnt do anything

maybe i misinterpreted what @influx ment, i thought he ment a windo that had NO caption\NO Titlebar, i tried those too and nothing, any ideas?

Link to comment
Share on other sites

i used $WS_Popup and it didnt do anything

maybe i misinterpreted what @influx ment, i thought he ment a windo that had NO caption\NO Titlebar, i tried those too and nothing, any ideas?

Influx say:

how to completely remove the title bar

I think is very clearly and rasim give him a very good example.

When the words fail... music speaks.

Link to comment
Share on other sites

oh lol i had

GUICreate("My GUI", 300, 200, -1,-1, -1, $WS_POPUP)

when i needed

GUICreate("My GUI", 300, 200, -1, -1, $WS_POPUP)

sorry lol my bad

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...