查看单个帖子
旧 2009-04-12, 09:54 PM   #1
yang686526
高级会员
 
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
yang686526 向着好的方向发展
默认 【转帖】newbee question on adding components w sw api

newbee question on adding components w/ sw api
hello - i am new to developing in sw api but have worked w/ acad and others. i am trying to provide a dialog via an sw add-in w/ a listing of sw components that the user can pick to insert into the assembly. i can do the insert using the very rough code below, but end up w/ the component at a fixed location that i set in addcomponet4 - ideally i would want my dialog to hide or disappear after the user selects the component and then show sw w/ the component anchored to the mouse, allowing the user to select the location. is there a way to do this? i have tried selecting the component after it has been inserted, and that is not working. any help would be great - thanks in advance! scott
m_objiswapp.documentvisible(false, intdoctype);
m_objiswapp.opendocsilent(strfilepath, intdoctype, ref intwarnings);
m_objiswapp.activatedoc2("assem1",true, ref interrors);
sldworks.iassemblydoc objassemblydoc;
objassemblydoc = (sldworks.iassemblydoc)m_objiswapp.activedoc;
m_objiswapp.documentvisible(true, intdoctype);
sldworks.component2 swcomponent;
swcomponent = objassemblydoc.addcomponent4(strfilepath, "", -1, -1, -1);
quick
yang686526离线中   回复时引用此帖
GDT自动化论坛(仅游客可见)