Hi All,
I am creating a simple user input form which contains a number of standard inputs and some IP address inputs created using _GUICtrlIpAddress_Create. I am able to add a tooltip to the standard inputs using GUICtrlSetTip but am not able to for the IP Addresses. I've tried the following and nothing appears:
Func SetToolTip($form, $ctrl, $tip)
Local $ExtStyle = 0
Local $ctrlHdl = GUICtrlGetHandle($ctrl)
Local $tipHdl = _GUIToolTip_Create($ctrlHdl, BitOR($TTS_ALWAYSTIP, $TTS_NOPREFIX))
_GUIToolTip_AddTool($tipHdl, 0, $tip, $ctrlHdl, 0, 0, 0, 0, 0, 0)
EndFunc
All help much appreciated as I would not want to go down the path of monitoring the mouse position as there are more than 20 inputs.
Kind Regards,
Vlad