- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
I've written a few Fortrans DLLs which are referenced from a VB application.
Fortran 6.6 and VB 6.0 on XP.
The application works fine on the creating PC after I make the VB executeable.
When I move the executeable and the DLLs to another XP PC and place them in the appropriate directory - I get a run-time error '53': Can't find file. - when I execute the code referencing the DLLs.
The file snytax is correct. What am I missing ?
Thank you,
Cliff Phares
EI.DuPont in Orange TX
コピーされたリンク
3 返答(返信)
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Usually, a DLL created by Fortran depents on different other DLLs. If you want to know which DLLs are required by your own DLL, then go to the DOS command line, change to the folder where your DLL is located and type the following:
dumpbin nameofyourdll.dll /dependents
Greetings
Urs
dumpbin nameofyourdll.dll /dependents
Greetings
Urs
