For example
I have created many functions and procedures in the AddIn (MyAddin.dll) for
using in other VB6 applications.
One of this function called
Cosh(Alfa as Double) as double (defined as public)
Normaly will be declared Functions from .dll modules in the form
Private Declare Function GetProfileString Lib "kernel32" Alias _
"GetProfileStringA" (ByVal lpAppName As String, _
ByVal lpKeyName As String, ByVal lpDefault As String, _
ByVal lpReturnedString As String, _
ByVal nSize As Long) As Long
What should be the syntax for the function call Cosh(Alfa) in the module
MyAddin.dll (see function definition above)?
Archived from group: microsoft>public>vb>enterprise