关于DLL的问题!!!!!!!!!!!!!!!!!Dll的原代码:library dllProject1;
uses
  SysUtils,
  Classes;{$R *.res}function GetStr(X,Y:string):string;   begin     Result:=X+Y;   end;   exports
    GetStr;
begin
end.
下面是调用的代码 type
  TForm1 = class(TForm)....
.....
....
..... end;var
  Form1: TForm1;
  
  function GetStr(x,y:string):string;stdcall;external 'dllProject1.dll';implementation...
...
...
//下面是按钮事件
procedure TForm1.Button1Click(Sender: TObject);
 begin
 showmessage(GetStr('Hello','world'));end;上面的代码都能正常编译,DLL的路径也没有错,但是当按下按钮时调用DLL时出错,错误提示"
application-defined exception (code oxc000001e)....." ,环境为WIN2000 ,DELPHI6