SysIPAddress32控件如何操作?
截取到某个软件填写IP的控件为SysIPAddress32我该如何控制填写IP呢? 控件设置焦点
发送IP数字,TAB,IP数字,TAB,IP数字,TAB,IP数字 本帖最后由 xyold1 于 2010-8-22 17:19 编辑
控件设置焦点
发送IP数字,TAB,IP数字,TAB,IP数字,TAB,IP数字
不好意思,卡了一下{:face (394):} 这么说
这个控件无法设置连续的IP地址喽
必须用TAB切换 用_GUICtrlIpAddress_Set
#include <GuiConstantsEx.au3>
#include <GuiIPAddress.au3>
Opt("MustDeclareVars", 1)
$Debug_IP = False ; Check ClassName being passed to IPAddress functions, set to True and use a handle to another control to see it work
_Main()
Func _Main()
Local $hgui, $hIPAddress
$hgui = GUICreate("IP Address Control Set (String) Example", 400, 300)
$hIPAddress = _GUICtrlIpAddress_Create($hgui, 10, 10)
GUISetState(@SW_SHOW)
_GUICtrlIpAddress_Set ($hIPAddress, "24.168.2.128")
MsgBox (4160, "Information", "IP Address: " & _GUICtrlIpAddress_Get($hIPAddress))
; Wait for user to close GUI
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
EndFunc ;==>_Main {:face (88):}谢谢你哇
页:
[1]