还有一些新功能可能也是初始设置中的一个因素,例如需要考虑的AutoCAD安全性;更多信息请参见我签名中的链接。
除此之外,对我来说唯一明显的另一个方面可能是调用AutoCAD的产品密钥。。。这就是我用来支持遗留版本和当前版本的内容(我现在也使用2014):
http://forums.augi.com/showthread.php?149105-使用60个用户管理自动更新&p=1226657&viewfull=1#post1226657
- (vl-load-com)
- (defun c:InfoCenterOff ()
- (princ "\rINFOCENTER: ")
- (princ
- (vl-registry-write
- (strcat
- "HKEY_CURRENT_USER\"
- [color="red"](if vlax-user-product-key ; If 2013
- (vlax-user-product-key) ; Use 2013 function
- (vlax-product-key) ; Use legacy function
- )[/color]
- "\\InfoCenter"
- )
- "InfoCenterOn"
- 0
- )
- )
- (princ)
- )
干杯 |