<?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: in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334633#M87779</link>
    <description>"Mike Daugird" &lt;MDAUGIRD&gt; wrote in message &amp;gt;&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt; Is there a way I can capture a click event with AcadX?&lt;BR /&gt;
&lt;BR /&gt;
You might try contacting the author directly&lt;BR /&gt;
(tony.tanzillo@worldnet.att.net).&lt;BR /&gt;
&lt;BR /&gt;
The InputPointEvent event function has a History parameter&lt;BR /&gt;
that might work for this. I'm pretty sure the value changes when&lt;BR /&gt;
the mouse button is down, but I don't recall the exact details.&lt;BR /&gt;
&lt;BR /&gt;
Another way may be to use the InputManager's EndGetPoint()&lt;BR /&gt;
event handler, which is fired when the user responds to a prompt&lt;BR /&gt;
for coordinate input.&lt;BR /&gt;
&lt;BR /&gt;
You might also try contacting the author of AcadX directly (I&lt;BR /&gt;
haven't seen him post here recently, not sure why).&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
Phil&lt;/MDAUGIRD&gt;</description>
    <pubDate>Fri, 19 Jan 2001 17:19:49 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2001-01-19T17:19:49Z</dc:date>
    <item>
      <title>AcadX</title>
      <link>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334626#M87772</link>
      <description>does anyone use this?  I just downloaded some samples and such from the&lt;BR /&gt;
website.&lt;BR /&gt;
I am trying to work with the InputPoint example.&lt;BR /&gt;
I have added code to put the form always on top, this way I can have acad&lt;BR /&gt;
maximized and&lt;BR /&gt;
still see the form.&lt;BR /&gt;
the form is on top with respect to all apps except ACAD.&lt;BR /&gt;
Does the AcadX dll make it impossible to have a form always on top?&lt;BR /&gt;
VB6 SP4&lt;BR /&gt;
A2K&lt;BR /&gt;
WinNT 4.0 SP6&lt;BR /&gt;
I used the following to put the form on top.&lt;BR /&gt;
&lt;BR /&gt;
Option Explicit&lt;BR /&gt;
Public Acad As AcadApplication&lt;BR /&gt;
Public Doc As AcadDocument&lt;BR /&gt;
Public AcadX As AcadXApplication&lt;BR /&gt;
Public WithEvents InputMan As AcadXInputManager&lt;BR /&gt;
Public IsDragging As Boolean&lt;BR /&gt;
&lt;BR /&gt;
Private Declare Function SetWindowPos Lib "user32" (ByVal hwnd As Long,&lt;BR /&gt;
ByVal hWndInsertAfter As Long, _&lt;BR /&gt;
     ByVal x As Long, ByVal y As Long, ByVal cx As Long, ByVal cy As Long,&lt;BR /&gt;
ByVal wFlags As Long) As Long&lt;BR /&gt;
Private Const HWND_TOPMOST = -1&lt;BR /&gt;
Private Const SWP_NOMOVE = &amp;amp;H2&lt;BR /&gt;
Private Const SWP_NOSIZE = &amp;amp;H1&lt;BR /&gt;
&lt;BR /&gt;
Private Sub Form_Load()&lt;BR /&gt;
  Set Acad = GetObject(, "AutoCAD.Application.15")&lt;BR /&gt;
  Set Doc = Acad.ActiveDocument&lt;BR /&gt;
  Set AcadX = Acad.GetInterfaceObject("AcadX.Application")&lt;BR /&gt;
  Set InputMan = Acad.GetInterfaceObject("AcadX.InputManager")&lt;BR /&gt;
  InputMan.InputPointEventsEnabled = True&lt;BR /&gt;
  SetWindowPos Me.hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE Or SWP_NOSIZE&lt;BR /&gt;
End Sub</description>
      <pubDate>Thu, 18 Jan 2001 09:55:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334626#M87772</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-01-18T09:55:18Z</dc:date>
    </item>
    <item>
      <title>Re: AcadX</title>
      <link>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334627#M87773</link>
      <description>Have you tried contacting the author (Tony Tanzillo) directly? He&lt;BR /&gt;
hasn't visited this group in quite a while so you'd probably have&lt;BR /&gt;
better luck with email.&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
http://www.acadx.com&lt;BR /&gt;
"You keep using that word. I do not think it means what you think it&lt;BR /&gt;
means."&lt;BR /&gt;
&lt;BR /&gt;
"Mike Daugird" &lt;MDAUGIRD&gt; wrote in message&lt;BR /&gt;
news:AC1B18658B28B146E2499C30E350ED0E@in.WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; does anyone use this?&lt;BR /&gt;
&lt;SNIP&gt;&lt;/SNIP&gt;&lt;/MDAUGIRD&gt;</description>
      <pubDate>Thu, 18 Jan 2001 10:05:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334627#M87773</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-01-18T10:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: AcadX</title>
      <link>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334628#M87774</link>
      <description>Mike I have not used AcadX, I'd reccomend if you are just trying to make&lt;BR /&gt;
your form on top, try this (this is in a form)....&lt;BR /&gt;
&lt;BR /&gt;
Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal&lt;BR /&gt;
lpClassName As String, ByVal lpWindowName As String) As Long&lt;BR /&gt;
Private Declare Function SetParent Lib "user32" (ByVal hWndChild As Long,&lt;BR /&gt;
ByVal hWndNewParent As Long) As Long&lt;BR /&gt;
&lt;BR /&gt;
Private Sub Form_Load()&lt;BR /&gt;
Dim oAcad As AcadApplication&lt;BR /&gt;
Dim hWnd As Long&lt;BR /&gt;
&lt;BR /&gt;
Set oAcad = GetObject(, "AUTOCAD.APPLICATION")&lt;BR /&gt;
hWnd = FindWindow(vbNullString, oAcad.Caption)&lt;BR /&gt;
SetParent Me.hWnd, hWnd&lt;BR /&gt;
&lt;BR /&gt;
End Sub&lt;BR /&gt;
&lt;BR /&gt;
It's less code / work / resources than the alternative you asked about.&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
  Jacob Dinardi&lt;BR /&gt;
&lt;BR /&gt;
Mike Daugird &lt;MDAUGIRD&gt; wrote in message&lt;BR /&gt;
news:AC1B18658B28B146E2499C30E350ED0E@in.WebX.SaUCah8kaAW...&lt;BR /&gt;
does anyone use this?  I just downloaded some samples and such from the&lt;BR /&gt;
website.&lt;BR /&gt;
I am trying to work with the InputPoint example.&lt;BR /&gt;
I have added code to put the form always on top, this way I can have acad&lt;BR /&gt;
maximized and&lt;BR /&gt;
still see the form.&lt;BR /&gt;
the form is on top with respect to all apps except ACAD.&lt;BR /&gt;
Does the AcadX dll make it impossible to have a form always on top?&lt;BR /&gt;
VB6 SP4&lt;BR /&gt;
A2K&lt;BR /&gt;
WinNT 4.0 SP6&lt;BR /&gt;
I used the following to put the form on top.&lt;BR /&gt;
&lt;BR /&gt;
Option Explicit&lt;BR /&gt;
Public Acad As AcadApplication&lt;BR /&gt;
Public Doc As AcadDocument&lt;BR /&gt;
Public AcadX As AcadXApplication&lt;BR /&gt;
Public WithEvents InputMan As AcadXInputManager&lt;BR /&gt;
Public IsDragging As Boolean&lt;BR /&gt;
&lt;BR /&gt;
Private Declare Function SetWindowPos Lib "user32" (ByVal hwnd As Long,&lt;BR /&gt;
ByVal hWndInsertAfter As Long, _&lt;BR /&gt;
     ByVal x As Long, ByVal y As Long, ByVal cx As Long, ByVal cy As Long,&lt;BR /&gt;
ByVal wFlags As Long) As Long&lt;BR /&gt;
Private Const HWND_TOPMOST = -1&lt;BR /&gt;
Private Const SWP_NOMOVE = &amp;amp;H2&lt;BR /&gt;
Private Const SWP_NOSIZE = &amp;amp;H1&lt;BR /&gt;
&lt;BR /&gt;
Private Sub Form_Load()&lt;BR /&gt;
  Set Acad = GetObject(, "AutoCAD.Application.15")&lt;BR /&gt;
  Set Doc = Acad.ActiveDocument&lt;BR /&gt;
  Set AcadX = Acad.GetInterfaceObject("AcadX.Application")&lt;BR /&gt;
  Set InputMan = Acad.GetInterfaceObject("AcadX.InputManager")&lt;BR /&gt;
  InputMan.InputPointEventsEnabled = True&lt;BR /&gt;
  SetWindowPos Me.hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE Or SWP_NOSIZE&lt;BR /&gt;
