> I do workarounds but that doesn't solve all the cases and it would be great
to have this "onexecute" event like on the buttons included in the official
package.

All the mouse-event in msegui are grouped with "onclientmouseevent" and the
var "info" gives the kind and other infos.

Example to respond at button-release:

procedure mycomponent.clientmouseevent(var info: mouseeventinfoty);
begin
  if (info.eventkind = ek_buttonrelease)  then
      begin
     // do something
     end;
end;
 




--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/


_______________________________________________
mseide-msegui-talk mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to