Sets the text of the note associated with a command link button
#include <GuiButton.au3>
_GUICtrlButton_SetNote ( $hWnd, $sNote )
$hWnd | Control ID/Handle to the control |
$sNote | String that contains the note |
Success: | True. |
Failure: | False. |
Windows Vista or later.
_GUICtrlButton_GetNote, _GUICtrlButton_GetNoteLength
Search BCM_SETNOTE in MSDN Library.
#include <GuiButton.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
Global $g_idMemo
; Note the controlID from these button(s) can NOT be read with GUICtrlRead.
Example()
Func Example()
Local $hGUI = GUICreate("Button Get/Set Note (v" & @AutoItVersion & ")", 400, 400)
$g_idMemo = GUICtrlCreateEdit("", 10, 75, 390, 315, $WS_VSCROLL)
GUICtrlSetFont($g_idMemo, 9, 400, 0, "Courier New")
Local $hButton = _GUICtrlButton_Create($hGUI, "Button1", 10, 10, 160, 60, BitOR($BS_COMMANDLINK, $BS_DEFCOMMANDLINK))
_GUICtrlButton_SetNote($hButton, "This is a test of Vista")
GUISetState(@SW_SHOW)
MemoWrite("Note: " & _GUICtrlButton_GetNote($hButton))
MemoWrite("Note Length: " & _GUICtrlButton_GetNoteLength($hButton))
MemoWrite("Button Text: " & _GUICtrlButton_GetText($hButton))
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