#include <ButtonConstants.au3>
#include <ComboConstants.au3>
#include <GUIConstantsEx.au3>
#include <GuiStatusBar.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
$Form1_1 = GUICreate("Form1", 458, 293, 226, 197)
$Group1 = GUICtrlCreateGroup("修改浏览器首页", 16, 16, 425, 57)
$Label1 = GUICtrlCreateLabel("修改浏览器首页", 24, 40, 88, 17)
$Combo1 = GUICtrlCreateCombo("http://www.hao123.com", 120, 40, 145, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, "about:blank|http://www.baidu.com|http://www.2345.com")
$Button1 = GUICtrlCreateButton("修改", 272, 40, 75, 25)
$Button2 = GUICtrlCreateButton("使用空白页", 352, 40, 75, 25)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$Group2 = GUICtrlCreateGroup("系统快速设置工具", 16, 80, 425, 185)
$Button3 = GUICtrlCreateButton("分辨率设置", 32, 104, 75, 25)
$Button4 = GUICtrlCreateButton("系统服务优化", 136, 104, 75, 25)
$Button5 = GUICtrlCreateButton("注册表优化", 240, 104, 75, 25)
$Button6 = GUICtrlCreateButton("硬件优化", 344, 104, 75, 25)
$Button7 = GUICtrlCreateButton("ADSL拨号", 32, 144, 75, 25)
$Button8 = GUICtrlCreateButton("服务微调", 136, 144, 75, 25)
$Button9 = GUICtrlCreateButton("IP设置", 240, 144, 75, 25)
$Button10 = GUICtrlCreateButton("共享设置", 344, 144, 75, 25)
$Button11 = GUICtrlCreateButton("清理系统垃圾", 32, 184, 75, 25)
$Button12 = GUICtrlCreateButton("系统修复", 136, 184, 75, 25)
$Button13 = GUICtrlCreateButton("个人资料设置", 240, 184, 75, 25)
$Button14 = GUICtrlCreateButton("小键盘设置", 344, 184, 75, 25)
$Button15 = GUICtrlCreateButton("OEM 设置", 32, 224, 75, 25)
$Button16 = GUICtrlCreateButton("输入法设置", 136, 224, 75, 25)
$Button17 = GUICtrlCreateButton("自动登陆", 240, 224, 75, 25)
$Button18 = GUICtrlCreateButton("C盘格式转换", 344, 224, 75, 25)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$StatusBar1 = _GUICtrlStatusBar_Create($Form1_1)
Dim $StatusBar1_PartsWidth[3] = [65, 130, 300]
Dim $S0 = "简单工作室 ", $S1 = "地狱火制作", $S2 = "www.jdgzs.cc"
_GUICtrlStatusBar_SetParts($StatusBar1, $StatusBar1_PartsWidth)
_GUICtrlStatusBar_SetText($StatusBar1, $S2, 2)
_GUICtrlStatusBar_SetText($StatusBar1, $S1, 1)
_GUICtrlStatusBar_SetText($StatusBar1, $S0, 0)
_GUICtrlStatusBar_SetMinHeight($StatusBar1, 20)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button3
Run("分辨率设置工具的路径")
Case $Button17
Run("自动登陆工具的路径")
EndSwitch
WEnd