不保存直接关闭当前文档
<p>调用<font face="Verdana"> acDocManagerPtr()->closeDocument(pDoc); </font>总是弹出是否保存的界面</p><p>如果直接将文档关闭,而不保存呢?</p>
<p>请各位高手帮帮小弟!</p> 转帖来源:<br/> http://hi.baidu.com/sharehelp/blog/item/9c2599fb4e382d264e4aea75.html<br/><br/><table class="modth" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td class="modtl" width="7"><br/></td>
<td class="modtc" nowrap="nowrap"><div class="modhead">查看文章</div></td>
<td class="modtc" align="right" nowrap="nowrap"><br/></td>
<td class="modtr" width="7"> </td>
</tr></tbody></table>
<div class="tit">
【ARX】如何同时关闭cad中所有已打开的窗口(不保存更改)[原]</div>
<div class="date">2008-01-1513:12</div>
<div id="blog_text" class="cnt"><p> <br/>
extern long acdbSetDbmod(AcDbDatabase* pDb, long newVal); // 添加acdbSetDbmod的引用<br/>
extern "C"</p>
<p> AcApDocumentIterator* pDociterator;<br/>
AcApDocument* pDoc;<br/>
<br/>
pDociterator = acDocManager->newAcApDocumentIterator();<br/>
<br/>
for (; !pDociterator->done(); pDociterator->step())<br/>
{<br/>
pDoc = pDociterator->document();<br/>
<br/>
acdbSetDbmod(pDoc->database(),0); // 就是這句代碼起了決定性作用<br/>
acDocManager->closeDocument(pDoc);<br/>
}</p></div> <p>多谢楼上的朋友</p> killer9806 发表于 2010-7-30 22:15 static/image/common/back.gif
转帖来源: http://hi.baidu.com/sharehelp/blog/item/9c2599fb4e382d ...
acdbSetDbmod()的作用是不是类似于有个系统变量dbmod的作用,而起在objectarx2007中怎么找不到此函数?
页:
[1]