When I change text from a tile or tilecontrol title it only updates when I activate a different frame, and the tile only when I do click on it:
Delphiprocedure TfrmMenu.changeTileCaptionAndTitle();
var AFrame: TdxTileControlItemFrame;
begin
AFrame := tlSelection.Frames[0];
AFrame.Text1.Value := 'new text1';
dxTile.Title.Text := 'new title';
end;
Thanks
Juan Pedro