leehomv 发表于 2010-8-22 16:43:37

SysIPAddress32控件如何操作?

截取到某个软件填写IP的控件为SysIPAddress32
我该如何控制填写IP呢?

xyold1 发表于 2010-8-22 17:17:52

控件设置焦点
发送IP数字,TAB,IP数字,TAB,IP数字,TAB,IP数字

xyold1 发表于 2010-8-22 17:18:15

本帖最后由 xyold1 于 2010-8-22 17:19 编辑

控件设置焦点
发送IP数字,TAB,IP数字,TAB,IP数字,TAB,IP数字


不好意思,卡了一下{:face (394):}

leehomv 发表于 2010-8-22 17:22:06

这么说
这个控件无法设置连续的IP地址喽
必须用TAB切换

xyold1 发表于 2010-8-22 17:32:59

用_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

leehomv 发表于 2010-8-22 17:36:30

{:face (88):}谢谢你哇
页: [1]
查看完整版本: SysIPAddress32控件如何操作?