yunng 发表于 2015-5-2 19:27:35

求助,怎么获取内容

本帖最后由 yunng 于 2015-5-3 15:11 编辑

#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form2 = GUICreate("窗体1", 405, 294, 546, 234)
$Label1 = GUICtrlCreateLabel("IP", 56, 72, 50, 17)
GUICtrlCreateInput("", 64, 112, 209, 21)
$Button1 = GUICtrlCreateButton("读取", 160, 160, 97, 49)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
   Exit
EndSwitch
WEnd

点击读取 如何获取system32目录360.ini里 ip=192.168.0.1 里的ip.
页: [1]
查看完整版本: 求助,怎么获取内容