UDF > GUI > GuiComboBoxEx >


_GUICtrlComboBoxEx_Destroy

Supprime le contrôle

#include <GuiComboBoxEx.au3>
_GUICtrlComboBoxEx_Destroy ( ByRef $hWnd )

Paramètre

$hWnd Handle du contrôle

Valeur de retour

Succès: Retourne True, $hWnd est défini à 0.
Échec: Retourne False.

Remarque

Réservé exclusivement aux contrôles ComboBoxEx créés avec _GUICtrlComboBoxEx_Create().

En relation

_GUICtrlComboBoxEx_Create

Exemple

#include <GuiComboBoxEx.au3>
#include <GUIConstantsEx.au3>
#include <MsgBoxConstants.au3>

Example()

Func Example()
    Local $hGUI, $hCombo

    ; Crée une GUI
    $hGUI = GUICreate("ComboBoxEx Destroy", 400, 300)
    $hCombo = _GUICtrlComboBoxEx_Create($hGUI, "This is a test|Line 2", 2, 2, 394, 268)
    GUISetState(@SW_SHOW)

    _GUICtrlComboBoxEx_AddString($hCombo, "Some More Text")
    _GUICtrlComboBoxEx_InsertString($hCombo, "Inserted Text", 1)

    ; Détruit le contrôle
    MsgBox($MB_SYSTEMMODAL, "Information", "Destroy the control")
    _GUICtrlComboBoxEx_Destroy($hCombo)

    ; Boucle jusqu'à ce que l'utilisateur quitte
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
EndFunc   ;==>Example