SlimShady Posted October 1, 2004 Posted October 1, 2004 I want to create a small window that has the same size as the Windows clock. So I need a way to get rid of the title bar. Is it possible?
ioliver Posted October 1, 2004 Posted October 1, 2004 This worked for me to create a window with no title bar: ; Thanks Larry! Global $WS_POPUP = 0x80000000 Global $WS_DLGFRAME = 0x400000 $style = $WS_POPUP + $WS_DLGFRAME $text = FileReadLine("C:\marquee.txt", 1) $len = StringLen($text) $show = $text Opt("GuiNotifyMode", 1) GuiCreate("Ticker", 1024, 40, 0, 0, $style) Hope it helps. Ian "Blessed be the name of the Lord" - Job 1:21Check out Search IMF
SlimShady Posted October 1, 2004 Author Posted October 1, 2004 Allright. Great! Exactly like I wanted. Thanks.
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