Gee Posted October 8, 2008 Posted October 8, 2008 Hi all I have a script and it return array, I've got a GUIctrlCreatecombo .... How Can I insert these arrays and scripting into its ?? Thank !
enaiman Posted October 8, 2008 Posted October 8, 2008 $combo_content = "" For $i = 1 to UBound($array) - 1 If $i = UBound($array) - 1 Then $combo_content &= $array[$i] Else $combo_content &= $array[$i]&"|" EndIf Next GUICtrlSetData($combo, $combo_content) SNMP_UDF ... for SNMPv1 and v2c so far, GetBulk and a new example script wannabe "Unbeatable" Tic-Tac-Toe Paper-Scissor-Rock ... try to beat it anyway :)
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