Based on the challenge I asked on this forum through the link Consuming .NET dll in VB6 application I was successfully able to consume my .NET dll within VB6 by registering the dll and it's .tlb files, referencing the tlb file within my application and using the code below:
Dim dObject as new DllName.ClassName
dObject.MethodName(filename)
The issue is I want to be able to use the code below
Declare Sub MethodNameLib "DllName" (ByVal ff As String)
MethodName(filename)
However, I get the error "Run-time error 453: Cannot find dll entry-point. Please could any help as this is urgent?