Unter XE2 funktioniert der Code. Die Darstellung unter XE3 ist eigenartig.
Füge mal
TmpTI.text := 'test';
ein. Funktionieren tut es nämlich.
Ferner solltest Du immer mit begin- und endupdate arbeiten.
Delphi-Quellcode:
TmpTI := TTabItem.Create(tabcontrol1);
TmpTI.Parent := tabcontrol1;
TmpTI.Text := 'test';
tabcontrol1.BeginUpdate;
tabcontrol1.AddObject(TmpTI);
tabcontrol1.ActiveTab := TmpTI;
tabcontrol1.EndUpdate;
Gruß
Philip