erezlevi Posted January 20, 2008 Posted January 20, 2008 hi, how can I craete a GUI that does not have the windows Title at all?
Aassdd Posted January 20, 2008 Posted January 20, 2008 (edited) Lol? #include <GUIConstants.au3> #Region ### START Koda GUI section ### Form= $asd = GUICreate("", 633, 451, 255, 250) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Just GuiCreate("", ....) Edited January 20, 2008 by Aassdd
erezlevi Posted January 20, 2008 Author Posted January 20, 2008 Lol? #include <GUIConstants.au3> #Region ### START Koda GUI section ### Form= $asd = GUICreate("", 633, 451, 255, 250) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Just GuiCreate("", ....) Hi assad, this isn't what I ment I don't want the Title at all only the gray area...
Xenobiologist Posted January 20, 2008 Posted January 20, 2008 Hi, Popup style of GUICreate Mega Scripts & functions Organize Includes Let Scite organize the include files Yahtzee The game "Yahtzee" (Kniffel, DiceLion) LoginWrapper Secure scripts by adding a query (authentication) _RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...) Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc. MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times
Aassdd Posted January 20, 2008 Posted January 20, 2008 Oh sorry, I didn't understand. Here is the code again with Mega's help #include <GUIConstants.au3> $asd = GUICreate("", 633, 451, 255, 250, $WS_POPUPWINDOW) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd
erezlevi Posted January 20, 2008 Author Posted January 20, 2008 Hi,Popup style of GUICreateMegaThanks, it works.
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