Tyleo-Dev-AutoIT-Oldies/DNSIP Flush Manager/DNSIP Flush Manager.au3

51 lines
1.7 KiB
AutoIt
Raw Normal View History

2024-02-18 21:17:39 +00:00
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Res_Comment=DNS IP Flush Manager
#AutoIt3Wrapper_Res_Description=DNS IP Flush Manager
#AutoIt3Wrapper_Res_Fileversion=0.0.0.3
#AutoIt3Wrapper_Res_Fileversion_AutoIncrement=y
#AutoIt3Wrapper_Res_ProductName=DNS IP Flush Manager
#AutoIt3Wrapper_Res_ProductVersion=0.0.0.1
#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 <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
Global $Form1 = GUICreate($CurrentName & " " & $CurrentVersion, 438, 165, 275, 200)
Global $Button1 = GUICtrlCreateButton("Button1", 8, 0, 425, 33)
Global $Button2 = GUICtrlCreateButton("Button2", 8, 32, 425, 33)
Global $Button3 = GUICtrlCreateButton("Button3", 8, 64, 425, 33)
Global $Button4 = GUICtrlCreateButton("Button4", 8, 96, 425, 33)
Global $About = GUICtrlCreateButton("About this software", 8, 128, 425, 33)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $About
TyleoAbout($CurrentName & " " & $CurrentVersion & @CRLF & "Base Ver : " & $CurrentBaseVersion)
EndSwitch
WEnd