<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Please help! in ObjectARX Forum</title>
    <link>https://forums.autodesk.com/t5/objectarx-forum/please-help/m-p/2466557#M17754</link>
    <description>did you ever get a resolution to this issue AcDbDoubleClickEdit::rxInit() unresolved?</description>
    <pubDate>Tue, 09 Jun 2009 20:06:07 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2009-06-09T20:06:07Z</dc:date>
    <item>
      <title>Please help!</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/please-help/m-p/2466556#M17753</link>
      <description>I want to handle double click event for line entity in my arx application for AutoCAD 2010. Previously there was dblclick sample with ARX for AutoCAD 2007. But in AutoCAD 2010 ARX i am not able to find this sample and also help regarding AcDbDoubleClickEdit class. Can anybody help me regarding the same. It's urgent. &lt;BR /&gt;
I have already posted one thread with subject "AcDbDoubleClickEdit not working!" regarding the same, but there nobody responded.</description>
      <pubDate>Mon, 13 Apr 2009 06:38:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/please-help/m-p/2466556#M17753</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-04-13T06:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: Please help!</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/please-help/m-p/2466557#M17754</link>
      <description>did you ever get a resolution to this issue AcDbDoubleClickEdit::rxInit() unresolved?</description>
      <pubDate>Tue, 09 Jun 2009 20:06:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/please-help/m-p/2466557#M17754</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-09T20:06:07Z</dc:date>
    </item>
    <item>
      <title>Re: Please help!</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/please-help/m-p/2466558#M17755</link>
      <description>try adding this to your 'InitApplication' function:&lt;BR /&gt;
&lt;BR /&gt;
// Load the Double Click Arx Module...&lt;BR /&gt;
if(!acrxDynamicLinker-&amp;gt;loadModule(/*MSG0*/"ACDBLCLKEDITPE.ARX",Adesk::kFalse)) {&lt;BR /&gt;
AfxMessageBox("'ACDBLCLKEDITPE.ARX' Load Failed");&lt;BR /&gt;
return ;&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
That arx module has to loaded for it to work, I believe.&lt;BR /&gt;
It was part of the original sample:&lt;BR /&gt;
&lt;BR /&gt;
// Init this application. Register your&lt;BR /&gt;
// commands, reactors...&lt;BR /&gt;
void InitApplication()&lt;BR /&gt;
{&lt;BR /&gt;
// NOTE: DO NOT edit the following lines.&lt;BR /&gt;
//{{AFX_ARX_INIT&lt;BR /&gt;
//}}AFX_ARX_INIT&lt;BR /&gt;
&lt;BR /&gt;
// Load the Double Click Arx Module...&lt;BR /&gt;
if(!acrxDynamicLinker-&amp;gt;loadModule(/*MSG0*/"ACDBLCLKEDITPE.ARX",Adesk::kFalse)) {&lt;BR /&gt;
AfxMessageBox("'ACDBLCLKEDITPE.ARX' Load Failed");&lt;BR /&gt;
return ;&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
// Initialize Double Click Editing&lt;BR /&gt;
AcDbDoubleClickEdit::rxInit();&lt;BR /&gt;
&lt;BR /&gt;
// Initialize for Spline...&lt;BR /&gt;
AcDbDoubleClickEditSpline *pSplineEdit=new AcDbDoubleClickEditSpline;&lt;BR /&gt;
AcDbSpline::desc()-&amp;gt;addX(AcDbDoubleClickEdit::desc(),pSplineEdit);&lt;BR /&gt;
&lt;BR /&gt;
// Initialize for Pline...&lt;BR /&gt;
AcDbDoubleClickEditPline *pPlineEdit=new AcDbDoubleClickEditPline;&lt;BR /&gt;
AcDbPolyline::desc()-&amp;gt;addX(AcDbDoubleClickEdit::desc(),pPlineEdit);&lt;BR /&gt;
&lt;BR /&gt;
// Intialize for Circle...&lt;BR /&gt;
AcDbDoubleClickCircle *pCircleEdit=new AcDbDoubleClickCircle;&lt;BR /&gt;
AcDbCircle::desc()-&amp;gt;addX(AcDbDoubleClickEdit::desc(),pCircleEdit);&lt;BR /&gt;
&lt;BR /&gt;
// Message for Sample Usage&lt;BR /&gt;
AfxMessageBox("Double-Click Editing API Sample:\nDouble Click 'Pline' and 'Spline' Entities to Add Vertexes,\nDouble Click 'Circle' to Cycle Color.");&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
Hope it works!</description>
      <pubDate>Wed, 10 Jun 2009 11:11:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/please-help/m-p/2466558#M17755</guid>
      <dc:creator>cadMeUp</dc:creator>
      <dc:date>2009-06-10T11:11:49Z</dc:date>
    </item>
  </channel>
</rss>

