<?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: Delphi Application and AutoCAD 2002 in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959640#M56655</link>
    <description>I'm quite sure, looking your experience on this field, that you are right.
The problem is that I've tried on five PC, three works two doesn't work. The
two where I have the problem belongs to one of my customers and they have a
lot of application that runs on them.

You know that with the new policy by Autodesk install AutoCAD means that you
have to ask the installation code and all this request are recorded.

Is there a way to repeat the ole registration without install autocad from
the beginning ?

Thank you for your help

Keven Corazza
SierraSoft</description>
    <pubDate>Thu, 26 Feb 2004 06:52:31 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2004-02-26T06:52:31Z</dc:date>
    <item>
      <title>Delphi Application and AutoCAD 2002</title>
      <link>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959628#M56643</link>
      <description>Hi, I've develope a little Delphi Application that open AutoCAD 2002 and
insert two lines. In my PC all works fine. In another PC where AutoCAD 2002
is installed the application is able to open AutoCAD but, when I try to
insert the line I get the following error:

Class not registered.

Any ideas?

Thank you in advance.

Regards.

Keven Corazza
SierraSoft</description>
      <pubDate>Fri, 20 Feb 2004 17:51:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959628#M56643</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-02-20T17:51:38Z</dc:date>
    </item>
    <item>
      <title>Re: Delphi Application and AutoCAD 2002</title>
      <link>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959629#M56644</link>
      <description>Can't tell you much without seeing the code.

If you can't find the error, post the lines of
code where it occurs.

-- 
AcadXTabs: MDI Document Tabs for AutoCAD
http://www.acadxtabs.com

AcadX for AutoCAD 2004 Beta 1
http://mysite.verizon.net/~vze2vjds/acadx/AcadX16.zip


"Keven Corazza" &lt;KEVEN.CORAZZA&gt; wrote in message news:40364a1e$1_3@newsprd01...
&amp;gt; Hi, I've develope a little Delphi Application that open AutoCAD 2002 and
&amp;gt; insert two lines. In my PC all works fine. In another PC where AutoCAD 2002
&amp;gt; is installed the application is able to open AutoCAD but, when I try to
&amp;gt; insert the line I get the following error:
&amp;gt;
&amp;gt; Class not registered.
&amp;gt;
&amp;gt; Any ideas?
&amp;gt;
&amp;gt; Thank you in advance.
&amp;gt;
&amp;gt; Regards.
&amp;gt;
&amp;gt; Keven Corazza
&amp;gt; SierraSoft
&amp;gt;
&amp;gt;&lt;/KEVEN.CORAZZA&gt;</description>
      <pubDate>Fri, 20 Feb 2004 20:40:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959629#M56644</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-02-20T20:40:37Z</dc:date>
    </item>
    <item>
      <title>Re: Delphi Application and AutoCAD 2002</title>
      <link>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959630#M56645</link>
      <description>This is my code:

type
  TForm1 = class(TForm)
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    AcadApp: IAcadApplication;

    function  TestAcadAvailable: Boolean;
    function  RunAutoCad: Boolean;
    procedure AddLines;
  end;

...

procedure TForm1.Button1Click(Sender: TObject);
begin
  if RunAutoCad(False) then
    AddLines;
end;

function TForm1.TestAcadAvailable: Boolean;
begin
  Result:=True;
  try
    AcadApp:=GetActiveOleObject('AutoCAD.Application.15') as
IAcadApplication;
    //  is 'AutoCAD.Application.15' correct ?
  except
    AcadApp:=nil;
    Result:=False;
  end;
end;

function TForm1.RunAutoCad: Boolean;
begin
  AcadApp:=nil;

  Screen.Cursor:=crHourGlass;
  if not(TestAcadAvailable) then
    begin
       AcadApp:=CreateOleObject('AutoCAD.Application.15') as
IAcadApplication;
//      AcadApp:=CoAcadApplication.Create;
      AcadApp.Visible:=True;
      Application.BringToFront;
    end;
  Screen.Cursor:=crDefault;

  if AcadApp&amp;lt;&amp;gt;nil then
    begin
      if AcadApp.Documents.Count=0 then
        AcadApp.Documents.Add('');
      Result:=True;
    end
  else
    Result:=False;
end;

procedure TForm1.AddLines;
var
  p1,p2,p3,p4: OleVariant;
