Sets the tip text associated with a control.
GUICtrlSetTip ( controlID, tiptext [, "title" [, icon [, options]]] )
This tip text is displayed in a tooltip rectangular area.
To skip an optional parameter, leaving its default value intact, use the Default keyword..
You may use @CR or @LF to create multi-line tooltips.
To display an icon, you must specify a non-empty title. The icon appears on the same row as the title and thus requires a title to be present.
#include <GUIConstantsEx.au3>
Example()
Func Example()
GUICreate ("My GUI control tip"); will create a dialog box that when displayed is centered
GUICtrlCreateLabel ("my label",10,20)
GUICtrlSetTip (-1,"tip of my label")
GUISetState (@SW_SHOW )
; Loop until the user exits.
While 1
Switch GUIGetMsg ()
Case $GUI_EVENT_CLOSE
ExitLoop
EndSwitch
WEnd
EndFunc ;==>Example