ArcMap运行时出现Runtime Error错误的解决方案

运行ArcMap时弹出错误提示:“Microsoft Visual C++ Runtime Library. Runtime

1、开始-》运行-》regsvr32 "C:\Program Files\Common Files\Microsoft Shared\DAO\dao360.dll"

2、如果问题仍没有解决,将下面代码复制到文本编辑器中,并保存为RegisterArcgis.bat,双击运行

@echo Registering files...

@for %%f in (*.dll) do start /wait regsvr32 /s "%%f"

@for %%f in (*.olb) do start /wait regsvr32 /s "%%f"

@for %%f in (*.ocx) do start /wait regsvr32 /s "%%f"

@echo Registering Help files...

cd ..\help

@for %%f in (*.olb) do start /wait regsvr32 /s "%%f"

3、删除C:\Documents and Settings\kchyang\Application Data\ESRI\ArcMap文件夹

4、重新启动ArcMap

你可能感兴趣的:(Runtime)