- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
i have some problem trying to buid a program using com wizard generated code, i have this error: 'mt.exe not found'.
the program is the following
program Console2
use todas ! gives access to class1 API calls
implicit none
!local variables
integer(kind=4) :: pclassObject ! pointer to a class1 object
integer(kind=4) :: iStatus ! error code returned from COM subsystem
integer(kind=4) :: iret
!initialize COM
call COMInitialize(iStatus)
!create class1 object
call COMCreateObjectByGUID(CLSID_Class1, CLSCTX_ALL, IID__Class1, pclassObject, iStatus)
iStatus = $$cPlugin_Main(pclassObject, .true.)
!release class1 object
iStatus = COMReleaseObject(pclassObject)
!uninitialize COM
call COMUninitialize()
end program Console2
!!!and some code of the generated module todas
MODULE todas
USE dFWINTY
USE dFCOM
IMPLICIT NONE
........
I dont know what is mt.exe, i dont know if is some installation error of my fortran compile,
Im using ivf 11 in visual studio 2008 and have windows vista
I will thank all the answers!!
the program is the following
program Console2
use todas ! gives access to class1 API calls
implicit none
!local variables
integer(kind=4) :: pclassObject ! pointer to a class1 object
integer(kind=4) :: iStatus ! error code returned from COM subsystem
integer(kind=4) :: iret
!initialize COM
call COMInitialize(iStatus)
!create class1 object
call COMCreateObjectByGUID(CLSID_Class1, CLSCTX_ALL, IID__Class1, pclassObject, iStatus)
iStatus = $$cPlugin_Main(pclassObject, .true.)
!release class1 object
iStatus = COMReleaseObject(pclassObject)
!uninitialize COM
call COMUninitialize()
end program Console2
!!!and some code of the generated module todas
MODULE todas
USE dFWINTY
USE dFCOM
IMPLICIT NONE
........
I dont know what is mt.exe, i dont know if is some installation error of my fortran compile,
Im using ivf 11 in visual studio 2008 and have windows vista
I will thank all the answers!!
Link Copied
5 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
mt.exe is the Visual Studio Manifest Tool. Which version of Visual Studio do you have installed, and is it a retail copy or one included with the Fortran compiler?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Quoting - Steve Lionel (Intel)
mt.exe is the Visual Studio Manifest Tool. Which version of Visual Studio do you have installed, and is it a retail copy or one included with the Fortran compiler?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
mt.exe should be in C:Program FilesMicrosoft SDKsWindowsv6.0Abin Is it?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Quoting - Steve Lionel (Intel)
mt.exe should be in C:Program FilesMicrosoft SDKsWindowsv6.0Abin Is it?
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Since you said IVF11 (and not 11.1) I assume you are using a separately installed VS2008. Go into Add or Remove Programs, select Visual Studio 2008 and click Change. This will take you to the Maintenance Mode window. Once it is finished loading, click Next and then Add or Remove Features. Under Language Tools > Visual C++ > Visual C++ Tools, make sure the "Win32 Tools" box is checked. If it was not checked and it is now, click Update.
If in fact you are using 11.1 and the bundled Visual Studio 2008 Shell, then mt.exe lives in the Visual Studio 2008VCbin folder, I think.
If in fact you are using 11.1 and the bundled Visual Studio 2008 Shell, then mt.exe lives in the Visual Studio 2008VCbin folder, I think.

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page