几何尺寸与公差论坛------致力于产品几何量公差标准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:32 PM   #1
yang686526
高级会员
 
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
yang686526 向着好的方向发展
默认 【转帖】unable To Load Pre-defined Patter

unable to load pre-defined patterns from acad.pat file

unable to load pre-defined patterns from acad.pat file
hi all,
i'm trying to hatch entities. i've successfully hatched using solid hatch. when i tried to use predefined patterns patterns like dots, angle, etc. i failed to achieve. so anyone please help in this regard...
following is the piece of code, i tried to load patterns fron acad.pat file..
oddbhatchptr phatch;
odhatchpattern phatchpattern;
odgepoint3d point = odgepoint3d(120,120,0);
oddbdatabase *pdb = theapp.m_pdb;
oddbblocktablerecordptr pblock = pdb->getmodelspaceid().safeopenobject(oddb::kforwrite) ;
odstring sfile = theapp.findfile("c:\\acad.pat",pdb, oddbhostappservices::kpatternfile);
if(sfile.isempty() )
{
messagebox("file not found");
}
else
messagebox("file found");
odhatchpatternmanagerptr m_patternmanager = pdb->appservices()->patternmanager();
if (m_patternmanager.isnull())
messagebox("pattern manager null");
else
messagebox("pattern manager not null");
phatch = oddbhatch::createobject();
pdb->appservices()->patternmanager()->retrievepattern(oddbhatch::kpredefined,"dots", oddb::kenglish,phatchpattern);
oddbobjectid hatchid = pblock->appendoddbentity(phatch);
phatch->setassociative(true);
phatch->setcolorindex(5);
phatch->setpattern(oddbhatch::kpredefined, "dots");
phatch->setpatternscale(20);
phatch->setpatternangle(0);
phatch->sethatchstyle(oddbhatch::knormal);
oddbobjectidarray loopids;
oddbcircleptr pcircle = oddbcircle::createobject();
loopids.push_back(pblock->appendoddbentity(pcircle));
odgepoint3d centerpt(point);
centerpt.x += 100*3.0/2.0;
centerpt.y -= 100;
pcircle->setcenter(centerpt);
pcircle->setradius(100*3.0/2.0);
phatch->appendloop(oddbhatch::kdefault, loopids);
m_pdevice->invalidate();
redrawwindow();
i'm successfully getting the message boxes,
file found and pattern manager not null
this means that, from the first message box i've successfully loaded the pattern to my database and from the second, there is pattern, in my pdb database pointer.
but still i'm not getting any patterns.. its alwasy showing without hatch...
so i need help for using hatches with predefined patterns...
anyone please help...!!
thanks in advance
thanks & regards,
rajesh parameswaran

rajuinnet
# 30th august 2004, 08:52 am

softdev join date: jun 2002
location: st'petersburg, russia
posts: 522

please change the line
odstring sfile = theapp.findfile("c:\\acad.pat",pdb, oddbhostappservices::kpatternfile);
to
odstring sfile = theapp.findfile("acad.pat",pdb, oddbhostappservices::kpatternfile);
in this case will file be found?
sincerely yours,
george udov

george udov
# 30th august 2004, 10:07 pm

registered user join date: jul 2004
location: india
posts: 82


quote:
originally posted by george udov
please change the line
odstring sfile = theapp.findfile("c:\\acad.pat",pdb, oddbhostappservices::kpatternfile);
to
odstring sfile = theapp.findfile("acad.pat",pdb, oddbhostappservices::kpatternfile);
in this case will file be found?
hi george udov
thanks for u'r reply..
i'm able to load the "acad.pat" when i gave the path. but when i gave without the path (as u suggested) its not only loading the file.. i.e.
odstring sfile = theapp.findfile("acad.pat",pdb, oddbhostappservices::kpatternfile);
if(sfile.isempty() )
messagebox("file not found");
else
messagebox("file found");
i'm getting the message - file not found
my query was, even though i've loaded the acad.pat file, i'm unable to use the predefined patterns from that file...
i need help in that regard...
expecting u'r reply....
thanks in advance
-------------------------------------------------
thanks & regards,
rajesh parameswran

rajuinnet
# 31st august 2004, 02:53 am

softdev join date: jun 2002
location: st'petersburg, russia
posts: 522

the clue is function retrievepattern uses findfile("acad.pat") to search this file. it doesn't know that you mean, that it is located on drive c.
to customize the path to acad.pat/acadiso.pat, you should override/modify/write your implementation of oddbhostappservices::findfile function.
sincerely yours,
george udov

george udov
# 14th november 2004, 07:30 pm

junior member join date: dec 2003
location: beijing p. r. china.
posts: 14