begin
  p1:=VarArrayCreate( [0, 2], varDouble );
  p1[0]:=0;
  p1[1]:=0;
  p1[2]:=0;
  p2:=VarArrayCreate( [0, 2], varDouble );
  p2[0]:=50;
  p2[1]:=50;
  p2[2]:=50;
  p3:=VarArrayCreate( [0, 2], varDouble );
  p3[0]:=0;
  p3[1]:=50;
  p3[2]:=0;
  p4:=VarArrayCreate( [0, 2], varDouble );
  p4[0]:=50;
  p4[1]:=0;
  p4[2]:=0;

  AcadApp.ActiveDocument.Database.ModelSpace.AddLine(p1,p2);
  AcadApp.ActiveDocument.Database.ModelSpace.AddLine(p3,p4);
  AcadApp.ZoomExtents;
end;

Thank you in advance.

Regards.

Keven Corazza
SierraSoft</description>
      <pubDate>Sat, 21 Feb 2004 06:41:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959630#M56645</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-02-21T06:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: Delphi Application and AutoCAD 2002</title>
      <link>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959631#M56646</link>
      <description>Does the problem occur when AutoCAD is already running,
or when it is not running and is started, or both? And,
exactly what line of code does the exception occur on?

-- 
AcadXTabs: MDI Document Tabs for AutoCAD
http://www.acadxtabs.com

AcadX for AutoCAD 2004 Beta 1
http://mysite.verizon.net/~vze2vjds/acadx/AcadX16.zip


"Keven Corazza" &lt;KEVEN.CORAZZA&gt; wrote in message news:4036fe80$1_3@newsprd01...
&amp;gt; This is my code:
&amp;gt;&lt;/KEVEN.CORAZZA&gt;</description>
      <pubDate>Sat, 21 Feb 2004 20:05:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959631#M56646</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-02-21T20:05:00Z</dc:date>
    </item>
    <item>
      <title>Re: Delphi Application and AutoCAD 2002</title>
      <link>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959632#M56647</link>
      <description>I get the error when the software execute the AddLine method.

Thank you in advance.

Keven Corazza
SierraSoft


"Tony Tanzillo" &lt;TONY.TANZILLO at="" caddzone="" dot="" com=""&gt; ha scritto nel messaggio
news:4037b92b$1_1@newsprd01...
&amp;gt; Does the problem occur when AutoCAD is already running,
&amp;gt; or when it is not running and is started, or both? And,
&amp;gt; exactly what line of code does the exception occur on?
&amp;gt;
&amp;gt; --
&amp;gt; AcadXTabs: MDI Document Tabs for AutoCAD
&amp;gt; http://www.acadxtabs.com
&amp;gt;
&amp;gt; AcadX for AutoCAD 2004 Beta 1
&amp;gt; http://mysite.verizon.net/~vze2vjds/acadx/AcadX16.zip
&amp;gt;
&amp;gt;
&amp;gt; "Keven Corazza" &lt;KEVEN.CORAZZA&gt; wrote in message
news:4036fe80$1_3@newsprd01...
&amp;gt; &amp;gt; This is my code:
&amp;gt; &amp;gt;
&amp;gt;
&amp;gt;&lt;/KEVEN.CORAZZA&gt;&lt;/TONY.TANZILLO&gt;</description>
      <pubDate>Mon, 23 Feb 2004 14:44:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959632#M56647</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-02-23T14:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: Delphi Application and AutoCAD 2002</title>
      <link>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959633#M56648</link>
      <description>If the error occurs on the call to AddLine, it is a
problem with OLE registration. The only fix I know of
is to reinstal AutoCAD.

-- 
AcadXTabs: MDI Document Tabs for AutoCAD
http://www.acadxtabs.com

AcadX for AutoCAD 2004 Beta 1
http://mysite.verizon.net/~vze2vjds/acadx/AcadX16.zip


