RE: [GD-General] Missing DLL: MSVCP70.DLL
Brought to you by:
vexxed72
From: Stefan B. <ste...@te...> - 2003-06-22 16:19:53
|
> Is there any way within MSVC++ .NET to change settings so that > the dependency on 7.0 generation DLLs is eliminated? Yes. Use the /ML and /MLd, or /MT and /MTd code generation options = (for release and debug builds, respectively). You can change this in the IDE = by using the Project Properties (right-click on the solution explorer) -> = C/C++ -> Code Generation -> Runtime Library option. If you use the statically linked runtime, your app will only depend = on standard system DLL's. Alternatively, just ship your app with the runtime DLL's in the same folder as the exe. They are redistributable so there's no need to point users to some MS download location. Cheers, Stef! :) -- Stefan Boberg, R&D Manager - Team17 Software Ltd. bo...@te... |