form1声明了两个过程a和b;
procedure a();
begin
//...
end;
procdure TForm1.b();
begin
//...
end;在form2中如何调用他们?