明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1927|回复: 2

打开文件

[复制链接]
发表于 2005-3-9 09:11:00 | 显示全部楼层 |阅读模式
如何在ARX中不通过文件对话框打开DWG文件并置为当前文档
发表于 2005-3-9 10:21:00 | 显示全部楼层
static char pData[] = "C:\\test.dwg";

void openSyncDoc()
{
AcApDocument* pDoc = acDocManager->curDocument();
if (pDoc)
{
acutPrintf("\nCurrently in Document context : %s, Switching to App.\n",pDoc->fileName());
acDocManager->executeInApplicationContext(openSyncDocHelper, (void *)pData);
}
acDocManager->activateDocument(pDoc);
acDocManager->closeDocument(pDoc);
}

void openSyncDocHelper( void *pData)
{
AcApDocument* pDoc = acDocManager->curDocument();
if (acDocManager->isApplicationContext())
{
acutPrintf("\nSucessfully Switched to App. Context\n");
acDocManager->appContextOpenDocument((const char *)pData);
acutPrintf("\nOpened a document synchronously:%s.\n", (const char *)pData);
}
else
acutPrintf("\nERROR: in Document context : %s\n",pDoc->fileName());
}

发表于 2005-3-10 10:48:00 | 显示全部楼层
acDocManager->appContextOpenDocument("你要打开的文件名和路径");只要打开后就置为当前了。我觉得这样做很简单,你可以试试
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-26 07:45 , Processed in 0.159543 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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