Einzelnen Beitrag anzeigen

Blackheart

Registriert seit: 4. Mai 2005
846 Beiträge
 
Delphi 7 Enterprise
 
#12

Re: Literaturliste im Memofeld erstellen?

  Alt 21. Apr 2009, 19:05
Delphi-Quellcode:
var
  Form1: TForm1;
  Eintrag:String;
implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
begin
  Eintrag:=EdAutor.Text + ' - ' + EdJahr.Text + ' - ' + EdTitel.Text;
  with Memo1.Lines do
  begin
    Add(Eintrag);
  end;
end;

end.
Crashkurs anschauen !
Blackheart
  Mit Zitat antworten Zitat