- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
How do I debug the Fortran part of aprogramthatis a VB maincalling an IVF9.1 dll? It is running in Visual Studio 2005.
I can debug the VB part ok, but in the Fortran project I get the message "The breakpoint will not currently be hit. No symbols have been loaded for this document.."
I've tried various compiler/linker options to no avail. I presume it's something simple thatI am missing.
Thanks,
Phil
コピーされたリンク
3 返答(返信)
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Don't know if this might help, but with IVF's granddaddy CVF I start the FORTRAN debugger, with the executable for the debug session set to my VB executable. Works well.
As long as you don't do anything funny like remoting, just go in your fortran project, start debugging it with the debugging executable set as the VB executable, and you should be good. I'm assuming your Fortran is a DLL.
As long as you don't do anything funny like remoting, just go in your fortran project, start debugging it with the debugging executable set as the VB executable, and you should be good. I'm assuming your Fortran is a DLL.
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
First, the DLL and the VB program should be in the same "solution". If the VB program is native (not VB.NET managed code), that's all you have to do. If it is managed, you also have to go to the Debug property page of the VB.NET project and check the box to enable unmanaged code debugging.
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Thanks, but I need more detail to try this. How do I set the executable to the VB executable? Yes, the Fortran is a DLL.
