case choix of
1: form1.lageducapitaine;
2: form2.lageducapitaine;
3: form3.lageducapitaine;
end;
case choix of 1: with form1 do begin Afficher_lageducapitaine; Afficher_le_nom_du_capitaine; Afficher_le_nom_du_bateau; end; 2: with form2 do begin Afficher_lageducapitaine; etc..; end; 3: with form3 do begin Afficher_lageducapitaine; etc... end;
procedure TForm1.ExeForm;
begin
Afficher_lageducapitaine;
Afficher_le_nom_du_capitaine;
Afficher_le_nom_du_bateau;
....
end;
case choix of
1. Form1.ExeForm;
2. Form2.ExeForm;
3. Form3.ExeForm;
end;
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre questioncase choix of 1: form1.Presenter_le_bateau; 2: form2.Presenter_le_bateau; 3: form3.Presenter_le_bateau; end;
Form[choix].Presenter_le_bateau;
var Choix: Integer; begin Choix := 2; with TForm(Application.FindComponent('Form' + IntToStr(Choix))) do Presenter_le_bateau; end;
. FBateau[1]:=FormBateau1; FBateau[2]:=FormBateau2; FBateau[3]:=FormBateau3;
With FBateau[1] do Showmessage(name),
With TFormBateau(FBateau[1]) DO Presenter_le_bateau;
With TFormBateau(FBateau[1]) DO Presenter_le_bateau;
VAR MesBateaux: Array[1..3] of TFormBateau3 ; MesBateaux[1]:=TformBateau3[FormBateau1]; MesBateaux[2]:=TformBateau3[FormBateau2]; MesBateaux[3]:=TformBateau3[FormBateau3];
For i:=1 to 3 do MesBateaux[i]. Presenter_le_bateau;
Showmessage(TLabel(Bouton1).name):