#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <TabConstants.au3>
#include <WindowsConstants.au3>
#include <GuiTab.au3>
#include <GuiListView.au3>
#include <GuiImageList.au3>
#include <WinAPISys.au3>
#include <GuiEdit.au3>
#include <array.au3>
#include <WinAPIFiles.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 615, 438, 192, 124)
$Tab1 = GUICtrlCreateTab(8, 8, 593, 417)
$TabSheet1 = GUICtrlCreateTabItem("基础功能")
$TabSheet2 = GUICtrlCreateTabItem("软件安装")
$Group1 = GUICtrlCreateGroup("", 24, 56, 75, 337)
$Button1 = GUICtrlCreateButton("设计软件", 24, 56, 75, 25)
$Button3 = GUICtrlCreateButton("办公软件", 24, 80, 75, 25)
$Button4 = GUICtrlCreateButton("浏览器设置", 24, 104, 75, 25)
$Button5 = GUICtrlCreateButton("文印打印机", 24, 128, 75, 25)
$Button6 = GUICtrlCreateButton("邮箱配置", 24, 152, 75, 25)
$Button7 = GUICtrlCreateButton("系统优化", 24, 176, 75, 25)
$Button8 = GUICtrlCreateButton("其他", 24, 200, 75, 25)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$ListView1=GUICtrlCreateListView("", 112, 56, 441, 337)
GUICtrlSetBkColor(-1, $CLR_MONEYGREEN)
_GUICtrlListView_AddColumn($ListView1, "软件名",150)
_GUICtrlListView_AddColumn($ListView1, "软件架构",100)
_GUICtrlListView_AddColumn($ListView1, "软件路径",150)
_GUICtrlListView_AddColumn($ListView1, "备注",41)
$TabSheet3 = GUICtrlCreateTabItem("软件卸载")
GUICtrlCreateTabItem("")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
Global $cczzgjpzwj="D:\Mydata\ex_jiangchao\Desktop\cc自助工具1.1\is.ini"
IniWrite($cczzgjpzwj,"设计软件","1","AutoCAD_2010")
IniWrite($cczzgjpzwj,"设计软件","2","PTC_Creo_3.0")
IniWrite($cczzgjpzwj,"设计软件","3","Altium Designer Summer 09")
IniWrite($cczzgjpzwj,"办公软件","1","office2010")
IniWrite($cczzgjpzwj,"办公软件","2","visio2010(32)")
IniWrite($cczzgjpzwj,"办公软件","3","project2010(32)")
IniWrite($cczzgjpzwj,"AutoCAD_2010","软件架构","64bit")
IniWrite($cczzgjpzwj,"AutoCAD_2010","软件路径","10.33.162.55")
IniWrite($cczzgjpzwj,"PTC_Creo_3.0","软件架构","64bit")
IniWrite($cczzgjpzwj,"PTC_Creo_3.0","软件路径","10.33.162.55")
IniWrite($cczzgjpzwj,"Altium Designer Summer 09","软件架构","32/64bit")
IniWrite($cczzgjpzwj,"Altium Designer Summer 09","软件路径","10.33.162.55")
IniWrite($cczzgjpzwj,"office2010","软件架构","32/64bit")
IniWrite($cczzgjpzwj,"office2010","软件路径","10.33.162.55")
IniWrite($cczzgjpzwj,"visio2010(32)","软件架构","32bit")
IniWrite($cczzgjpzwj,"visio2010(32)","软件路径","10.33.162.55")
IniWrite($cczzgjpzwj,"project2010(32)","软件架构","32bit")
IniWrite($cczzgjpzwj,"project2010(32)","软件路径","10.33.162.55")
Func _sj()
GUICtrlSendMsg($ListView1, $LVM_DELETEALLITEMS, 0, 0)
Local $IniFile = "D:\Mydata\ex_jiangchao\Desktop\cc自助工具1.1\is.ini"
Local $aIni = IniReadSection($IniFile,"设计软件")
If @error Then Exit MsgBox(4096, "", "错误, 读取INI文件失败.")
Local $jj, $var
For $jj = 1 To $aIni[0][0]
$var = IniReadSection($IniFile, $aIni[$jj][1])
GUICtrlCreateListViewItem($aIni[$jj][1]&"|"&$var[1][1]&"|"&$var[2][1],$ListView1)
Next
EndFunc
Func _bg()
GUICtrlSendMsg($ListView1, $LVM_DELETEALLITEMS, 0, 0)
Local $IniFile = "D:\Mydata\ex_jiangchao\Desktop\cc自助工具1.1\is.ini"
Local $aIni = IniReadSection($IniFile,"办公软件")
If @error Then Exit MsgBox(4096, "", "错误, 读取INI文件失败.")
Local $jj, $var
For $jj = 1 To $aIni[0][0]
$var = IniReadSection($IniFile, $aIni[$jj][1])
GUICtrlCreateListViewItem($aIni[$jj][1]&"|"&$var[1][1]&"|"&$var[2][1],$ListView1)
Next
EndFunc
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
_sj()
Case $Button3
_bg()
EndSwitch
WEnd