implementation
  
{$R *.dfm}procedure TForm1.FormCreate(Sender: TObject);
var
  handle:thandle;
begin
  handle:=loadlibrary(.....)
_______________________________问为什么loadlibrary(api)函数的handle变量只能定义在formcreate事件中,而不能定义在implementation下面呢?
如果要定义为当前单元公共变量,那应该怎么做?