- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
hi everybody
i have created a fortran dll Mod1.dll which uses some numerical functions. that's why in thecode ive added
use numerical_libraries
i call this library from a visual basic program that ive created. when i do this in a pc where fortran is installed, i dont have any problem. when i do it in a pc whitout fortran, it doesnt work because it cant find the library. that may be because the numerical libraries arent in this pc. what can i add so it can work?
ive got fortran in my pc and ive found numerical_libraries.mod and other files inside imsl\include and imsl\lib. what should i add and in which path?
thanks a lot. thats a big problem for m
링크가 복사됨
2 응답
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
When linking your DLL, make sure you use Static libraries (not DLL libraries), then all the required IMSL stuff ought to be included with your DLL and it will not go searching for other DLLs to load when you call your DLL.