惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Attack and Defense Labs
Attack and Defense Labs
The GitHub Blog
The GitHub Blog
C
Check Point Blog
博客园_首页
MongoDB | Blog
MongoDB | Blog
N
Netflix TechBlog - Medium
F
Full Disclosure
Microsoft Security Blog
Microsoft Security Blog
爱范儿
爱范儿
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
G
GRAHAM CLULEY
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
Threat Research - Cisco Blogs
C
Cybersecurity and Infrastructure Security Agency CISA
V
Vulnerabilities – Threatpost
K
Kaspersky official blog
博客园 - 司徒正美
S
Schneier on Security
T
The Exploit Database - CXSecurity.com
Project Zero
Project Zero
云风的 BLOG
云风的 BLOG
Cisco Talos Blog
Cisco Talos Blog
Know Your Adversary
Know Your Adversary
雷峰网
雷峰网
V
V2EX - 技术
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Spread Privacy
Spread Privacy
罗磊的独立博客
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
S
Security Affairs
SecWiki News
SecWiki News
Schneier on Security
Schneier on Security
O
OpenAI News
Jina AI
Jina AI
PCI Perspectives
PCI Perspectives
Cyberwarzone
Cyberwarzone
Y
Y Combinator Blog
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog RSS Feed
I
InfoQ
D
Docker
P
Palo Alto Networks Blog
Recorded Future
Recorded Future
M
MIT News - Artificial intelligence
博客园 - Franky
B
Blog
Scott Helme
Scott Helme
博客园 - 叶小钗
D
DataBreaches.Net

博客园 - SmartSoft 技术管理系统

DevExpress DXperience Universal 12.1.X注册插件(By Danny_Su) DXperience & XAF 8.3.x setup + source+pre-built dlls installer+注册机 DXperience 8.2.6注册方法(无需重新编译)、DXperience 8.2.6源码及官方下载 资源收藏__来自网络 SmartSoft技术管理系统实现之:用C#.Net实现AutoCAD块属性提取 ACAD启动时提示“XXX”未知命令, AutoCAD 绘图自动图层切换工具 启动AutoCAD 200X时文件加载的顺序 明细表-序号 同步修改工具 VLISP+DCL 国标连接件及相关 集成辅助绘图工具 VLISP+DCL SmartSoft特色功能之____窗体设计器(Form Designer) SmartSoft特色功能之____Smart Box(消息管理器) SmartSoft技术管理系统论坛之最新更新,详细内容请登录论坛 SmartSoft特色功能之____Smart Explorer(Smart 资源管理器) SmartSoft特色功能之三____生命周期管理 - SmartSoft 技术管理系统 SmartSoft技术管理系统实现之:数据表ID实现 SmartSoft特色功能之二__安全、灵活、易于扩展的文档管理功能 SmartSoft特色功能之一__方便、灵活、强大的数据查询功能 SmartSoft授权许可证的安装及查看 - SmartSoft 技术管理系统
如何使Object Arx.Net 程序随ACAD系统启动加载?
SmartSoft 技术管理系统 · 2007-12-08 · via 博客园 - SmartSoft 技术管理系统
   在用VS2008开发AutoCAD2008 的过程中,程序写好了但加载太麻烦,经过研究给出以下两个方案:
   1、修改ACAD2008.LSP文件,加入以下内容:
    (setvar "filedia" 0)
    (command "netload" "SmartSoft.ACADTools.dll")
    (setvar "filedia" 1)
   实现ACAD启动时自动加载,但必须设置加载程序的搜索路径,以使ACAD在启动时能找到并加载。
   2、通过修改注册表加载:建立以下键值  [HKEY_LOCAL_MACHINE\SOFTWARE\Autodesk\AutoCAD\R17.1\ACAD-6001:804\Applications\SmartSoft],“SmartSoft”是你自己的键值,在此键值下建立你自己的项:
   "DESCRIPTION"="SmartSoft ACADTools"--程序描述
   "LOADER"="E:\\SmartSoft\\SmartSoft.Application\\Release\\bin\\SmartSoft.ACADTools.dll"--要加载的DLL程序
   "LOADCTRLS"=dword:00000002
   "MANAGED"=dword:00000001
   在你刚才建立的键下建立一个新的键:Commands,在此键下建立你的命令项:命令名=命名空间.类.方法,如("SmExplorer"="SmartSoft.ACADTools.Workbench.SmExplorer"
   下面给出一个完整的注册表导出内容:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Autodesk\AutoCAD\R17.1\ACAD-6001:804\Applications\SmartSoft]
"DESCRIPTION"="SmartSoft ACADTools"
"LOADER"="E:\\SmartSoft\\SmartSoft.Application\\Release\\bin\\SmartSoft.ACADTools.dll"
"LOADCTRLS"=dword:00000002
"MANAGED"=dword:00000001

[HKEY_LOCAL_MACHINE\SOFTWARE\Autodesk\AutoCAD\R17.1\ACAD-6001:804\Applications\SmartSoft\commands]
"SmExplorer"="SmartSoft.ACADTools.Workbench.SmExplorer"

源文: http://discussion.autodesk.com/thread.jspa?messageID=4531456