Jump to content

Recommended Posts

Posted

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 ! :P

Posted

$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 :)

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...