Registriert seit: 27. Apr 2003
Ort: Bad Honnef
1.644 Beiträge
Delphi 2009 Professional
|
Re: String und TString
11. Nov 2003, 18:24
Hallo,
versuche es mal so:
Delphi-Quellcode:
procedure TForm1.Button4Click(Sender: TObject);
var
Pfad : String;
Filename : String;
iCnt : Integer;
begin
Pfad:=ExtractFilePath(Application.Exename);
Pfad:=IncludeTrailingBackSlash(Pfad);
For iCnt:=0 to ListBox1.Items.Count-1 do
begin
Filename:=Pfad+ListBox1.Items[iCnt];
sendNewsLetter (Filename,memo1.Lines,' info@domain.com',' Test',' mpnormal',' text/html',' mail.domain.com',' ',' ',25,0);
end;
end;
Den Parameter an kannst Du Dir dann sparen.
|
|
Zitat
|