"Keven Corazza" &lt;KEVEN.CORAZZA&gt; wrote in message news:403a12a9_2@newsprd01...
&amp;gt; I get the error when the software execute the AddLine method.
&amp;gt;
&amp;gt; Thank you in advance.
&amp;gt;
&amp;gt; Keven Corazza
&amp;gt; SierraSoft
&amp;gt;
&amp;gt;
&amp;gt; "Tony Tanzillo" &lt;TONY.TANZILLO at="" caddzone="" dot="" com=""&gt; ha scritto nel messaggio
&amp;gt; news:4037b92b$1_1@newsprd01...
&amp;gt; &amp;gt; Does the problem occur when AutoCAD is already running,
&amp;gt; &amp;gt; or when it is not running and is started, or both? And,
&amp;gt; &amp;gt; exactly what line of code does the exception occur on?
&amp;gt; &amp;gt;
&amp;gt; &amp;gt; --
&amp;gt; &amp;gt; AcadXTabs: MDI Document Tabs for AutoCAD
&amp;gt; &amp;gt; http://www.acadxtabs.com
&amp;gt; &amp;gt;
&amp;gt; &amp;gt; AcadX for AutoCAD 2004 Beta 1
&amp;gt; &amp;gt; http://mysite.verizon.net/~vze2vjds/acadx/AcadX16.zip
&amp;gt; &amp;gt;
&amp;gt; &amp;gt;
&amp;gt; &amp;gt; "Keven Corazza" &lt;KEVEN.CORAZZA&gt; wrote in message
&amp;gt; news:4036fe80$1_3@newsprd01...
&amp;gt; &amp;gt; &amp;gt; This is my code:
&amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt;
&amp;gt; &amp;gt;
&amp;gt;
&amp;gt;&lt;/KEVEN.CORAZZA&gt;&lt;/TONY.TANZILLO&gt;&lt;/KEVEN.CORAZZA&gt;</description>
      <pubDate>Mon, 23 Feb 2004 16:26:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959633#M56648</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-02-23T16:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: Delphi Application and AutoCAD 2002</title>
      <link>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959634#M56649</link>
      <description>Trying changing the following 2 lines

  AcadApp.ActiveDocument.Database.ModelSpace.AddLine(p1,p2);
  AcadApp.ActiveDocument.Database.ModelSpace.AddLine(p3,p4);

to be this

  AcadApp.ActiveDocument.ModelSpace.AddLine(p1,p2);
  AcadApp.ActiveDocument.ModelSpace.AddLine(p3,p4);


"Tony Tanzillo" &lt;TONY.TANZILLO at="" caddzone="" dot="" com=""&gt; wrote in message
news:403a28eb_1@newsprd01...
&amp;gt; If the error occurs on the call to AddLine, it is a
&amp;gt; problem with OLE registration. The only fix I know of
&amp;gt; is to reinstal AutoCAD.
&amp;gt;
&amp;gt; -- 
&amp;gt; AcadXTabs: MDI Document Tabs for AutoCAD
&amp;gt; http://www.acadxtabs.com
&amp;gt;
&amp;gt; AcadX for AutoCAD 2004 Beta 1
&amp;gt; http://mysite.verizon.net/~vze2vjds/acadx/AcadX16.zip
&amp;gt;
&amp;gt;
&amp;gt; "Keven Corazza" &lt;KEVEN.CORAZZA&gt; wrote in message
news:403a12a9_2@newsprd01...
&amp;gt; &amp;gt; I get the error when the software execute the AddLine method.
&amp;gt; &amp;gt;
&amp;gt; &amp;gt; Thank you in advance.
&amp;gt; &amp;gt;
&amp;gt; &amp;gt; Keven Corazza
&amp;gt; &amp;gt; SierraSoft
&amp;gt; &amp;gt;
&amp;gt; &amp;gt;
&amp;gt; &amp;gt; "Tony Tanzillo" &lt;TONY.TANZILLO at="" caddzone="" dot="" com=""&gt; ha scritto nel
messaggio
&amp;gt; &amp;gt; news:4037b92b$1_1@newsprd01...
&amp;gt; &amp;gt; &amp;gt; Does the problem occur when AutoCAD is already running,
&amp;gt; &amp;gt; &amp;gt; or when it is not running and is started, or both? And,
&amp;gt; &amp;gt; &amp;gt; exactly what line of code does the exception occur on?
&amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt; &amp;gt; --
&amp;gt; &amp;gt; &amp;gt; AcadXTabs: MDI Document Tabs for AutoCAD
&amp;gt; &amp;gt; &amp;gt; http://www.acadxtabs.com
&amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt; &amp;gt; AcadX for AutoCAD 2004 Beta 1
&amp;gt; &amp;gt; &amp;gt; http://mysite.verizon.net/~vze2vjds/acadx/AcadX16.zip
&amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt; &amp;gt; "Keven Corazza" &lt;KEVEN.CORAZZA&gt; wrote in message
&amp;gt; &amp;gt; news:4036fe80$1_3@newsprd01...
&amp;gt; &amp;gt; &amp;gt; &amp;gt; This is my code:
&amp;gt; &amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt;
&amp;gt; &amp;gt;
&amp;gt;
&amp;gt;&lt;/KEVEN.CORAZZA&gt;&lt;/TONY.TANZILLO&gt;&lt;/KEVEN.CORAZZA&gt;&lt;/TONY.TANZILLO&gt;</description>
      <pubDate>Mon, 23 Feb 2004 20:49:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959634#M56649</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-02-23T20:49:40Z</dc:date>
    </item>
    <item>
      <title>Re: Delphi Application and AutoCAD 2002</title>
      <link>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959635#M56650</link>
      <description>No , that has nothing to do with it.