End Sub&lt;/MDAUGIRD&gt;</description>
      <pubDate>Thu, 18 Jan 2001 12:58:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334628#M87774</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-01-18T12:58:39Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334629#M87775</link>
      <description>"Jacob Dinardi" &lt;JDINARDI&gt; wrote in message&lt;BR /&gt;
news:D6F6E3E77BA516D3E2D09D62605428A1@in.WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; Mike I have not used AcadX, I'd reccomend if you are just trying to make&lt;BR /&gt;
&amp;gt; your form on top, try this (this is in a form)....&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; It's less code / work / resources than the alternative you asked about.&lt;BR /&gt;
&lt;BR /&gt;
You probably misunderstood Mike's request. He's not trying to&lt;BR /&gt;
use AcadX to keep a window on top.&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
Phil&lt;/JDINARDI&gt;</description>
      <pubDate>Fri, 19 Jan 2001 06:19:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334629#M87775</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-01-19T06:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: AcadX</title>
      <link>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334630#M87776</link>
      <description>Mike - I use the InputManager class in AcadX extensively in my&lt;BR /&gt;
VB6 applications, and I have not seen the problem you noted.&lt;BR /&gt;
&lt;BR /&gt;
Also, I tried the InputPointVB sample with your modified&lt;BR /&gt;
stay-on-top code and it worked as one would expect.&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
Phil&lt;BR /&gt;
&lt;BR /&gt;
"Mike Daugird" &lt;MDAUGIRD&gt; wrote in message&lt;BR /&gt;
news:AC1B18658B28B146E2499C30E350ED0E@in.WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; does anyone use this?  I just downloaded some samples and such from the&lt;BR /&gt;
&amp;gt; website.&lt;BR /&gt;
&amp;gt; I am trying to work with the InputPoint example.&lt;BR /&gt;
&amp;gt; I have added code to put the form always on top, this way I can have acad&lt;BR /&gt;
&amp;gt; maximized and&lt;BR /&gt;
&amp;gt; still see the form.&lt;BR /&gt;
&amp;gt; the form is on top with respect to all apps except ACAD.&lt;BR /&gt;
&amp;gt; Does the AcadX dll make it impossible to have a form always on top?&lt;BR /&gt;
&amp;gt; VB6 SP4&lt;BR /&gt;
&amp;gt; A2K&lt;BR /&gt;
&amp;gt; WinNT 4.0 SP6&lt;BR /&gt;
&amp;gt; I used the following to put the form on top.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Option Explicit&lt;BR /&gt;
&amp;gt; Public Acad As AcadApplication&lt;BR /&gt;
&amp;gt; Public Doc As AcadDocument&lt;BR /&gt;
&amp;gt; Public AcadX As AcadXApplication&lt;BR /&gt;
&amp;gt; Public WithEvents InputMan As AcadXInputManager&lt;BR /&gt;
&amp;gt; Public IsDragging As Boolean&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Private Declare Function SetWindowPos Lib "user32" (ByVal hwnd As Long,&lt;BR /&gt;
&amp;gt; ByVal hWndInsertAfter As Long, _&lt;BR /&gt;
&amp;gt;      ByVal x As Long, ByVal y As Long, ByVal cx As Long, ByVal cy As Long,&lt;BR /&gt;
&amp;gt; ByVal wFlags As Long) As Long&lt;BR /&gt;
&amp;gt; Private Const HWND_TOPMOST = -1&lt;BR /&gt;
&amp;gt; Private Const SWP_NOMOVE = &amp;amp;H2&lt;BR /&gt;
&amp;gt; Private Const SWP_NOSIZE = &amp;amp;H1&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Private Sub Form_Load()&lt;BR /&gt;
&amp;gt;   Set Acad = GetObject(, "AutoCAD.Application.15")&lt;BR /&gt;
&amp;gt;   Set Doc = Acad.ActiveDocument&lt;BR /&gt;
&amp;gt;   Set AcadX = Acad.GetInterfaceObject("AcadX.Application")&lt;BR /&gt;
&amp;gt;   Set InputMan = Acad.GetInterfaceObject("AcadX.InputManager")&lt;BR /&gt;
&amp;gt;   InputMan.InputPointEventsEnabled = True&lt;BR /&gt;
&amp;gt;   SetWindowPos Me.hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE Or SWP_NOSIZE&lt;BR /&gt;
&amp;gt; End Sub&lt;BR /&gt;
&amp;gt;&lt;/MDAUGIRD&gt;</description>
      <pubDate>Fri, 19 Jan 2001 06:24:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334630#M87776</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-01-19T06:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: AcadX</title>
      <link>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334631#M87777</link>
      <description>thank you all for your help.&lt;BR /&gt;
