mayusod Posted April 30, 2015 Posted April 30, 2015 if I create a label at runtime and add the clientEvents not work, but if I assign the clientevent to a label already created if it works Label6.ClientEvents.ExtEvents.Add('added=function added(sender, container, pos, eOpts)'#13#10'{'#13#10' sender.draggable= true;'#13#10'}'); LabelPrueba:=TUniLabel.Create(Self); with LabelPrueba do begin Left:=100; Top:=100; Caption:='Prueba'; Parent:=PanelFormato; ClientEvents.Enabled:=True; ClientEvents.ExtEvents.Add('added=function added(sender, container, pos, eOpts)'#13#10'{'#13#10' sender.draggable= true;'#13#10'}'); end; I'm doing wrong Quote
wangxuebin Posted April 30, 2015 Posted April 30, 2015 ... name:=somename; ... a created tunicontrol must have a name. best regards. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.