-- 
AcadXTabs: MDI Document Tabs for AutoCAD
http://www.acadxtabs.com

AcadX for AutoCAD 2004 Beta 1
http://mysite.verizon.net/~vze2vjds/acadx/AcadX16.zip


"Joe Sutphin" &lt;JOESU&gt; wrote in message news:403a6760$1_1@newsprd01...
&amp;gt; Trying changing the following 2 lines
&amp;gt;
&amp;gt;   AcadApp.ActiveDocument.Database.ModelSpace.AddLine(p1,p2);
&amp;gt;   AcadApp.ActiveDocument.Database.ModelSpace.AddLine(p3,p4);
&amp;gt;
&amp;gt; to be this
&amp;gt;
&amp;gt;   AcadApp.ActiveDocument.ModelSpace.AddLine(p1,p2);
&amp;gt;   AcadApp.ActiveDocument.ModelSpace.AddLine(p3,p4);
&amp;gt;
&amp;gt;&lt;/JOESU&gt;</description>
      <pubDate>Tue, 24 Feb 2004 22:26:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959635#M56650</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-02-24T22:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: Delphi Application and AutoCAD 2002</title>
      <link>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959636#M56651</link>
      <description>Did you try it?

"Tony Tanzillo" &lt;TONY.TANZILLO at="" caddzone="" dot="" com=""&gt; wrote in message
news:403bd093_3@newsprd01...
&amp;gt; No , that has nothing to do with it.
&amp;gt;
&amp;gt; -- 
&amp;gt; AcadXTabs: MDI Document Tabs for AutoCAD
&amp;gt; http://www.acadxtabs.com
&amp;gt;
&amp;gt; AcadX for AutoCAD 2004 Beta 1
&amp;gt; http://mysite.verizon.net/~vze2vjds/acadx/AcadX16.zip
&amp;gt;
&amp;gt;
&amp;gt; "Joe Sutphin" &lt;JOESU&gt; wrote in message
news:403a6760$1_1@newsprd01...
&amp;gt; &amp;gt; Trying changing the following 2 lines
&amp;gt; &amp;gt;
&amp;gt; &amp;gt;   AcadApp.ActiveDocument.Database.ModelSpace.AddLine(p1,p2);
&amp;gt; &amp;gt;   AcadApp.ActiveDocument.Database.ModelSpace.AddLine(p3,p4);
&amp;gt; &amp;gt;
&amp;gt; &amp;gt; to be this
&amp;gt; &amp;gt;
&amp;gt; &amp;gt;   AcadApp.ActiveDocument.ModelSpace.AddLine(p1,p2);
&amp;gt; &amp;gt;   AcadApp.ActiveDocument.ModelSpace.AddLine(p3,p4);
&amp;gt; &amp;gt;
&amp;gt; &amp;gt;
&amp;gt;
&amp;gt;&lt;/JOESU&gt;&lt;/TONY.TANZILLO&gt;</description>
      <pubDate>Wed, 25 Feb 2004 12:11:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959636#M56651</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-02-25T12:11:35Z</dc:date>
    </item>
    <item>
      <title>Re: Delphi Application and AutoCAD 2002</title>
      <link>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959637#M56652</link>
      <description>I've tried but the problem is the same. The strange thing is that in other
Acad 2002 the sofware works. Can be related to other application (ARX, LISP,
...) that AutoCAD load ?

Keven Corazza
SierraSoft




