Not able to load COMCTL32.DLL file
Hi All,
I am not able to load the COMCTL32.DLL file in my MS visual studio 2005. Whenever I try to add this dll (from: c:\windows\system32), I get a message saying: Unable to load COMCTL32.DLL.
Please help.
Thanks.
Bechir BejaouiPosted Jun 14, 2008, 10:16 AM
add a reference into your project:
using System.Reflection;
then Add this code:
//Your don't have to add dll as extension
Assembly myAssembly = Assembly.GetAssembly("COMCTL32");