Registriert seit: 13. Okt 2010
Ort: Bayern
490 Beiträge
Delphi 10.4 Sydney
|
AW: Zirkularen Bezug von zwei Forms wie vermeiden ?
31. Mai 2011, 21:13
Delphi-Quellcode:
procedure tuwas(var AButton: TButton);
begin
AButton.Caption := 'helloworld';
end;
procedure tuwasanderes(var AButton: TButton; const AText: string);
begin
AButton.Caption := 'helloworld';
AButton.Hint := AText;
end;
So einfach ist das.
Nr.1 Delphi-Tool: [F7]
Geändert von ConnorMcLeod (31. Mai 2011 um 21:35 Uhr)
|