c++ - Cannot open type library file: 'msxml4.dll': No such file or directory -


i trying import dll in code:

#import <msxml4.dll>  

but @ every place have import, getting error:

error   1415    fatal error c1083: cannot open type library file: 'msxml4.dll': no such file or directory... 

what causes of .dll missing. code use work fine before untill in resintalled windows , trying build again.

  1. search msxml4.dll present in code base or c:

    dir /s /b msxml4.dll

  2. is find paths in step 1,add path additional library directories of project.

    2.1 right click on project > configuration properties > linker > general > additional library directories 2.2 add path additional library directories


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -