Last active
April 26, 2021 15:40
-
-
Save JoeGlines/6a9b4b734b99a57154a71d07043dc8bf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;******************************************************* | |
; Want a clear path for learning AutoHotkey; Take a look at our AutoHotkey Udemy courses. They're structured in a way to make learning AHK EASY | |
; Right now you can get a coupon code here: https://the-Automator.com/Learn | |
;******************************************************* | |
#SingleInstance,Force | |
;************************************** | |
Gui, Show, w500 h300 x830 y250, Sistema Belem | |
Gui Add, Button, w75 x350 y250 gFechar, Cancel | |
return | |
GuiClose: | |
Msgbox, 36, Alert, Do really wish to close the Gui Interface? | |
IfMsgBox, Yes | |
ExitApp | |
else | |
WinClose, Alert | |
return | |
Fechar: | |
MsgBox here | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment