解决Visual C++ 6 绿色版 Gallery 目录为空的问题

解决Visual C++ 6 绿色版 Gallery 目录为空的问题 
 
 
1)Visual C++ 6 Components 目录包含了系统中注册的Visual C++ 组件(.DLL files)的快捷方式。Registered ActiveX Controls 目录包含的是所有在系统中注册的ActiveX控件(包括.OCX或者.DLL)的link。
 
 
 
2)Visual C++ 6 Componets and controls的时候gallery文件夹为空的解决方案
 
 
 
VC安装目录下的Common\MSDev98\Bin 
以及Common\MSDev98\Bin\IDE 
目录下的DLL都注册一遍。
 
重新注册VC组件和ActiveX...
 
for %%1 in ("%cd%\Common\MSDev98\Bin\IDE\*.dll") do regsvr32.exe /s "%%1"
 
 for %%1 in ("%cd%\Common\MSDev98\Bin\*.dll") do regsvr32.exe /s "%%1"
原文地址:https://www.cnblogs.com/kakafra/p/2606509.html