Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
ShowBalloonTooltip
Where do I put this code.
Tried in the CREATE event and GOTFOCUS, neither is working
Tried in the CREATE event and GOTFOCUS, neither is working
Config = ""
Config<1> = "If applicant relationship is Son":@TM:"Then deceased relationship is Mother or Father"
Config<2> = "Example"
Config<3> = 1
Config<4> = 0
rv = Send_Message(@Window:".OLE_SUBCLASS", "OLE.ShowBalloonTooltip", @Window:".DECEASED_RELATIONSHIP_TO_APPLICANT", Config)
Comments
Works on GOTFOCUS, if I SUBCLASS it ;-)
CtrlId = @Window:".DECEASED_RELATIONSHIP_TO_APPLICANT" Handle = Get_Property(CtrlId, "HANDLE") rv = Send_Message(@Window:".OLE_SUBCLASS", "OLE.Subclass", Handle, CtrlId) Config = "" Config<1> = "If applicant relationship is Son":@TM:"Then deceased relationship is Mother or Father" Config<2> = "Example" Config<3> = 1 Config<4> = 0 rv = Send_Message(@Window:".OLE_SUBCLASS", "OLE.ShowBalloonTooltip", CtrlId , Config)
Just to confirm, you solved your own problem?