Answers for "gui title ahk"

1

ahk gui title bar

^f1:: ;press this to start
	showGUI()
return

makeGUI() {
	Gui, Add, Button, w100 h69, hello world ;nice 
return
} 

showGUI() {
	makeGUI()
	Gui, -Caption ;this is the part that removes the title bar
	Gui, Show
return
}
Posted by: Guest on February-25-2021

Browse Popular Code Answers by Language