如果您的任何例程在Autocad内打开特定数据库,如CIV3D Aecxuiland,您将需要2015年的新版本号
- (if ((lambda (vrsn)
- (cond
- ((vl-string-search "R17.2" vrsn) (setq appstr "6.0")) ;09
- ((vl-string-search "R18.0" vrsn) (setq appstr "7.0")) ;10
- ((vl-string-search "R18.1" vrsn) (setq appstr "8.0")) ;11
- ((vl-string-search "R18.2" vrsn) (setq appstr "9.0")) ;12 ?
- ((vl-string-search "R19.0" vrsn) (setq appstr "10.0")) ;13
- ((vl-string-search "R19.1" vrsn)(setq appstr "11.0"));;2014
- ((vl-string-search "R20.0" vrsn)(setq appstr "12.0"));;2015
- ((alert "This version of C3D not supported!"))
- )
- )
- (vlax-product-key)
- )
- (strcat "AeccXUiLand.AeccApplication." appstr)
|