L
luoma
Unregistered / Unconfirmed
GUEST, unregistred user!
procedure TForm1.N9Click(Sender: TObject);
begin
IntForm:=TIntForm.Create(Self);
IntForm.Showmodal;
end;
procedure TIntForm.Button1Click(Sender: TObject);
begin
IntForm.Free;
end;
编译时没有错,但运行时,只要Button1Click就报错'Abstract error'
begin
IntForm:=TIntForm.Create(Self);
IntForm.Showmodal;
end;
procedure TIntForm.Button1Click(Sender: TObject);
begin
IntForm.Free;
end;
编译时没有错,但运行时,只要Button1Click就报错'Abstract error'