Lazycat Posted May 31, 2005 Posted May 31, 2005 Inspired this thread, with new DllStruct abilities and my needs, here is new SysIPAddress32 wrapper, working with actual control, so you can have few in one GUI. Also this not require global variables.Required latest beta with DllStruct!sysipcontrol.zip Koda homepage ([s]Outdated Koda homepage[/s]) (Bug Tracker)My Autoit script page ([s]Outdated mirror[/s])
/dev/null Posted May 31, 2005 Posted May 31, 2005 (edited) Many thanks! Exactly what I needed for my latest script.... BTW: Where do you find the parameters for the DLL Calls? Cheers Kurt Edited May 31, 2005 by /dev/null __________________________________________________________(l)user: Hey admin slave, how can I recover my deleted files?admin: No problem, there is a nice tool. It's called rm, like recovery method. Make sure to call it with the "recover fast" option like this: rm -rf *
w0uter Posted May 31, 2005 Posted May 31, 2005 nice. i coud make a nice seriall box w/ this. gj. My UDF's:;mem stuff_Mem;ftp stuff_FTP ( OLD );inet stuff_INetGetSource ( OLD )_INetGetImage _INetBrowse ( Collection )_EncodeUrl_NetStat_Google;random stuff_iPixelSearch_DiceRoll
Schlumpf Posted October 27, 2006 Posted October 27, 2006 I've a problem. Is it possible to use this in a window with tabs? [CENTER]Sorry for my bad English... ;)[/CENTER]
GaryFrost Posted October 27, 2006 Posted October 27, 2006 I've a problem. Is it possible to use this in a window with tabs? Try using the one in the UDFs, like so expandcollapse popup#include <GuiIPAddress.au3> Opt("MustDeclareVars", 1) _Main() Func _Main() Local $msg, $hgui, $button, $hIPAddress Local $tab, $tab_item, $tab_item2 $hgui = GUICreate("IP Address Control", 300, 170) $tab = GUICtrlCreateTab(10, 10, 280, 130) $tab_item = GUICtrlCreateTabItem("test") $hIPAddress = _GUICtrlIpAddressCreate ($hgui, 20, 40, 150, 30, $WS_DLGFRAME, $WS_EX_CLIENTEDGE) _GUICtrlIpAddressSet ($hIPAddress, "24.168.2.128") GUICtrlCreateTabItem("") $tab_item2 = GUICtrlCreateTabItem("test2") GUICtrlCreateTabItem("") $button = GUICtrlCreateButton("Exit", 100, 140, 100, 25) GUISetState(@SW_SHOW) While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE Or $msg = $button Exit Case $tab If GUICtrlRead($tab) = 0 Then _GUICtrlIpAddressShowHide ($hIPAddress, @SW_SHOW) Else _GUICtrlIpAddressShowHide ($hIPAddress, @SW_HIDE) EndIf EndSelect WEnd EndFunc ;==>_Main SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
Schlumpf Posted October 27, 2006 Posted October 27, 2006 sorry, but where can i download the "GuiIPAddress.au3"? [CENTER]Sorry for my bad English... ;)[/CENTER]
GaryFrost Posted October 27, 2006 Posted October 27, 2006 (edited) sorry, but where can i download the "GuiIPAddress.au3"?Latest betaNote: Once you have the beta the Include will work with the release also, just didn't get it submitted in time. Edited October 27, 2006 by gafrost SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
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