Hi try to create a dll and import it , i store the dll inside a folderlibrary , the dll i have created with visualbasic.net and i call it with this code
but return me this error
2023.09.13 00:19:02.627 da_cancellare AUDCAD,H1: not initialized
2023.09.13 00:19:02.624 da_cancellare AUDCAD,H1: unresolved import function call
2023.09.13 00:19:02.508 Cannot find 'Somma' in 'testdll.dll'
why not import? thanks at all
sorry my visualbasic code for create dll
Public Class Class1 Public Function Somma(ByVal a As Integer, ByVal b As Integer) As Integer Somma = a + b End Function End Class

- 2013.02.27
- jlee88my jlee88my 2,935 21 21 silver badges 28 28 bronze badges
- stackoverflow.com
Hi try to create a dll and import it , i store the dll inside a folderlibrary , the dll i have created with visualbasic.net and i call it with this code
but return me this error
2023.09.13 00:19:02.627 da_cancellare AUDCAD,H1: not initialized
2023.09.13 00:19:02.624 da_cancellare AUDCAD,H1: unresolved import function call
2023.09.13 00:19:02.508 Cannot find 'Somma' in 'testdll.dll'
why not import? thanks at all
VB6.0,VB.net cannot build the standard DLL in general method.
last time i build stand dll using vb6 is on one day of 2004. and i had forgot the details so i am sorry about that.
try using vc++ instead.

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hi try to create a dll and import it , i store the dll inside a folderlibrary , the dll i have created with visualbasic.net and i call it with this code
but return me this error
2023.09.13 00:19:02.627 da_cancellare AUDCAD,H1: not initialized
2023.09.13 00:19:02.624 da_cancellare AUDCAD,H1: unresolved import function call
2023.09.13 00:19:02.508 Cannot find 'Somma' in 'testdll.dll'
why not import? thanks at all