CyberSlug Posted January 22, 2005 Posted January 22, 2005 (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 - Download the attached include script, and try the example belowLIMITATIONS:- You need certain global variables- Do not use more that one of these controls at a timeDIFFICULTIES:- The fact that hotkeys are global- The fact that there is no way to find the GuiID# of the control that has focusexpandcollapse popup; 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 WEndSysIpAddressInclude.au3 Edited January 22, 2005 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!
Lazycat Posted January 22, 2005 Posted January 22, 2005 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 focusI'm also faced with this prob recently. Maybe this will be good addition if GUICtrlGetState will return focus "state" as well... Koda homepage ([s]Outdated Koda homepage[/s]) (Bug Tracker)My Autoit script page ([s]Outdated mirror[/s])
CyberSlug Posted January 22, 2005 Author Posted January 22, 2005 With mentioned above, only disadvantage in compare with system control - can't move between octets with arrow keys.<{POST_SNAPBACK}>Thanks for pointing that out. I've added the feature, and I hope I didn't break anything (such as backspace). Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
BasicOs Posted January 23, 2005 Posted January 23, 2005 where can the _GuiCtrlProcessIP() be found ? Autoit.es - Foro Autoit en Español Word visitors Image Clustrmap image: - Football Spanish team - Spanish team: Casillas, Iniesta, Villa, Xavi, Puyol, Campdevilla, etc..Programando en Autoit+Html - Coding Autoit-Html - Arranca programas desde Internet - Preprocesador de Autoit a http
CyberSlug Posted January 23, 2005 Author Posted January 23, 2005 where can the _GuiCtrlProcessIP() be found ?<{POST_SNAPBACK}>In the SysIpAddressInclude.au3 file attached at the bottom of my first post Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
BasicOs Posted January 23, 2005 Posted January 23, 2005 Your Script dont change the Ip of the computer it is running in this moment?, do it? Thanks Autoit.es - Foro Autoit en Español Word visitors Image Clustrmap image: - Football Spanish team - Spanish team: Casillas, Iniesta, Villa, Xavi, Puyol, Campdevilla, etc..Programando en Autoit+Html - Coding Autoit-Html - Arranca programas desde Internet - Preprocesador de Autoit a http
CyberSlug Posted January 23, 2005 Author Posted January 23, 2005 Your Script dont change the Ip of the computer it is running in this moment?, do it?Thanks<{POST_SNAPBACK}>No. It's just a special text box that makes it easy to type in an IP address Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now