Delphi - Creating a Tabbed Help Form Part #1

preview_player
Показать описание
In this lesson, we will start from a basic form, and create a very useful help system, that can be integrated into your project, for a help system.

Visit out Coding Source Channel for more Delphi lessons.

Thank you
Wayne Barron
Carrz-Fox-Fire Promotions
Dark Effects Productions
Рекомендации по теме
Комментарии
Автор

Thank you so much. This video helped a lot!

cat-kruse
Автор

It helped. I was lost where to find the TTabSheet for a page control.

automationsolution
Автор

Supposons que nous ayons des boutons et que chaque bouton appelle (tabsheet)
Exemple de fournisseur Le produit et le client chaque fois qu'un click sur bouton montre sa propre (tabsheet) s'il n'est plus
il affiche visible

anteratrous
Автор

voici mon code
procedure TForm1.sButton6Click(Sender: TObject);
var
TempSheet: tsTabSheet;
begin
TempSheet :=

// si l'ongle fournisseur n'est pas disponible est n'est pas créer recréer le
TempSheet.Caption := 'FOURNISEUR';
TempSheet.PageControl := sPageControl1;

with TFrame4.Create(self) do
begin
Name := 'Frame4' +
Align := alClient;
Parent := TempSheet;

end;


end;

end.

anteratrous