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


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


回复
 
主题工具 搜索本主题 显示模式
旧 2009-05-07, 05:56 PM   #1
yang686526
高级会员
 
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
yang686526 向着好的方向发展
默认 【转帖】urgent - Block Is Not Defined Error In Autocad

urgent - block is not defined error in autocad
urgent - block is not defined error in autocad
when i try to add block from one database to other empty database i got an error of undefined block error when i open it into autocad 2007.
when i audit the oddbdatabase it shows me ok.
i added herewith that block file for reference.
i added herewith code for reference.
***************************************
** add objects (drawingframe, header, tolerancetable etc.) into the main database.
@param objectname
describe name of the drawing object.
@param path
describe path of template file for the drawing object.
@param xposition
describe x position of block.
@param yposition
describe y position of block.
@param orientation
describe orientation of block.
@return void
*/
bool templategenerator::addobject(const char *objectname, const char *path,
double xposition, double yposition, double orientation)
{
if (pdatabase.isnull())
{
return false;
}
oddbdatabaseptr pobjectdatabase;
pobjectdatabase = templatehandler.readfile(path, true, false, oda
::ksharedenyno);
if (pobjectdatabase.isnull())
{
return false;
}
oddbblocktableptr pblocks = pobjectdatabase->getblocktableid().safeopenobject
(oddb::kforwrite);
oddbsymboltableiteratorptr pblkiter = pblocks->newiterator();
int count = 0;
for (pblkiter->start(); !pblkiter->done(); pblkiter->step())
{
oddbblocktablerecordptr pms = pblkiter->getrecordid().safeopenobject(oddb
::kforwrite);
oddbobjectiteratorptr pentiter = pms->newiterator();
for (pentiter->start(); !pentiter->done(); pentiter->step())
{
oddbentityptr pent = pentiter->entity(oddb::kforwrite);
oddbblockreferenceptr pref = oddbblockreference::cast(pent);
if (!pref.isnull())
{
oddbblocktablerecordptr pchildblock = pref->blocktablerecord()
.safeopenobject(oddb::kforwrite);
if (pchildblock->getname() != objectname)
{
ostringstream oss;
oss << objectname;
oss << count;
string val = oss.str();
pchildblock->setname(val.c_str());
count++;
}
}
}
}
oddbobjectid blockid = pdatabase->insert(objectname, pobjectdatabase, true);
oddbobjectid blocktableid = pdatabase->getblocktableid();
oddbsymboltableptr pblocktable = blocktableid.safeopenobject();
oddbblocktablerecordptr pmainblock = pblocktable->getat("*model_space", oddb
::kforwrite);
addinsert(pdatabase, pmainblock, blockid, xposition, yposition, orientation);
pobjectdatabase.release();
pobjectdatabase = 0;
return true;
}
**************************************************
/** internal function. insert block in database with specified position and orientation.
@param pdb
describe main database.
@param pblock
describe table of blocks.
@param blockid
describe blockid of block which needs to be added.
@param xposition
describe x position of block.
@param yposition
describe y position of block.
@param orientation
describe orientation of block.
@return void
*/
void addinsert(oddbdatabase *pdb, // owning database
oddbblocktablerecord *pblock, // block to which insert will be added
const oddbobjectid &blockid, // id of block to be inserted
double xposition, double yposition, double orientation)
{
oddbobjectid brefid;
// create the new insert entity.
oddbblockreferenceptr pblkref = oddbblockreference::createobject();
// add the entity to the parent block.
brefid = pblock->appendoddbentity(pblkref);
// set the remaining entity properties.
pblkref->setblocktablerecord(blockid);
pblkref->setscalefactors(odgescale3d(1.0, 1.0, 1.0));
pblkref->setposition(odgepoint3d(xposition, yposition, 0));
//convert orientation/rotation into radian.
pblkref->setrotation(orientation *(m_pi / 180.0));
}
************************************************** ******
earlier it was working perfectly when i used header block without attributes.
let me know what is the problem..
regards,
ravindra ghetia
attached files
more info
a0-a4_header_h1_en_new.dxf new block with attributes...
a0-a4_header_h1_en.dxf old block without attributes..
please help..
ravindra ghetia
it is not working
code is working for all other blocks which do not have attributes.
but it is not working with block which i specified here with.
i received undefined block error when i opened it into autocad.
yang686526离线中   回复时引用此帖
GDT自动化论坛(仅游客可见)
回复


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

高级搜索
显示模式

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

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

相似的主题
主题 主题发起者 论坛 回复 最后发表
【转帖】set Block Attribute Values yang686526 DirectDWG 0 2009-05-07 03:36 PM
【转帖】memory leak issue yang686526 DirectDWG 0 2009-05-06 05:37 PM
【转帖】error while linking using mfc static library vc 96.00 yang686526 DirectDWG 0 2009-05-05 09:49 AM
【转帖】a dimension error yang686526 DirectDWG 0 2009-05-04 03:05 PM
【转帖】使用.net在在文档状态栏实现文档标签控件功能 - 精华帖集合 yang686526 ObjectARX(VB.NET/C#) 0 2009-04-29 05:17 PM


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


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