|
本人以前用solidworks,是在操作系统的资源管理器里手工管理零件模型装配体工程图这些资源。办法很土,文件名字以“零件代号#零件名称”的方式命名。所以写了个vba宏,自动从文件名拆出来零件代号和零件名称,填入零件的属性中。 9 B/ U3 F9 S% r% S- x9 e; d # P" O5 i3 V; o* p, `7 n$ `/ |& ` w最近学习inventor 2017,想用ilogic也做类似的事。发现ilogic的“标准字符串函数参考”文档里,竟然没有 instr 函数。' e0 T9 N& J4 T6 V& E 6 {' d1 c! Y- Z) a$ }/ @' x+ l 正发愁呢,无意中往代码区写了 instr,发现文字颜色变了!一试,能正确运行!2 J2 \+ j, u) Z2 e& |2 o+ j3 V, c / i* e8 Z, T1 c3 q & ]+ S! d1 `5 w! `3 a
- modelFullFileName = ThisDoc.ModelDocument.FullFileName
+ p4 W. h; r' p# v G! H0 S
- modelDirectoryName = IO.Path.GetDirectoryName(modelFullFileName)
& F, j; K( L! Y+ ^% Z7 U2 N
- modelFileName = IO.Path.GetFileName(modelFullFileName)
- A4 v4 [4 G3 {. p) W- I3 h6 h& S
- modelFileNamewithoutextentionsion = IO.Path.GetFileNameWithoutExtension(modelFullFileName)
; a0 S9 @) Q- y- Q9 t" H
- 'MsgBox( modelFullFileName )* j. t9 U( h: L/ L! p7 W
- 'MsgBox( modelDirectoryName )
7 W, p! H/ c- Z, b/ D9 }2 W
- 'MsgBox( modelFileName )
' ]% I4 |- n5 I" J3 A
- MsgBox( modelFileNamewithoutextentionsion )
: L8 f2 H3 i3 o$ i9 ]
- position=InStr(modelFileNamewithoutextentionsion,"#")
6 R0 X7 U' }5 E$ c( F+ }0 X# P
- MsgBox(position)
复制代码
' d$ c# C, l i; q4 z估计ilogic里还隐藏了不少这种vba的标准函数吧。文档里不写,实际却能调用。. {# e' _" n3 n% h7 R3 O
3 E$ d1 ?) n7 Z$ D$ t0 H) {* s : v# ~6 A) l& E& [6 [ ) `: W7 j% k3 \# E! d! A: i昨晚看《Inventor-iLogic程序设计解析与实战》,第124页,作者也遇到了这个功能需求,只能辗转遍历字符串逐一对比,相当于自己写了一个类似instr简单函数。当时是inventor 2013,不知道是否也有这个隐藏的函数。 * b: r5 L- L$ O6 m; v 6 L' e/ r1 g0 ? ; N/ K# g' I. m7 w% X# n |
|