Jump to content

GUICreate custom window


pieczniq
 Share

Recommended Posts

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.

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