{ 实验用的 form } 
unit test; 
interface 
uses 
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, 
  StdCtrls; 
type 
  TForm1 = class(TForm) 
    Button1: TButton; 
    procedure Button1Click(Sender: TObject); 
  private 
    { Private declarations } 
  public 
    { Public declarations } 
    procedure show;  //这里是不是应该加一个声明。
  end; 
var 
  Form1: TForm1; 
implementation 
//调用上面的 dll 
procedure show;stdcall;external 'ReadForm.dll' index 1; 
{$R *.DFM} 
procedure TForm1.Button1Click(Sender: TObject); 
begin 
  show; 
end; 
end.