47 lines
1.4 KiB
AutoIt
Executable file
47 lines
1.4 KiB
AutoIt
Executable file
|
|
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
|
|
#AutoIt3Wrapper_Res_Fileversion=1.0.0.0
|
|
#AutoIt3Wrapper_Res_Fileversion_AutoIncrement=y
|
|
#AutoIt3Wrapper_Res_ProductVersion=1.0.0.0
|
|
#AutoIt3Wrapper_Res_CompanyName=Tyleo Softwares
|
|
#AutoIt3Wrapper_Res_LegalCopyright=Tyleo Softwares
|
|
#AutoIt3Wrapper_Res_LegalTradeMarks=Tyleo Softwares
|
|
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
|
|
|
|
#include "MetroGUI-UDF\MetroGUI_UDF.au3"
|
|
#include "Extensions.au3"
|
|
|
|
GetSoftDetails(@AutoItExe,"DEV")
|
|
|
|
#cs
|
|
|
|
Tyleo Software Project Base v1
|
|
Created With CNP and DevTools Base Folder
|
|
|
|
All Softwares created with this base are Free and Open Sourced.
|
|
Join our Guilded Server ! https://www.guilded.gg/i/2DRlM7Mp
|
|
|
|
#ce
|
|
|
|
#include <EditConstants.au3>
|
|
#include <GUIConstantsEx.au3>
|
|
#include <WindowsConstants.au3>
|
|
#Region ### START Koda GUI section ### Form=
|
|
Global $GUI = GUICreate("Form1", 557, 350, 506, 251)
|
|
Global $File = GUICtrlCreateMenu("Files")
|
|
Global $Edit = GUICtrlCreateMenu("Edit/Config")
|
|
Global $Com = GUICtrlCreateMenu("Commands")
|
|
Global $Com_Hide = GUICtrlCreateMenuItem("Hide",$Com)
|
|
Global $Note = GUICtrlCreateEdit("", 0, 0, 556, 328)
|
|
GUICtrlSetData($Note, "")
|
|
GUISetState(@SW_SHOW)
|
|
#EndRegion ### END Koda GUI section ###
|
|
|
|
While 1
|
|
$nMsg = GUIGetMsg()
|
|
Switch $nMsg
|
|
Case $GUI_EVENT_CLOSE
|
|
Exit
|
|
|
|
EndSwitch
|
|
WEnd
|