and my question is the name must acad.pat
quote:
originally posted by george udov
the clue is function retrievepattern uses findfile("acad.pat") to search this file. it doesn't know that you mean, that it is located on drive c.
to customize the path to acad.pat/acadiso.pat, you should override/modify/write your implementation of oddbhostappservices::findfile function.
btw, my question is the customed function oddbhostappservices::findfile, should be return the filename is acad.pat or acadiso.pat.

cadrd
# 15th november 2004, 03:29 am

softdev join date: jun 2002
location: st'petersburg, russia
posts: 522

quote:
originally posted by cadrd
btw, my question is the customed function oddbhostappservices::findfile, should be return the filename is acad.pat or acadiso.pat.
file name is passed to oddbhostappservices::findfile as argument. this function must return "a string value that uniquely identifies this file", i. e. file name with full path.
sincerely yours,
george udov

george udov

none
? | ?
thread tools



display modes
linear mode


search this thread

rate this thread
excellent
good
average
bad
terrible

posting rules
you may post new threads
you may post replies
you may post attachments
you may edit your posts
is on
are on
code is off
html code is off
forum jump
user control panel private messages subscriptions who's online search forums forums home general topics news questions and remarks business issues industry commentary general software issues documentation issues future directions dwg libraries dwgdirect.net dwgdirect, c++ version dwgdirectx, activex version adtdirect/c3ddirect opendwg toolkit/viewkit dgn libraries dgndirect, c++ version (2.x+) dgndirect libraries (legacy 0.99xx)
all times are gmt -7. the time now is 12:42 amfff">.
- - -
copyright ?2000 - 2009, jelsoft enterprises ltd.
copyright 1998-2008 open design alliance inc.

please change the line
odstring sfile = theapp.findfile("c:\\acad.pat",pdb, oddbhostappservices::kpatternfile);
to
odstring sfile = theapp.findfile("acad.pat",pdb, oddbhostappservices::kpatternfile);
in this case will file be found?
sincerely yours,
george udov


quote:
originally posted by george udov
please change the line
odstring sfile = theapp.findfile("c:\\acad.pat",pdb, oddbhostappservices::kpatternfile);
to
odstring sfile = theapp.findfile("acad.pat",pdb, oddbhostappservices::kpatternfile);
in this case will file be found?
hi george udov
thanks for u'r reply..
i'm able to load the "acad.pat" when i gave the path. but when i gave without the path (as u suggested) its not only loading the file.. i.e.
odstring sfile = theapp.findfile("acad.pat",pdb, oddbhostappservices::kpatternfile);
if(sfile.isempty() )
messagebox("file not found");
else
messagebox("file found");
i'm getting the message - file not found
my query was, even though i've loaded the acad.pat file, i'm unable to use the predefined patterns from that file...
i need help in that regard...
expecting u'r reply....
thanks in advance
-------------------------------------------------
thanks & regards,
rajesh parameswran

the clue is function retrievepattern uses findfile("acad.pat") to search this file. it doesn't know that you mean, that it is located on drive c.
to customize the path to acad.pat/acadiso.pat, you should override/modify/write your implementation of oddbhostappservices::findfile function.
sincerely yours,
george udov

and my question is the name must acad.pat
quote:
originally posted by george udov
the clue is function retrievepattern uses findfile("acad.pat") to search this file. it doesn't know that you mean, that it is located on drive c.
to customize the path to acad.pat/acadiso.pat, you should override/modify/write your implementation of oddbhostappservices::findfile function.
btw, my question is the customed function oddbhostappservices::findfile, should be return the filename is acad.pat or acadiso.pat.

quote:
originally posted by cadrd
btw, my question is the customed function oddbhostappservices::findfile, should be return the filename is acad.pat or acadiso.pat.
file name is passed to oddbhostappservices::findfile as argument. this function must return "a string value that uniquely identifies this file", i. e. file name with full path.
sincerely yours,
george udov
yang686526离线中   回复时引用此帖
GDT自动化论坛(仅游客可见)
 


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

高级搜索
显示模式

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

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

相似的主题
主题 主题发起者 论坛 回复 最后发表
【转帖】link errors in odreadex on visual studio 2005 yang686526 DirectDWG 0 2009-05-06 05:00 PM
【转帖】hatching entities yang686526 DirectDWG 0 2009-05-05 12:01 PM
【转帖】error while linking using mfc static library vc 96.00 yang686526 DirectDWG 0 2009-05-05 09:49 AM
【转帖】error when using afx.h yang686526 DirectDWG 0 2009-05-05 09:48 AM
【转帖】2005 link error yang686526 DirectDWG 0 2009-05-04 02:57 PM


所有的时间均为北京时间。 现在的时间是 07:10 PM.


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