i ave created a dll and a tester program but the program cannot find the entry point stringEd
dll: [class module]
VB Code:
Option Explicit Public Function stringEd() stringEd = "hello cheecky" End Function
tester program:
declaration statement in module:
VB Code:
Declare Function stringEd Lib "C:\fabian\VB Projects\Mine\dll try\stringEd.dll" () As StringVB Code:
Private Sub Command1_Click() MsgBox stringEd() End Sub
thanx all!
