I have been working in a MFC project and i have seen that Ctrl + A
does not work for any of the CEdit used in this project.
But if i add the following lines in the StdAfx.h file of my project, suddenly it starts working.
#pragma comment(linker,"\"/manifestdependency:type='win32' \
name='Microsoft.Windows.Common-Controls' version='6.0.0.0' \
processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
Now what i understand from this code snippet is that we are telling the linker explicitly that we want to use ComCtl32.dll version 6.0.
Does that mean, without this line my project uses earlier version of ComCtl32.dll which does not have the Ctrl + A
support?