Delete the Button control
#include <GuiButton.au3>
_GUICtrlButton_Destroy ( ByRef $hWnd )
$hWnd | Control ID/Handle to the control |
Success: | True, $hWnd is set to 0. |
Failure: | False. |
Restricted to only be used on Button controls created with _GUICtrlButton_Create().
#include <GuiButton.au3>
#include <GUIConstantsEx.au3>
#include <MsgBoxConstants.au3>
#include <WindowsConstants.au3>
Global $g_idMemo
Example()
Func Example()
Local $hGUI, $hBtn, $hRdo, $hChk
$hGUI = GUICreate("Buttons", 400, 400)
$g_idMemo = GUICtrlCreateEdit("", 119, 10, 276, 374, $WS_VSCROLL)
GUICtrlSetFont($g_idMemo, 9, 400, 0, "Courier New")
$hBtn = _GUICtrlButton_Create($hGUI, "Button1", 10, 10, 90, 50)
$hRdo = _GUICtrlButton_Create($hGUI, "Radio1", 10, 60, 90, 50, BitOR($BS_AUTORADIOBUTTON, $BS_NOTIFY))
$hChk = _GUICtrlButton_Create($hGUI, "Check1", 10, 120, 90, 50, BitOR($BS_AUTO3STATE, $BS_NOTIFY))
GUISetState(@SW_SHOW)
MemoWrite("$hBtn handle: " & $hBtn)
MemoWrite("$hRdo handle: " & $hRdo)
MemoWrite("$hChk handle: " & $hChk & @CRLF)
MsgBox($MB_SYSTEMMODAL, "Information", "About to Destroy Buttons")
Send("^{END}")
MemoWrite("Destroyed $hBtn: " & _GUICtrlButton_Destroy($hBtn))
MemoWrite("Destroyed $hRdo: " & _GUICtrlButton_Destroy($hRdo))
MemoWrite("Destroyed $hChk: " & _GUICtrlButton_Destroy($hChk) & @CRLF)
MemoWrite("$hBtn handle: " & $hBtn)
MemoWrite("$hRdo handle: " & $hRdo)
MemoWrite("$hChk handle: " & $hChk & @CRLF)
While 1
Switch GUIGetMsg()
Case $GUI_EVENT_CLOSE
ExitLoop
EndSwitch
WEnd
Exit
EndFunc ;==>Example
; Write a line to the memo control
Func MemoWrite($sMessage)
GUICtrlSetData($g_idMemo, $sMessage & @CRLF, 1)
EndFunc ;==>MemoWrite