Jump to content

Recommended Posts

Posted

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.

Posted

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.

Posted

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?

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
  • Recently Browsing   0 members

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