migrating to .NET 2003 from visual studio 6.0 problem
-
Hi all, i am doing project in MFC. up to this moment i used visual studio 6.0 IDE for my developement purpose. but because of some reasons i shifted Visual studio 2003 Version 7.1.3088. i migrated all my project to this version and now when i create a final release. and run it on other machine that does not have .NET or .NET framework installed on it gives an error by saying mfc71.dll not found. so is it necessary to install .NET framework on the client's computer to run my application?? Thanks and regads Harshal
-
Hi all, i am doing project in MFC. up to this moment i used visual studio 6.0 IDE for my developement purpose. but because of some reasons i shifted Visual studio 2003 Version 7.1.3088. i migrated all my project to this version and now when i create a final release. and run it on other machine that does not have .NET or .NET framework installed on it gives an error by saying mfc71.dll not found. so is it necessary to install .NET framework on the client's computer to run my application?? Thanks and regads Harshal
Try this: In project settings search for "Use MFC in a Static Library" in Project>Properties>General > Use of MFC and select and apply it.
Somethings seem HARD to do, until we know how to do them. ;-)_AnShUmAn_
-
Hi all, i am doing project in MFC. up to this moment i used visual studio 6.0 IDE for my developement purpose. but because of some reasons i shifted Visual studio 2003 Version 7.1.3088. i migrated all my project to this version and now when i create a final release. and run it on other machine that does not have .NET or .NET framework installed on it gives an error by saying mfc71.dll not found. so is it necessary to install .NET framework on the client's computer to run my application?? Thanks and regads Harshal
harsha_1234 wrote:
and run it on other machine that does not have .NET or .NET framework installed on it gives an error by saying mfc71.dll not found.
If you write a program using .NET, it will require the pertaining framework to be installed in the target machine where you run the program. Linking the files statically may result in an increased size of the application.
harsha_1234 wrote:
so is it necessary to install .NET framework on the client's computer to run my application??
Yes!
Nobody can give you wiser advice than yourself. - Cicero
-
harsha_1234 wrote:
and run it on other machine that does not have .NET or .NET framework installed on it gives an error by saying mfc71.dll not found.
If you write a program using .NET, it will require the pertaining framework to be installed in the target machine where you run the program. Linking the files statically may result in an increased size of the application.
harsha_1234 wrote:
so is it necessary to install .NET framework on the client's computer to run my application??
Yes!
Nobody can give you wiser advice than yourself. - Cicero
brahmma wrote:
harsha_1234 wrote: so is it necessary to install .NET framework on the client's computer to run my application?? Yes!
NO !!!! he's programming MFC ! so only the MFC71.dll, MSVCR71.dll and MSCVP71.dll may be necessary :zzz:
TOXCCT >>> GEII power
[VisualCalc 3.0 updated ][Flags Beginner's Guide new! ]
-
Hi all, i am doing project in MFC. up to this moment i used visual studio 6.0 IDE for my developement purpose. but because of some reasons i shifted Visual studio 2003 Version 7.1.3088. i migrated all my project to this version and now when i create a final release. and run it on other machine that does not have .NET or .NET framework installed on it gives an error by saying mfc71.dll not found. so is it necessary to install .NET framework on the client's computer to run my application?? Thanks and regads Harshal
don't confuse, installing Visual Studio .NET doesn't mean you actually use the .NET framework. if your program is pure MFC project, then provide the MFC71.dll, MSVCR71.dll and MSCVP71.dll libraries with your exe (or statically link your project to MFC, but that'll increase the .exe file size significantly)...
TOXCCT >>> GEII power
[VisualCalc 3.0 updated ][Flags Beginner's Guide new! ]
-
Hi all, i am doing project in MFC. up to this moment i used visual studio 6.0 IDE for my developement purpose. but because of some reasons i shifted Visual studio 2003 Version 7.1.3088. i migrated all my project to this version and now when i create a final release. and run it on other machine that does not have .NET or .NET framework installed on it gives an error by saying mfc71.dll not found. so is it necessary to install .NET framework on the client's computer to run my application?? Thanks and regads Harshal
Ship all required dll's on client m/c. No need to install .net framework. Use depends.exe for detecting dependencies.(It will show files mentioned by you).
Prasad Notifier using ATL | Operator new[],delete[][^]
-
don't confuse, installing Visual Studio .NET doesn't mean you actually use the .NET framework. if your program is pure MFC project, then provide the MFC71.dll, MSVCR71.dll and MSCVP71.dll libraries with your exe (or statically link your project to MFC, but that'll increase the .exe file size significantly)...
TOXCCT >>> GEII power
[VisualCalc 3.0 updated ][Flags Beginner's Guide new! ]
Thanks for replying. as you said i think it does not use the framework it's running in pure MFC. so by putting these dll's on client's machine will be suffice.. Thanks Harshal
-
brahmma wrote:
harsha_1234 wrote: so is it necessary to install .NET framework on the client's computer to run my application?? Yes!
NO !!!! he's programming MFC ! so only the MFC71.dll, MSVCR71.dll and MSCVP71.dll may be necessary :zzz:
TOXCCT >>> GEII power
[VisualCalc 3.0 updated ][Flags Beginner's Guide new! ]
toxcct wrote:
he's programming MFC
Sorry, I missed that. Sincerely.
Nobody can give you wiser advice than yourself. - Cicero
-
Hi all, i am doing project in MFC. up to this moment i used visual studio 6.0 IDE for my developement purpose. but because of some reasons i shifted Visual studio 2003 Version 7.1.3088. i migrated all my project to this version and now when i create a final release. and run it on other machine that does not have .NET or .NET framework installed on it gives an error by saying mfc71.dll not found. so is it necessary to install .NET framework on the client's computer to run my application?? Thanks and regads Harshal
-
don't confuse, installing Visual Studio .NET doesn't mean you actually use the .NET framework. if your program is pure MFC project, then provide the MFC71.dll, MSVCR71.dll and MSCVP71.dll libraries with your exe (or statically link your project to MFC, but that'll increase the .exe file size significantly)...
TOXCCT >>> GEII power
[VisualCalc 3.0 updated ][Flags Beginner's Guide new! ]
complete answer:)
WhiteSky