I've been tring to figure out this problem for a while now. All of my research seems to point to some C::B setting that I do not have right, but I am not sure.
I am creating a new wxWidgets project. I select the wxWidget project wizard from the Create New Project menu. When I get to the wxWidgets Library Settings screen I am presented with several options
- Use wxWidgets DLL
- wxWidgets is built as a monolithic library
- enable unicode
If I check nothing, or if I check the monolithic library then everything compiles and runs fine
But, if I check the use wxWidgets DLL or both the DLL and the monolithic library then the project compiles and links fine but will not run.... it just tells me that it cannot find 'MSVCP80.dll'
The DLL is present in my VC directory, and I have tried to uninstall/ reinstall and repair my copy of VC toolkit 2008 and that seems to have no effect. I have found some information about manifest files not being created but I do see a manifest file in the /bin directory of my project alongside the .exe
I need to be able to create a project that uses wxWidgets as DLL's, but nothing I have tried seems to work....
Anyone have any ideas as to what I am doing wrong?