"Joe Sutphin" &lt;JOESU&gt; ha scritto nel messaggio
news:403c90f3$1_2@newsprd01...
&amp;gt; Did you try it?
&amp;gt;
&amp;gt; "Tony Tanzillo" &lt;TONY.TANZILLO at="" caddzone="" dot="" com=""&gt; wrote in message
&amp;gt; news:403bd093_3@newsprd01...
&amp;gt; &amp;gt; No , that has nothing to do with it.
&amp;gt; &amp;gt;
&amp;gt; &amp;gt; --
&amp;gt; &amp;gt; AcadXTabs: MDI Document Tabs for AutoCAD
&amp;gt; &amp;gt; http://www.acadxtabs.com
&amp;gt; &amp;gt;
&amp;gt; &amp;gt; AcadX for AutoCAD 2004 Beta 1
&amp;gt; &amp;gt; http://mysite.verizon.net/~vze2vjds/acadx/AcadX16.zip
&amp;gt; &amp;gt;
&amp;gt; &amp;gt;
&amp;gt; &amp;gt; "Joe Sutphin" &lt;JOESU&gt; wrote in message
&amp;gt; news:403a6760$1_1@newsprd01...
&amp;gt; &amp;gt; &amp;gt; Trying changing the following 2 lines
&amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt; &amp;gt;   AcadApp.ActiveDocument.Database.ModelSpace.AddLine(p1,p2);
&amp;gt; &amp;gt; &amp;gt;   AcadApp.ActiveDocument.Database.ModelSpace.AddLine(p3,p4);
&amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt; &amp;gt; to be this
&amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt; &amp;gt;   AcadApp.ActiveDocument.ModelSpace.AddLine(p1,p2);
&amp;gt; &amp;gt; &amp;gt;   AcadApp.ActiveDocument.ModelSpace.AddLine(p3,p4);
&amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt;
&amp;gt; &amp;gt;
&amp;gt;
&amp;gt;&lt;/JOESU&gt;&lt;/TONY.TANZILLO&gt;&lt;/JOESU&gt;</description>
      <pubDate>Wed, 25 Feb 2004 16:49:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959637#M56652</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-02-25T16:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: Delphi Application and AutoCAD 2002</title>
      <link>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959638#M56653</link>
      <description>Many times. I already know it works either way.

-- 
AcadXTabs: MDI Document Tabs for AutoCAD
http://www.acadxtabs.com

AcadX for AutoCAD 2004 Beta 1
http://mysite.verizon.net/~vze2vjds/acadx/AcadX16.zip


"Joe Sutphin" &lt;JOESU&gt; wrote in message news:403c90f3$1_2@newsprd01...
&amp;gt; Did you try it?
&amp;gt;&lt;/JOESU&gt;</description>
      <pubDate>Wed, 25 Feb 2004 20:15:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959638#M56653</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-02-25T20:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: Delphi Application and AutoCAD 2002</title>
      <link>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959639#M56654</link>
      <description>Like I said, this has to be an OLE registration
problem. Have you used any registry cleaners?

My advice is to reinstall AutoCAD, and also try
it on other systems if you can.  Also, what version
of Delphi are you using?

-- 
AcadXTabs: MDI Document Tabs for AutoCAD
http://www.acadxtabs.com

AcadX for AutoCAD 2004 Beta 1
http://mysite.verizon.net/~vze2vjds/acadx/AcadX16.zip


