###User Defined Function###
_GUICtrlEdit_ShowBalloonTip

###Description###
Displays a balloon tip associated with an edit control

###Syntax###
#include <GuiEdit.au3>
_GUICtrlEdit_ShowBalloonTip ( $hWnd, $sTitle, $sText, $iIcon )


###Parameters###
@@ParamTable@@
$hWnd
	Control ID/Handle to the control
$sTitle
	String for title of ToolTip (Unicode)
$sText
	String for text of ToolTip (Unicode)
$iIcon
	Icon can be one of the following:
		$TTI_ERROR - Use the error icon
		$TTI_INFO - Use the information icon
		$TTI_NONE - Use no icon
		$TTI_WARNING - Use the warning icon
	The following for <strong>Windows Vista or later</strong>
		$TTI_ERROR_LARGE - Use the error icon
		$TTI_INFO_LARGE - Use the information icon
		$TTI_WARNING_LARGE - Use the warning icon
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	True.
Failure:	False.
@@End@@


###Remarks###
None.


###Related###
_GUICtrlEdit_HideBalloonTip


###Example###
@@IncludeExample@@
