Hello,

i've made an dll just to test it.

the .DLL code:
Code:
Option Explicit

Public Sub MBOX(ByVal Text As String)

    Call MsgBox(Text, vbOKOnly, "MBOX")
    
End Sub
my test project:
Code:
Private Declare Sub MBOX Lib "MBOX.dll" (ByVal Text As String)

Private Sub Form_Load()

   Call MBOX("hello world")

End Sub
i've already gone to > project > references > browse > MBOX.DLL > checked the "MBOX.DLL" > ok
I also registered the .DLL in the system but it's still saying "dll not found" but its not working

Can someone tell me what im doing wrong?