"Keven Corazza" &lt;KEVEN.CORAZZA&gt; wrote in message news:403cd303_1@newsprd01...
&amp;gt; I've tried but the problem is the same. The strange thing is that in other
&amp;gt; Acad 2002 the sofware works. Can be related to other application (ARX, LISP,
&amp;gt; ...) that AutoCAD load ?
&amp;gt;
&amp;gt; Keven Corazza
&amp;gt; SierraSoft
&amp;gt;
&amp;gt;
&amp;gt;
&amp;gt;
&amp;gt; "Joe Sutphin" &lt;JOESU&gt; ha scritto nel messaggio
&amp;gt; news:403c90f3$1_2@newsprd01...
&amp;gt; &amp;gt; Did you try it?
&amp;gt; &amp;gt;
&amp;gt; &amp;gt; "Tony Tanzillo" &lt;TONY.TANZILLO at="" caddzone="" dot="" com=""&gt; wrote in message
&amp;gt; &amp;gt; news:403bd093_3@newsprd01...
&amp;gt; &amp;gt; &amp;gt; No , that has nothing to do with it.
&amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt; &amp;gt; --
&amp;gt; &amp;gt; &amp;gt; AcadXTabs: MDI Document Tabs for AutoCAD
&amp;gt; &amp;gt; &amp;gt; http://www.acadxtabs.com
&amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt; &amp;gt; AcadX for AutoCAD 2004 Beta 1
&amp;gt; &amp;gt; &amp;gt; http://mysite.verizon.net/~vze2vjds/acadx/AcadX16.zip
&amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt; &amp;gt; "Joe Sutphin" &lt;JOESU&gt; wrote in message
&amp;gt; &amp;gt; news:403a6760$1_1@newsprd01...
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Trying changing the following 2 lines
&amp;gt; &amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt;   AcadApp.ActiveDocument.Database.ModelSpace.AddLine(p1,p2);
&amp;gt; &amp;gt; &amp;gt; &amp;gt;   AcadApp.ActiveDocument.Database.ModelSpace.AddLine(p3,p4);
&amp;gt; &amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; to be this
&amp;gt; &amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt;   AcadApp.ActiveDocument.ModelSpace.AddLine(p1,p2);
&amp;gt; &amp;gt; &amp;gt; &amp;gt;   AcadApp.ActiveDocument.ModelSpace.AddLine(p3,p4);
&amp;gt; &amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt; &amp;gt;
&amp;gt; &amp;gt;
&amp;gt; &amp;gt;
&amp;gt;
&amp;gt;&lt;/JOESU&gt;&lt;/TONY.TANZILLO&gt;&lt;/JOESU&gt;&lt;/KEVEN.CORAZZA&gt;</description>
      <pubDate>Wed, 25 Feb 2004 20:17:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959639#M56654</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-02-25T20:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: Delphi Application and AutoCAD 2002</title>
      <link>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959640#M56655</link>
      <description>I'm quite sure, looking your experience on this field, that you are right.
The problem is that I've tried on five PC, three works two doesn't work. The
two where I have the problem belongs to one of my customers and they have a
lot of application that runs on them.

You know that with the new policy by Autodesk install AutoCAD means that you
have to ask the installation code and all this request are recorded.

Is there a way to repeat the ole registration without install autocad from
the beginning ?

Thank you for your help

Keven Corazza
SierraSoft</description>
      <pubDate>Thu, 26 Feb 2004 06:52:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959640#M56655</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-02-26T06:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: Delphi Application and AutoCAD 2002</title>
      <link>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959641#M56656</link>
      <description>I'm not sure what you mean by 'ask the installation code
and all this request are recorded'.

You can do a repair of the existing installation without
having to enter anything.

I don't know if Autodesk broke out the registration
from the installer. Also, if there are lots of other
applications installed on the customer's system, then
that could be an indication of other problems as well.

For example, I've seen the use of Visual LISP's LDATA
completely hose AutoCAD registry information.

-- 
AcadXTabs: MDI Document Tabs for AutoCAD
http://www.acadxtabs.com

AcadX for AutoCAD 2004 Beta 1
http://mysite.verizon.net/~vze2vjds/acadx/AcadX16.zip


"Keven Corazza" &lt;KEVEN.CORAZZA&gt; wrote in message news:403d98a8$1_1@newsprd01...
&amp;gt; I'm quite sure, looking your experience on this field, that you are right.
&amp;gt; The problem is that I've tried on five PC, three works two doesn't work. The
&amp;gt; two where I have the problem belongs to one of my customers and they have a
&amp;gt; lot of application that runs on them.
&amp;gt;
&amp;gt; You know that with the new policy by Autodesk install AutoCAD means that you
&amp;gt; have to ask the installation code and all this request are recorded.
&amp;gt;
&amp;gt; Is there a way to repeat the ole registration without install autocad from
&amp;gt; the beginning ?
&amp;gt;
&amp;gt; Thank you for your help
&amp;gt;
&amp;gt; Keven Corazza
&amp;gt; SierraSoft
&amp;gt;
&amp;gt;&lt;/KEVEN.CORAZZA&gt;</description>
      <pubDate>Thu, 26 Feb 2004 16:56:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/delphi-application-and-autocad-2002/m-p/959641#M56656</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-02-26T16:56:40Z</dc:date>
    </item>
  </channel>
</rss>

