win8(32位和64位)下打开stc-isp问题

32位 win8系统:
把STC ISP 目录下的
mscomm32.ocx
mscomctl.ocx
msstdfmt.dll
comdlg32.ocx

这四个文件复制到 C:\Windows\System32  这个文件夹里面,然后,把以下代码复制到记事本,另存为 install.bat,接着右击刚刚保存好的 install.bat 文件,选择 以管理员身份运行
  1. regsvr32 mscomctl.ocx
  2. regsvr32 msstdfmt.dll
  3. regsvr32 mscomm32.ocx
  4. regsvr32 comdlg32.ocx  

64位 win8系统:

把STC ISP 目录下的

mscomm32.ocx
mscomctl.ocx
msstdfmt.dll
comdlg32.ocx

这四个文件分别复制到 C:\Windows\SysWOW64  (64位才有这个文件夹,32位的不清楚)和  C:\Windows\System32 这两个文件夹里面,然后,把以下代码复制到记事本,另存为 install.bat,接着右击刚刚保存好的 install.bat 文件,选择以管理员身份运行

regsvr32 %systemroot%\syswow64\mscomctl.ocx
regsvr32 %systemroot%\syswow64\mscomctl.ocx
regsvr32 %systemroot%\syswow64\mscomm32.ocx
regsvr32 %systemroot%\syswow64\comdlg32.ocx
regsvr32 mscomctl.ocx
regsvr32 msstdfmt.dll
regsvr32 mscomm32.ocx
regsvr32 comdlg32.ocx

你可能感兴趣的:(stc-isp)