Thema
:
Delphi
TStringList als Result
Einzelnen Beitrag anzeigen
shmia
Registriert seit: 2. Mär 2004
5.508 Beiträge
Delphi 5 Professional
#
6
Re: TStringList als Result
8. Jun 2004, 10:07
Nö, eher so:
zusammenfalten
·
markieren
Delphi-Quellcode:
class
function
TForm2.GetUserInput(List: TStrings): Boolean;
begin
with
TForm2.Create(
nil
)
do
begin
try
Result := (ShowModal = mrOK);
// Bediener entscheidet mit OK oder Cancel-Button
if
Assigned(List)
then
List.Add(Edit1.Text);
finally
Free;
end
;
end
;
end
;
Andreas
Zitat
shmia
Öffentliches Profil ansehen
Mehr Beiträge von shmia finden