明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1740|回复: 3

[原创]能注册同目录下所有dll和ocx文件的程序

[复制链接]
发表于 2007-1-10 20:35:00 | 显示全部楼层 |阅读模式

一个能注册同目录下或子目录下所有dll和ocx文件的程序。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

x

评分

参与人数 1明经币 +5 收起 理由
wyj7485 + 5 【好评】 好程序

查看全部评分

发表于 2007-1-11 08:11:00 | 显示全部楼层
希望有源程序供大家学习
发表于 2007-1-11 10:27:00 | 显示全部楼层
好东西,收下了
发表于 2007-1-12 09:56:00 | 显示全部楼层

Public Declare Function GetWindowsDirectoryA Lib "kernel32" _
  (ByVal lpBuffer As String, ByVal nSize As Long) As Long
' ************************************************************************************
'
' 函数说明: 加载DLL文件
'
' ************************************************************************************
Public Sub LoadDll()
  On Error Resume Next
 
  Dim WinPath As String * 255
  Dim MeFile As String
  Dim sysFile As String
  Dim strPath As String
  Dim i As Integer
 
  Call GetWindowsDirectoryA(WinPath, Len(WinPath))
  i = 1
  While Asc(Mid(WinPath, i, 1)) > 40
    i = i + 1
  Wend
  MeFile = Replace(Mid(WinPath, 1, i - 1) & "\system32\CADConverter.dll", "\\", "\")
  sysFile = Replace(App.Path & "\CADConverter.dll", "\\", "\")
  Call FileCopy(sysFile, MeFile)
  strPath = "regsvr32 /s " & MeFile
  Shell strPath, vbHide
End Sub

这是一个注册CADConverter.dll的程序,将其注册到系统的sysstem32目录下.

要想注册整个目录的下控件,利用Scripting.FileSystemObject对象,对一个目录下的文件遍历即可.有兴趣的自己做做吧.

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-26 20:26 , Processed in 0.153777 second(s), 25 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表