What MFC dlls to distribute?
-
I was wondering what MFC dlls need to be included in a program that I use. It only uses CButton, CEdit, and CListCtrl controls. I know that the user will need to have ie4 or greater for the list control, but I'm unsure of what else might be needed. I would like to distribute the app for NT4, 95, and 98. Could someone help me out?
-
I was wondering what MFC dlls need to be included in a program that I use. It only uses CButton, CEdit, and CListCtrl controls. I know that the user will need to have ie4 or greater for the list control, but I'm unsure of what else might be needed. I would like to distribute the app for NT4, 95, and 98. Could someone help me out?
If you want to distribute the program then it means you need only files MSVCRT.DLL MFC42.DLL other mfc*.dll files are only for Debug version Hope it helped, Honza
-
I was wondering what MFC dlls need to be included in a program that I use. It only uses CButton, CEdit, and CListCtrl controls. I know that the user will need to have ie4 or greater for the list control, but I'm unsure of what else might be needed. I would like to distribute the app for NT4, 95, and 98. Could someone help me out?
-
I was wondering what MFC dlls need to be included in a program that I use. It only uses CButton, CEdit, and CListCtrl controls. I know that the user will need to have ie4 or greater for the list control, but I'm unsure of what else might be needed. I would like to distribute the app for NT4, 95, and 98. Could someone help me out?
Look on your VC++ CD for the DEVSTUDIO\Vc\Redist folder. This folder contains all the files you will need to redistribute any VC++ applications on various Windows platforms. The file REDISTRB.WRI tells you which files you will need under which circumstances for a given platform. For many applications you *will* a need different set of DLLs for WinNT and Win95, e.g. atl.dll. Don't just copy some likely looking DLLs and hope it will be OK - I tried that once and got burnt ;-) Dave