danke.
also bei a) ist das problem, dass dann so n neues fenster kommt mit "debugger
exception notification"... da steht dann noch was mit "not a valid floating point...".
und so sieht das ganze bei mir aus:
var
Form1: TForm1;
getallen: array [1..3] of real;
inhoud1: string;
inhoud2: string;
inhoud3: string; //inhoud1,2,3, soll später beim buttonclick im memo angezeigt werden
implementation
{$R *.dfm}
procedure TForm1.FormCreate(Sender: TObject);
begin
getallen[1]:= strtofloat(edit1.text);
getallen[2]:= strtofloat(edit2.text);
getallen[3]:= strtofloat(edit3.text;
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
...