Halt,
kommando zurück
Es geht zwar so wie ich es beschrieben habe aber Du wolltest es ja in einem TMemo. Das ist dann noch einfacher.
Delphi-Quellcode:
procedure TForm1.Button1Click(Sender: TObject);
begin
ADOCommand1.CommandText := 'xp_cmdshell "dir *.exe"';
ADODataSet1.Recordset := ADOCommand1.Execute;
ADODataSet1.First;
while not (ADODataSet1.Eof) do
begin
Memo1.Lines.Add(ADODataSet1.Fields.FieldByName('output').AsString);
ADODataSet1.Next;
end;
end;
Stephan B.
"Lasst den Gänsen ihre Füßchen"