Registriert seit: 9. Jun 2003
Ort: Pforzheim
2.458 Beiträge
Delphi 2007 Professional
|
Re: Pagecontrol nur tabs ausblenden - Tabvisble klappt nit?
29. Jun 2005, 18:28
Delphi-Quellcode:
var
Index : shortint;
begin
for Index := 0 to (Form2.PageControl1.PageCount - 1) do
form2.PageControl1.Pages[Index].TabVisible := false;
form2.PageControl1.ActivePageIndex := 0; // oder auf welche seite du auch immer möchtest
end;
Christian Bootz Einstein ist tot, Newton ist tot,
und mir ist auch schon ganz schlecht...
|