我编写了一个很简单的  hello.dll  里面就一个  hello  函数实现  
Public  Sub  hello()  
       MsgBox  "hello  worlde!"  
End  Sub  
 
注册成功后,  
 
另一工程里调用这个函数,  
Declare  Sub  hello  Lib  "hello.dll"  ()  
 
Private  Sub  Command2_Click()  
       hello  
End  Sub  
 
结果报错:hello函数入口找不到。  
请问谁能帮解决一下是发生的原因。