Skip to content

Commit

Permalink
updated date.
Browse files Browse the repository at this point in the history
  • Loading branch information
KurtisLiggett committed Aug 17, 2017
1 parent f00b6b2 commit 08137b1
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
## readme
profiles.ini
main_stripped.au3
Simple IP Config*.exe
Empty file removed controller.au3
Empty file.
4 changes: 3 additions & 1 deletion functions.au3
Expand Up @@ -22,8 +22,10 @@
;==============================================================================
Global $oMyError = ObjEvent("AutoIt.Error","MyErrFunc")

Func MyErrFunc()
Func MyErrFunc($oError)
SetError(1)
; Do anything here.
MsgBox(1,"COM Error","Simple IP Config COM Error!" & @CRLF & "Error Number: " & Hex($oError.number))
EndFunc

;------------------------------------------------------------------------------
Expand Down
2 changes: 2 additions & 0 deletions gui.au3
Expand Up @@ -224,8 +224,10 @@ Func _makeStatusbar()
GUICtrlSetBkColor (-1, _WinAPI_GetSysColor($COLOR_MENUBAR ) )
EndFunc


Func _makeMenu()
$filemenu = GUICtrlCreateMenu("&File")

$saveitem = GUICtrlCreateMenuItem("Apply profile" & @TAB & "Enter", $filemenu)
GUICtrlSetOnEvent(-1, "_onApply")
GUICtrlCreateMenuItem("", $filemenu)
Expand Down
6 changes: 3 additions & 3 deletions main.au3
Expand Up @@ -66,7 +66,7 @@ Global $screenshot=0
;GUI stuff
Global $winName = "Simple IP Config"
Global $winVersion = "2.8.1"
Global $winDate = "08/10/2017"
Global $winDate = "08/11/2017"
Global $hgui
Global $guiWidth = 550
Global $guiHeight = 550
Expand Down Expand Up @@ -179,8 +179,8 @@ TraySetClick(16)
#AutoIt3Wrapper_Res_HiDpi=y
#AutoIt3Wrapper_UseX64=N
#AutoIt3Wrapper_Icon=icon.ico
#AutoIt3Wrapper_OutFile=Simple IP Config 2.8.1.exe
#AutoIt3Wrapper_Res_Fileversion=2.8.1
#AutoIt3Wrapper_OutFile=Simple IP Config 2.9.b1.exe
#AutoIt3Wrapper_Res_Fileversion=2.9.0.1
#AutoIt3Wrapper_Res_Description=Simple IP Config

#Region PROGRAM CONTROL
Expand Down
Empty file removed view.au3
Empty file.

0 comments on commit 08137b1

Please sign in to comment.