找回密码 注册 QQ登录
开思网工业级高精度在线3D打印服务

iCAx开思网

CAD/CAM/CAE/设计/模具 高清视频【积分说明】如何快速获得积分?快速3D打印 手板模型CNC加工服务在线3D打印服务,上传模型,自动报价
查看: 17591|回复: 3

[讨论] 关于ProBarewindowCreate的问题

[复制链接]
发表于 2009-7-26 15:29:08 | 显示全部楼层 |阅读模式

马上注册,结交更多同行朋友,交流,分享,学习。

您需要 登录 才可以下载或查看,没有帐号?注册

x
发现这个函数的功能很不错。想实现之,望有经验的大侠指点。
主要是这个函数的第一个参数,不解。对象名,是不是就是我们保存在硬盘上上文档名?如果是的话,要带扩展名吗?文档是不是要放在工作路径,才能找得到?
请高手指点啊。最好附个实例代码。在此谢过!
函数原型
ProBarewindowCreate(
ProName object_name
/* (In)
The name of the object to be retrieved
*/
ProType object_type
/* (In)
The type of the object (PRO_PART, PRO_ASSEMBLY, and so on)
*/
int* p_window_id
/* (Out)
The window identifier in which the object was retrieved
*/
发表于 2009-7-29 21:18:00 | 显示全部楼层
#include <ProToolkit.h>
#include <ProWindows.h>

// file_name:文件名,可加扩展名,如d:\temp\prt0001.prt
void LoadPart(char *file_name)
{
ProName object_name;
int window_id;
ProStringToWstring( object_name, file_name);
ProBarewindowCreate( object_name,PRO_PART,&window_id);
}

// 代码没有考虑安全性,没有进行错误处理
发表于 2009-8-6 21:06:46 | 显示全部楼层
用了楼上的代码。还是没打开预期中的,新的窗口显示零件(像proe打开文件时的那样,可以旋转、缩放)。代码的作用,是将当前的进程改成了file_name,而且proe界面也没有显示图像出来。更新窗口后(用ProWindowActivate函数),也没什么效果。请前辈指点。
发表于 2009-8-6 21:08:32 | 显示全部楼层
贴一段我之前编的代码吧,也没调试出来。不知是何原因。请前辈们指点。
          ProError status,err,error;
        ProName pro_Name;
        ProMdl solid_mdl;
        ProPath path;
        int new_window_id;
        CString m_Path ="D:\\&frac14;&ETH;&frac34;&szlig;&iquest;&acirc;\\&Ocirc;&ordf;&frac14;&thorn;&iquest;&acirc;\\1&raquo;ù&acute;&iexcl;&frac14;&thorn;\\Z1010.prt";
        m_Path.TrimRight();
        ProStringToWstring(path,m_Path.GetBuffer(m_Path.GetLength()));
        status = ProMdlLoad(path,PRO_MDL_UNUSED,PRO_B_FALSE,&solid_mdl);
        err = ProMdlNameGet(solid_mdl,pro_Name);
        error=ProBarewindowCreate(pro_Name,PRO_PART,&new_window_id);
        ProWindowActivate(new_window_id);
您需要登录后才可以回帖 登录 | 注册

本版积分规则

3D打印手板模型快速制作服务,在线报价下单!

QQ 咨询|手机版|联系我们|iCAx开思网  

GMT+8, 2024-12-23 19:31 , Processed in 0.022463 second(s), 11 queries , Gzip On, Redis On.

Powered by Discuz! X3.3

© 2002-2024 www.iCAx.org

快速回复 返回顶部 返回列表