The thank you thread was ment to go here.&lt;BR /&gt;
Jacob Dinardi's code works well for me.&lt;BR /&gt;
His code puts my form on top of autocad only, this&lt;BR /&gt;
is nice because if a user minimizes autocad my app goes with it.&lt;BR /&gt;
Originally I was just trying to put my form on top of everything&lt;BR /&gt;
but makeing autocad the parent form of my app is a better way&lt;BR /&gt;
to do it. Thank you to everyone who responded.&lt;BR /&gt;
&lt;BR /&gt;
Is there a way I can capture a click event with AcadX?</description>
      <pubDate>Fri, 19 Jan 2001 07:28:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334631#M87777</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-01-19T07:28:10Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334632#M87778</link>
      <description>Glad you liked the code. Just a different approach.&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
  Jacob Dinardi&lt;BR /&gt;
&lt;BR /&gt;
Mike Daugird &lt;MDAUGIRD&gt; wrote in message&lt;BR /&gt;
news:CF4D15E1F2162162C0391640752D7702@in.WebX.SaUCah8kaAW...&lt;BR /&gt;
thank you all for your help.&lt;BR /&gt;
The thank you thread was ment to go here.&lt;BR /&gt;
Jacob Dinardi's code works well for me.&lt;BR /&gt;
His code puts my form on top of autocad only, this&lt;BR /&gt;
is nice because if a user minimizes autocad my app goes with it.&lt;BR /&gt;
Originally I was just trying to put my form on top of everything&lt;BR /&gt;
but makeing autocad the parent form of my app is a better way&lt;BR /&gt;
to do it. Thank you to everyone who responded.&lt;BR /&gt;
&lt;BR /&gt;
Is there a way I can capture a click event with AcadX?&lt;/MDAUGIRD&gt;</description>
      <pubDate>Fri, 19 Jan 2001 14:40:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334632#M87778</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-01-19T14:40:39Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334633#M87779</link>
      <description>"Mike Daugird" &lt;MDAUGIRD&gt; wrote in message &amp;gt;&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt; Is there a way I can capture a click event with AcadX?&lt;BR /&gt;
