pieczniq Posted August 6, 2006 Posted August 6, 2006 I need to know how to create a window, that has NO title bar, because it's very annoying. Please help me. This is a sample code: #include <GUIConstants.au3> GuiCreate("",800,600) For $licznik = 1 to 99 step 1 $nazwa=$licznik & '.exe' $czy=FileExists($nazwa) IF $czy==0 Then Exit EndIF GUISetState(@SW_SHOW) $uchwyt=GuiCtrlCreatePic("screen\screen.jpg",0,0,800,600) RunWait($nazwa) Next GuiDelete($uchwyt) that eliminates the window title bar from the window with 'screen.jpg' image. Thanks for help.
MHz Posted August 6, 2006 Posted August 6, 2006 Use a style as in $WS_POPUP #include <GUIConstants.au3> GuiCreate("",800,600, -1, -1, $WS_POPUP) ; GuiCtrl... GUISetState() While 1 Sleep(1000) WEnd
Helge Posted August 6, 2006 Posted August 6, 2006 This should do it :GUICreate("", 800, 600, -1, -1, $WS_POPUP) though I personally would use SplashImageOn instead as it isn't really necessary with a GUI it in your case.
pieczniq Posted August 6, 2006 Author Posted August 6, 2006 This should do it :GUICreate("", 800, 600, -1, -1, $WS_POPUP) though I personally would use SplashImageOn instead as it isn't really necessary with a GUI it in your case. So how can I use this function?
Paulie Posted August 6, 2006 Posted August 6, 2006 So how can I use this function?Splashimageon?look herehttp://www.autoitscript.com/autoit3/docs
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