Registriert seit: 28. Jul 2008
Ort: München
1.196 Beiträge
Delphi 10.2 Tokyo Enterprise
|
AW: FireMonkey Grafikfehler bei TTabControl
29. Okt 2012, 14:31
Hi,
hast Du mal folgendes ausprobiert?
Delphi-Quellcode:
Tabcontrol1.BeginUpdate;
tabitem1.BeginUpdate;
//mach was
Tabcontrol1.EndUpdate;
tabitem1.EndUpdate;
Tabitem1.Repaint;
Philip
|