几何尺寸与公差论坛------致力于产品几何量公差标准GD&T (GDT:ASME)|New GPS(ISO)研究/CAD设计/CAM加工/CMM测量  


返回   几何尺寸与公差论坛------致力于产品几何量公差标准GD&T (GDT:ASME)|New GPS(ISO)研究/CAD设计/CAM加工/CMM测量 » 仿射空间:CAX软件开发(三)二次开发与程序设计 » CAD二次开发 » SolidWorks二次开发
用户名
密码
注册 帮助 会员 日历 银行 搜索 今日新帖 标记论坛为已读


 
 
主题工具 搜索本主题 显示模式
旧 2009-04-13, 02:40 PM   #1
yang686526
高级会员
 
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
yang686526 向着好的方向发展
默认 【转帖】strange insertpart2

strange "insertpart2"
dear all,
i got a strange problem when developing an add-in for solidworks 2008. the add-in process is:
1. create empty part document
2. insert a part using "insertpart2" api function (c# - vs2005)
we want to insert a large part into the document. our problem is that "insertpart2" returns null when we run the add-in for the first time (and the part is not inserted) while it returns the handle of the inserted part (and the part is inserted) when we run the add-in again. we tested the add-in by using a small part. "insertpart2" can insert the small part for the first time. does anyone have any idea about this?
many thanks
newform
sounds like a timing problem. your code is continuing on before swx has responded w/ the handle given the size of the part and the time it's taking to process.
my code in c# is as follows:
swfeat = swpart.insertpart2(path, (int)swinsertpartoptions_e.swinsertpartimportsolids);
where swfeat is a "feature" object, swpart is "partdoc" object, and path is string containing the full path of the file.
how can i know when swx responses? i can only check the returned value - "swfeat" and see if it is null. does anyone have any solution for it? thanks
newform
the following is my test code in c# (vs2005). it works fine for file (with size of severall k) but get error message "obtained feature is null" if the file is large, say 18m.
-----------------------
bool test(isldworks iswapp)
{
string strfun = "test";
/// check input argument
if (iswapp == null)
{
messagebox.show("application is null", strfun, messageboxbuttons.ok, messageboxicon.information);
return false;
}
/// create a new document
string parttemplate = iswapp.getuserpreferencestringvalue((int)swuserpreferencestringvalue_e.swdefaulttemplatepart);
modeldoc2 swmod = (modeldoc2)iswapp.newdocument(parttemplate, (int)swdwgpapersizes_e.swdwgpapera2size, 0.0, 0.0);
if (swmod == null)
{
messagebox.show("solidworks application cannot create a new document.", strfun, messageboxbuttons.ok, messageboxicon.error);
return false;
}
partdoc swpart = null;
/// get part handle
if (swmod is partdoc)
{
swpart = swmod as partdoc;
}
else
{
messagebox.show("solidworks application cannot create the partdoc handle.", strfun, messageboxbuttons.ok, messageboxicon.error);
return false;
}
/// insert moulds
string path = @"c:\documents and settings\fguan\desktop\t3\old.sldprt";
feature swfeat = swpart.insertpart2(path, (int)swinsertpartoptions_e.swinsertpartimportsolids);
if (swfeat == null)
{
messagebox.show("obtained feature is null.", strfun, messageboxbuttons.ok, messageboxicon.error);
return false;
}
return true;
}
hi,
we just found out what the problem is. if the file has certain kinds of references, such as circular reference, "insertpart2" doesn't allow opening the file.
quick
yang686526离线中   回复时引用此帖
GDT自动化论坛(仅游客可见)
 


主题工具 搜索本主题
搜索本主题:

高级搜索
显示模式

发帖规则
不可以发表新主题
不可以回复主题
不可以上传附件
不可以编辑您的帖子

vB 代码开启
[IMG]代码开启
HTML代码关闭



所有的时间均为北京时间。 现在的时间是 02:49 AM.


于2004年创办,几何尺寸与公差论坛"致力于产品几何量公差标准GD&T | GPS研究/CAD设计/CAM加工/CMM测量"。免责声明:论坛严禁发布色情反动言论及有关违反国家法律法规内容!情节严重者提供其IP,并配合相关部门进行严厉查处,若內容有涉及侵权,请立即联系我们QQ:44671734。注:此论坛须管理员验证方可发帖。
沪ICP备06057009号-2
更多