&lt;BR /&gt;
You might try contacting the author directly&lt;BR /&gt;
(tony.tanzillo@worldnet.att.net).&lt;BR /&gt;
&lt;BR /&gt;
The InputPointEvent event function has a History parameter&lt;BR /&gt;
that might work for this. I'm pretty sure the value changes when&lt;BR /&gt;
the mouse button is down, but I don't recall the exact details.&lt;BR /&gt;
&lt;BR /&gt;
Another way may be to use the InputManager's EndGetPoint()&lt;BR /&gt;
event handler, which is fired when the user responds to a prompt&lt;BR /&gt;
for coordinate input.&lt;BR /&gt;
&lt;BR /&gt;
You might also try contacting the author of AcadX directly (I&lt;BR /&gt;
haven't seen him post here recently, not sure why).&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
Phil&lt;/MDAUGIRD&gt;</description>
      <pubDate>Fri, 19 Jan 2001 17:19:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334633#M87779</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-01-19T17:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: AcadX</title>
      <link>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334634#M87780</link>
      <description>I'm trying out Tony Tanzillo's AcadX.arx and I'm having trouble&lt;BR /&gt;
loading it into VBA.&lt;BR /&gt;
&lt;BR /&gt;
I found that if I take one of the sample applications, strip out all&lt;BR /&gt;
the existing code and create my app on top of it works, but if I then&lt;BR /&gt;
export all my code and import it into a new app I get the error&lt;BR /&gt;
message "User-defined type not defined" when it tries to load any of&lt;BR /&gt;
the AcadX classes.&lt;BR /&gt;
&lt;BR /&gt;
All the code is identical in both cases, but the original dvb file  is&lt;BR /&gt;
around 60KB larger than the new one.&lt;BR /&gt;
&lt;BR /&gt;
Any tips on what I'm doing wrong?&lt;BR /&gt;
&lt;BR /&gt;
Ray Greene.</description>
      <pubDate>Sun, 18 Feb 2001 16:34:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334634#M87780</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-02-18T16:34:01Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334635#M87781</link>
      <description>Are you adding a reference to the AcadX 1.0 type library?&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
http://www.acadx.com&lt;BR /&gt;
"You keep using that word. I do not think it means what you think it&lt;BR /&gt;
means."&lt;BR /&gt;
&lt;BR /&gt;
"Ray Greene" &lt;RAYGR&gt; wrote in message&lt;BR /&gt;
news:3a905f61.18589069@discussion.autodesk.com...&lt;BR /&gt;
&amp;gt; I'm trying out Tony Tanzillo's AcadX.arx and I'm having trouble&lt;BR /&gt;
&amp;gt; loading it into VBA.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; I found that if I take one of the sample applications, strip out all&lt;BR /&gt;
&amp;gt; the existing code and create my app on top of it works, but if I&lt;BR /&gt;
then&lt;BR /&gt;
&amp;gt; export all my code and import it into a new app I get the error&lt;BR /&gt;
&amp;gt; message "User-defined type not defined" when it tries to load any of&lt;BR /&gt;
&amp;gt; the AcadX classes.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; All the code is identical in both cases, but the original dvb file&lt;BR /&gt;
is&lt;BR /&gt;
&amp;gt; around 60KB larger than the new one.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Any tips on what I'm doing wrong?&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Ray Greene.&lt;/RAYGR&gt;</description>
      <pubDate>Sun, 18 Feb 2001 20:05:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334635#M87781</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-02-18T20:05:02Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334636#M87782</link>
      <description>On Sun, 18 Feb 2001 20:05:02 -0800, "Frank Oquendo"&lt;BR /&gt;
&lt;FRANKO&gt; wrote:&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt;Are you adding a reference to the AcadX 1.0 type library?&lt;BR /&gt;
&lt;BR /&gt;
You mean: Public AcadX As ACADXLib.AcadXApplication ?&lt;BR /&gt;
&lt;BR /&gt;
I assume that's all that's needed as it's what is in the sample code.&lt;BR /&gt;
Or have I missed something?&lt;BR /&gt;
&lt;BR /&gt;
Ray Greene.&lt;/FRANKO&gt;</description>
      <pubDate>Mon, 19 Feb 2001 00:56:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334636#M87782</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-02-19T00:56:53Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334637#M87783</link>
      <description>Open the VBAIDE and click on Tools -&amp;gt; References. This will display a list&lt;BR /&gt;
of available references. Make sure that there is a check in the box beside&lt;BR /&gt;
the AcadX 1.0 type library.&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
Best Regards,&lt;BR /&gt;
&lt;BR /&gt;
D. M. Levesque</description>
      <pubDate>Mon, 19 Feb 2001 07:08:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334637#M87783</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-02-19T07:08:17Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334638#M87784</link>
      <description>On Mon, 19 Feb 2001 07:08:17 -0800, "D. M. Levesque"&lt;BR /&gt;
&lt;DALELEVESQUE&gt; wrote:&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt;Open the VBAIDE and click on Tools -&amp;gt; References. This will display a list&lt;BR /&gt;
&amp;gt;of available references. Make sure that there is a check in the box beside&lt;BR /&gt;
&amp;gt;the AcadX 1.0 type library.&lt;BR /&gt;
&lt;BR /&gt;
Of course, that's what Frank was referring to. Duh!&lt;BR /&gt;
Well, yeah, that fixed it all right..&lt;BR /&gt;
&lt;BR /&gt;
Can't believe I didn't think to do that myself though &lt;BLUSH&gt;&lt;BR /&gt;
&lt;BR /&gt;
Thanks for giving instructions simple enough for me to understand &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
&lt;BR /&gt;
Ray Greene.&lt;/BLUSH&gt;&lt;/DALELEVESQUE&gt;</description>
      <pubDate>Mon, 19 Feb 2001 12:08:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/acadx/m-p/334638#M87784</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-02-19T12:08:23Z</dc:date>
    </item>
  </channel>
</rss>

