Influx Posted December 27, 2008 Share Posted December 27, 2008 (edited) 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 December 27, 2008 by Influx Link to comment Share on other sites More sharing options...
rasim Posted December 27, 2008 Share Posted December 27, 2008 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 Skysnake 1 Link to comment Share on other sites More sharing options...
Influx Posted December 27, 2008 Author Share Posted December 27, 2008 thanks a LOT. Link to comment Share on other sites More sharing options...
Kip Posted December 27, 2008 Share Posted December 27, 2008 You wanna make a shell, but you didn't know what $WS_POPUP was? Good luck! MailSpons: Fake SMTP server for safe email testing Dutch postcode & address API. Link to comment Share on other sites More sharing options...
CodyBarrett Posted December 27, 2008 Share Posted December 27, 2008 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? [size="1"][font="Tahoma"][COMPLETED]-----[FAILED]-----[ONGOING]VolumeControl|Binary Converter|CPU Usage| Mouse Wrap |WinHide|Word Scrammbler|LOCKER|SCREEN FREEZE|Decisions Decisions|Version UDF|Recast Desktop Mask|TCP Multiclient EXAMPLE|BTCP|LANCR|UDP serverless|AIOCR|OECR|Recast Messenger|AU3C|Tik-Tak-Toe|Snakes & Ladders|BattleShips|TRON|SNAKE_____________________[u]I love the Helpfile it is my best friend.[/u][/font][/size] Link to comment Share on other sites More sharing options...
Andreik Posted December 27, 2008 Share Posted December 27, 2008 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 barI think is very clearly and rasim give him a very good example. Link to comment Share on other sites More sharing options...
CodyBarrett Posted December 27, 2008 Share Posted December 27, 2008 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 [size="1"][font="Tahoma"][COMPLETED]-----[FAILED]-----[ONGOING]VolumeControl|Binary Converter|CPU Usage| Mouse Wrap |WinHide|Word Scrammbler|LOCKER|SCREEN FREEZE|Decisions Decisions|Version UDF|Recast Desktop Mask|TCP Multiclient EXAMPLE|BTCP|LANCR|UDP serverless|AIOCR|OECR|Recast Messenger|AU3C|Tik-Tak-Toe|Snakes & Ladders|BattleShips|TRON|SNAKE_____________________[u]I love the Helpfile it is my best friend.[/u][/font][/size] Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now