Supprime le contrôle
#include <GuiComboBoxEx.au3>
_GUICtrlComboBoxEx_Destroy ( ByRef $hWnd )
$hWnd | Handle du contrôle |
Succès: | Retourne True, $hWnd est défini à 0. |
Échec: | Retourne False. |
Réservé exclusivement aux contrôles ComboBoxEx créés avec _GUICtrlComboBoxEx_Create().
#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