明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1912|回复: 1

[求助]宏的自动安装

[复制链接]
发表于 2003-6-5 13:29:00 | 显示全部楼层 |阅读模式
您好:
请教一下,我在做一个cad vba宏的自动安装程序,但需要在系统的支持搜索路径中添加C:\leo\files这个路径,不只应修改那个文件,在此文件中的哪里添加?

                                                        请多指教!!
                                                        谢谢!!
发表于 2003-6-5 14:00:00 | 显示全部楼层

在注册表中添加

注册表的路径为:HKEY_CURRENT_USER\Software\Autodesk\AutoCAD\R15.0\ACAD-1:804\Profiles\<<Unnamed Profile>>\General,那儿有一个键值是ACAD,它保存的就是搜索路径。比如:ACAD="D:\\Program Files\\ACAD2000\\support;D:\\Program Files\\ACAD2000\\fonts;D:\\Program Files\\ACAD2000\\help;D:\\Program Files\\ACAD2000\\express;"
上面要注意的R15.0这个跟版本有关系,不同版本是不一样的,而<<Unnamed Profile>>则是配置名称,也跟不同的配置有关系。
还有一种就是创建一个VB的应用程序,通过对Application对象的preferences引用,以程序的方式添加搜索路径。
后一种可能相对比较简单。
Sub Example_SupportPath()
    ' This example returns the current setting of
    ' SupportPath. It then changes the value, and finally
    ' it resets the value back to the original setting.
   
    Dim preferences As AcadPreferences
    Dim currSupportPath As String
    Dim newSupportPath As String
   
    Set preferences = ThisDrawing.Application.preferences

   
    ' Retrieve the current SupportPath value
    currSupportPath = preferences.Files.SupportPath
    MsgBox "The current value for SupportPath is " & currSupportPath, vbInformation, "SupportPath Example"
   
    ' Change the value for SupportPath
    newSupportPath = "TestSupportPath"
    preferences.Files.SupportPath = newSupportPath
    MsgBox "The new value for SupportPath is " & newSupportPath, vbInformation, "SupportPath Example"

   
    ' Reset SupportPath to its original value
    preferences.Files.SupportPath = currSupportPath
    MsgBox "The SupportPath value is reset to " & currSupportPath, vbInformation, "SupportPath Example"
End Sub
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-28 16:35 , Processed in 0.147341 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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