I have recently upgraded clarion from v11.0.0.13505 to v11.111385.
There is a bug in Easy Multi Tag that no longer recognizes when the user clicks on the tag checkbox.
I have reported this to Ingasoft a long time ago but have never received a reply.
Even their own example program does not work.
I am hoping they see this post!
The workaround someone posted was…
In the Browse Window Control Added to Source code Embed on Control Events New Selection Priority 5000
! 6/9/21 Work around for tagging not working after clarion v11.1 Build 13758
IF (?Browse:1{PROPLIST:MouseDownRow} > 0)
CASE ?Browse:1{PROPLIST:MouseDownField}
OF 1
ThisWindow.Update
IF MultiTag:1.IsSelected()
MultiTag:1.UnTag
ELSE
MultiTag:1.Tag
END
END
END
This works ok, BUT if the user uses their mouse wheel then the program goes into a never ending loop.
PLEASE Ingasoft fix the problem!