Jump to content

Recommended Posts

Posted (edited)

Inspired by: http://www.autoitscript.com/forum/index.ph...wtopic=7849&hl=

HOW IT WORKS

- I'm too tired to explain it, but I tried to add comments :lmao:

- Download the attached include script, and try the example below

LIMITATIONS:

- You need certain global variables

- Do not use more that one of these controls at a time

DIFFICULTIES:

- The fact that hotkeys are global

- The fact that there is no way to find the GuiID# of the control that has focus

; CyberSlug - 22 Jan 2005 example of SysIpAddress psuedo-control

#include <GuiConstants.au3>
#include "SysIpAddressInclude.au3"

; CURRENTLY, THE FOLLOWING GLOBAL VARIABLES ARE REQUIRED
Global $ip, $prevLength, $prev = WinGetHandle(WinGetTitle(""))

Dim $PARENT = GuiCreate("Example")

$button_setIP = GuiCtrlCreateButton("Set Default IP", 10, 10, 100, 100)
$button_refreshIP = GuiCtrlCreateButton("RefreshIP", 10, 110, 100, 100)
$button_showPartial = GuiCtrlCreateButton("Read Partial", 110, 110, 100, 100)
$button_showIP = GuiCtrlCreateButton("Read IP Address", 110, 10, 100, 100)
$ip_ctrl = _GuiCtrlCreateIP(30, 300, $PARENT, $ip, $prevLength)

_GuiCtrlFocusIP($ip_ctrl)
GuiSetState()

While 1
    _GuiCtrlProcessIP();VERY IMPORTANT FUNCTION :)
    
    $msg = GuiGetMsg()
    Select
    Case $msg = $GUI_EVENT_CLOSE
        ExitLoop
        
    Case $msg = $button_showIP
        MsgBox(4096,"Ctrl Read", _GuiGtrlGetIP($ip_ctrl))
        
    Case $msg = $button_showPartial
        MsgBox(4096,"2nd octet",  _GuiGtrlGetIP($ip_ctrl, 2))
        
    Case $msg = $button_setIP
        _GuiCtrlSetIP($ip_ctrl, "192.168.0.1")
        
    Case $msg = $button_refreshIP
        _GuiCtrlRefreshIP($ip_ctrl, $PARENT)
        
    EndSelect
WEnd

SysIpAddressInclude.au3

Edited by CyberSlug
Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Posted

Very nice attempt! With mentioned above, only disadvantage in compare with system control - can't move between octets with arrow keys.

- The fact that there is no way to find the GuiID# of the control that has focus

I'm also faced with this prob recently. Maybe this will be good addition if GUICtrlGetState will return focus "state" as well...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...