Delphi access violation

1. 错误信息:Project *.exe raised exception class EAccessViolation with message...

 

源程序:

procedure TForm1.FormCreate(Sender: TObject);

begin
   form2.Show ;

end;

 

原因:一般情况下不能在主窗体创建的时候 show 另一个窗体,因为这个窗体还没有被创建,可以将代码写到,from1 的fromshow  或者 active中。

你可能感兴趣的:(Delphi access violation)