<?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: 2020: ObjectDBX test in ObjectARX Forum</title>
    <link>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9444412#M4837</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1663775"&gt;@veli_vaisanen&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;have you try these?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blog.jtbworld.com/2007/09/objectdbxrealdwg-using-vbnet.html" target="_blank" rel="noopener"&gt;https://blog.jtbworld.com/2007/09/objectdbxrealdwg-using-vbnet.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blog.jtbworld.com/2007/07/objectdbx-sample-using-vba-and-autocad.html" target="_blank" rel="noopener"&gt;https://blog.jtbworld.com/2007/07/objectdbx-sample-using-vba-and-autocad.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Br. Veli&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Sorry but this code has nothing similar with RealDWG and ObjectDBX&lt;/P&gt;</description>
    <pubDate>Wed, 15 Apr 2020 11:53:55 GMT</pubDate>
    <dc:creator>Alexander.Rivilis</dc:creator>
    <dc:date>2020-04-15T11:53:55Z</dc:date>
    <item>
      <title>2020: ObjectDBX test</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9286246#M4827</link>
      <description>&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;Two days I'm diving into&amp;nbsp;&lt;FONT&gt;ObjectARX&lt;/FONT&gt;/&lt;FONT&gt;ObjectDBX&lt;/FONT&gt; areas to create little prove of concept for my project.&lt;/P&gt;&lt;P&gt;My goal is to iterate 9000 dwg files and to extract some data from them.&lt;/P&gt;&lt;P&gt;My environment:&lt;/P&gt;&lt;P&gt;1. Windows 10 Pro 64bit&lt;/P&gt;&lt;P&gt;2. AutoCAD 2019 - commercial license&lt;/P&gt;&lt;P&gt;3. Installed ObjectARX 2020 Wizards (&lt;FONT&gt;Autodesk_ObjectARX_2019_Win_64_and_32_Bit)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;4. Visual Studio 2017 Community edition&lt;/P&gt;&lt;P&gt;5. AutoCAD 2020 .NET Wizards (not necessary but installed)&lt;/P&gt;&lt;P&gt;I created Visual Basic Console App (.NET Framework) project (just try ot open DWG file) with dll refs only for &lt;FONT&gt;ObjectDBX&lt;/FONT&gt;&amp;nbsp; from &lt;FONT&gt;ObjectARX&lt;/FONT&gt;(&lt;FONT&gt;acdb23.lib,acge23.lib,acgiapi.lib,axdb.lib,&lt;/FONT&gt;&lt;FONT&gt;rxapi.lib,acismobj23.lib&lt;/FONT&gt;) with just one executable source as following :&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;PRE&gt;Imports Autodesk.AutoCAD.DatabaseServices
Module Module1

    Sub Main()
        Try
            Dim db As Database
            db = New Database(False, True)
            db.ReadDwgFile("C:\WORK\Tests\20200129\dobrich.dwg", System.IO.FileShare.ReadWrite, False, "")
            db.CloseInput(True)
            HostApplicationServices.WorkingDatabase = db
            Using tr As Transaction = db.TransactionManager.StartTransaction()

            End Using

            Debug.Write("End")
        Catch ex As Exception
            Debug.WriteLine(ex.Message)
        End Try
        Debug.WriteLine("End")
    End Sub

End Module&lt;/PRE&gt;&lt;P&gt;But I have always such error:&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Exception thrown: 'System.InvalidProgramException' in ConsoleApp5.exe&lt;BR /&gt;Common Language Runtime detected an invalid program.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;I know that such error is common if I use&amp;nbsp;ObjectARX dll ourside of&amp;nbsp;ObjectDBX because I will need AutoCAD app, but this is not the case in my code.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;I cannot understand why I have such error in case of exploanation in Autodesk documentations that must be working fine.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Any suggestion for fix of that error ?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Regards&lt;/FONT&gt;&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2020 18:10:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9286246#M4827</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-30T18:10:02Z</dc:date>
    </item>
    <item>
      <title>Re: 2020: ObjectDBX test</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9286312#M4828</link>
      <description>Perhaps I've misunderstood what you are trying to do, but the ObjectARX SDK can only be used to create C++ or .NET dlls that can be loaded into AutoCAD and run from within AutoCAD.  It can't be used to create a standalone exe that does not need AutoCAD.&lt;BR /&gt;&lt;BR /&gt;If you want to create a standalone console application that does not require AutoCAD, then you will need to use the RealDWG SDK which is a licensed SDK that is not free.</description>
      <pubDate>Thu, 30 Jan 2020 18:35:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9286312#M4828</guid>
      <dc:creator>artc2</dc:creator>
      <dc:date>2020-01-30T18:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: 2020: ObjectDBX test</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9286365#M4829</link>
      <description>&lt;P&gt;&lt;FONT&gt;According official sources you are not right because ObjectARX&lt;/FONT&gt; is a plugin SDK, but contains&amp;nbsp;&lt;FONT&gt;ObjectDBX&lt;/FONT&gt; (for standalone apps just few dll (see below),&amp;nbsp;&lt;STRONG&gt;&lt;U&gt;RealDWG&lt;/U&gt;&lt;/STRONG&gt; is the license version of&lt;FONT&gt;ObjectDBX&lt;/FONT&gt;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;Official info from techsoft3d (Autodesk)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;To test and trial RealDWG, please follow these steps:&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Download and read about system requirements for the ObjectARX SDK &lt;A href="https://www.autodesk.com/developer-network/platform-technologies/autocad/objectarx-license-download" target="_blank" rel="noopener"&gt;here&lt;/A&gt;. These libraries are actually the API for AutoCAD (So you can see how well integrated RealDWG is!)&lt;/LI&gt;&lt;LI&gt;If you don’t have AutoCAD, you can download a 30-day trial version &lt;U&gt;&lt;A href="https://www.autodesk.com/products/autocad/free-trial" target="_blank" rel="noopener"&gt;here&lt;/A&gt;&lt;/U&gt;.&lt;/LI&gt;&lt;LI&gt;If you’re not familiar with ObjectARX programming, you can get started &lt;A href="http://usa.autodesk.com/adsk/servlet/index?id=18162650&amp;amp;siteID=123112" target="_blank" rel="noopener"&gt;here&lt;/A&gt;. Also have a look at the sample projects that come with the SDK.&lt;/LI&gt;&lt;LI&gt;RealDWG uses the ObjectDBX part of the Object ARX libraries. (Please be aware that any UI or draw functions are NOT included in RealDWG. However, all file reading, file writing and geometry functions are.)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Using the ObjectARX SDK, it is possible to do a “proof-of-concept” to validate the intended behavior. As RealDWG is a subset of ObjectARX you need to make sure critical features are kept within the RealDWG parts of the API.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See below for specific instructions about how to test if you are using Managed (.NET) code or Native (C++) code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Managed code (.NET)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You’ll be using the managed API of ObjectARX. The ObjectARX features that are &lt;U&gt;specific to RealDWG only, can be found in the namespaces of the AcDbMgd.dll&lt;/U&gt;:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, you need to make sure &lt;U&gt;no critical calls are made to the AcCoreMgd.dll&lt;/U&gt;, which contains overlapping namespaces ‘GraphicsSystem’ and ‘Runtime’ (this dll is not part of RealDWG):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Additional dll’s in ObjectARX that are also available in RealDWG:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;acdbmgdbrep.dll&lt;/LI&gt;&lt;LI&gt;AcAxDb23res.dll&lt;/LI&gt;&lt;/UL&gt;&lt;OL&gt;&lt;LI&gt;Native code (C++)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;The ObjectARX functionality that is also available in RealDWG is restricted to these libraries:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;ac1st23.lib&lt;/LI&gt;&lt;LI&gt;acdb23.lib&lt;/LI&gt;&lt;LI&gt;acdbmgd.lib&lt;/LI&gt;&lt;LI&gt;AcDbPointCloudObj.lib&lt;/LI&gt;&lt;LI&gt;acge23.lib&lt;/LI&gt;&lt;LI&gt;AcGeolocationObj.lib&lt;/LI&gt;&lt;LI&gt;acgiapi.lib&lt;/LI&gt;&lt;LI&gt;acismobj23.lib&lt;/LI&gt;&lt;LI&gt;acModelDocObj.lib&lt;/LI&gt;&lt;LI&gt;AcMPolygonObj.lib&lt;/LI&gt;&lt;LI&gt;AcPal.lib&lt;/LI&gt;&lt;LI&gt;AcSceneOE.lib&lt;/LI&gt;&lt;LI&gt;axdb.lib&lt;/LI&gt;&lt;LI&gt;rxapi.lib&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;from the &lt;EM&gt;utils&lt;/EM&gt; folders&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;AecModeler.lib&lt;/LI&gt;&lt;LI&gt;AdImaging.lib&lt;/LI&gt;&lt;LI&gt;AdIntImgServices.lib&lt;/LI&gt;&lt;LI&gt;acbr23.lib&lt;/LI&gt;&lt;LI&gt;acgex23.lib&lt;/LI&gt;&lt;LI&gt;AsdkHlrApi23.lib&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Thu, 30 Jan 2020 18:52:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9286365#M4829</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-30T18:52:02Z</dc:date>
    </item>
    <item>
      <title>Re: 2020: ObjectDBX test</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9286377#M4830</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;FONT&gt;According official sources you are not right because ObjectARX&lt;/FONT&gt; is a plugin SDK, but contains&amp;nbsp;&lt;FONT&gt;ObjectDBX&lt;/FONT&gt; (for standalone apps just few dll (see below),&amp;nbsp;&lt;STRONG&gt;&lt;U&gt;RealDWG&lt;/U&gt;&lt;/STRONG&gt; is the license version of&lt;FONT&gt;ObjectDBX&lt;/FONT&gt;&amp;nbsp; )&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/656250"&gt;@artc2&lt;/a&gt;&amp;nbsp;better than anyone on this forum know how to use ObjectARX and ObjectDBX (RealDWG) &lt;/P&gt;
&lt;P&gt;Without RealDWG you can not create exe-file for reading/writing dwg-file.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2020 18:58:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9286377#M4830</guid>
      <dc:creator>Alexander.Rivilis</dc:creator>
      <dc:date>2020-01-30T18:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: 2020: ObjectDBX test</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9286391#M4831</link>
      <description>&lt;P&gt;Interesting how to buy&amp;nbsp;&lt;FONT&gt;RealDWG&lt;/FONT&gt; without way for understand what is possible to do by testing of&amp;nbsp;&lt;FONT&gt;ObjectDBX in standalone mode.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Thank you for both answers!&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2020 19:03:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9286391#M4831</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-30T19:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: 2020: ObjectDBX test</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9286395#M4832</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Interesting how to buy&amp;nbsp;&lt;FONT&gt;RealDWG&lt;/FONT&gt; without way for understand what is possible to do by testing of&amp;nbsp;&lt;FONT&gt;ObjectDBX in standalone mode.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;Thank you for both answers!&lt;/FONT&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Ask this question in techsoft3d.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2020 19:05:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9286395#M4832</guid>
      <dc:creator>Alexander.Rivilis</dc:creator>
      <dc:date>2020-01-30T19:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: 2020: ObjectDBX test</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9286414#M4833</link>
      <description>&lt;P&gt;Can you confirm that testing of&amp;nbsp;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #666666; font-family: 'Artifakt',Tahoma,Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;ObjectDBX (dwg open/read)&amp;nbsp;&lt;/SPAN&gt; is possible only by plugin for AutoCAD?&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2020 19:11:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9286414#M4833</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-30T19:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: 2020: ObjectDBX test</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9287591#M4834</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Can you confirm that testing of&amp;nbsp;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #666666; font-family: 'Artifakt',Tahoma,Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;ObjectDBX (dwg open/read)&amp;nbsp;&lt;/SPAN&gt; is possible only by plugin for AutoCAD?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You will need an appropriate host application to load and test a DBX module. This could also be RealDWG based app like Autodesk Trueview that allows to load DBX modules.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyway I would recomment AutoCAD because it might be tricky to test your functions if you are not using AutoCAD.&lt;/P&gt;
&lt;P&gt;The usual way is to to write a command in an ARX module that calls your functions. If you use another host app you have to figure out a way to make it call your function.&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jan 2020 09:25:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9287591#M4834</guid>
      <dc:creator>tbrammer</dc:creator>
      <dc:date>2020-01-31T09:25:15Z</dc:date>
    </item>
    <item>
      <title>Re: 2020: ObjectDBX test</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9298824#M4835</link>
      <description>&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 05 Feb 2020 16:43:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9298824#M4835</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-05T16:43:20Z</dc:date>
    </item>
    <item>
      <title>Re: 2020: ObjectDBX test</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9444403#M4836</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;have you try these?&lt;/P&gt;&lt;P&gt;&lt;A href="https://blog.jtbworld.com/2007/09/objectdbxrealdwg-using-vbnet.html" target="_blank" rel="noopener"&gt;https://blog.jtbworld.com/2007/09/objectdbxrealdwg-using-vbnet.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;Private Function StartAutoCAD() As Object
  On Error Resume Next
  Dim AcadApp As Object
  ' Get the active session of AutoCAD using late binding
  AcadApp = GetObject(, "AutoCAD.Application.17.1")
  If Err.Number &amp;lt;&amp;gt; 0 Then
    Err.Clear()
    Shell("c:\Program Files\Common Files\Autodesk Shared\WSCommCntr1.exe", AppWinStyle.NormalFocus)
    ' Create a new session of AutoCAD using late binding
    AcadApp = CreateObject("AutoCAD.Application.17.1")
  End If
  Return AcadApp
End Function

Private Sub Test()
    Dim AcadApp As Object
    Dim dbxDoc As Object
    AcadApp = StartAutoCAD()
    If AcadApp Then
        AcadApp.Visible = True
        objDbx = AcadApp.GetInterfaceObject("ObjectDBX.AxDbDocument.17")
        objDbx.Open("D:\test\block1.dwg")
        Dim ms As Object
        ms = objDbx.ModelSpace
        MsgBox(ms.Count.ToString + " objects in in model space")
        objDbx = Nothing
        AcadApp.Application.Quit()
        AcadApp = Nothing
    End If
End Sub&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://blog.jtbworld.com/2007/07/objectdbx-sample-using-vba-and-autocad.html" target="_blank" rel="noopener"&gt;https://blog.jtbworld.com/2007/07/objectdbx-sample-using-vba-and-autocad.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;Option Explicit
Dim objDbx As AxDbDocument
' 2007-06-08
' By Jimmy Bergmark
' Copyright (C) 2007 JTB World, All Rights Reserved
' Website: www.jtbworld.com
' E-mail: info@jtbworld.com
' Runs in AutoCAD 2008 with axdb17enu.tlb (must be referenced) AutoCAD/ObjectDBX Common 17.0 Type Library
' Example of batch for listing all block names on all drawings in a directory.

Private Sub ListBlockNames()
Set objDbx = GetInterfaceObject("ObjectDBX.AxDbDocument.17")
Dim inDir As String
Dim elem As Object
Dim filenom As String
Dim WholeFile As String
Dim newHeight As Double
inDir = "c:\program files\autocad 2008\sample"
filenom = Dir$(inDir &amp;amp; "\*.dwg")
Do While filenom &amp;lt;&amp;gt; ""
    ThisDrawing.Utility.Prompt vbCrLf &amp;amp; "File: " &amp;amp; filenom
    ThisDrawing.Utility.Prompt vbCrLf &amp;amp; "-----------------"
    WholeFile = inDir &amp;amp; "\" &amp;amp; filenom
    objDbx.Open WholeFile
    For Each elem In objDbx.Blocks
        If elem.IsXRef = False And Left(elem.Name, 1) &amp;lt;&amp;gt; "*" Then
            ThisDrawing.Utility.Prompt vbCrLf &amp;amp; elem.Name
        End If
    Next
    Set elem = Nothing
    filenom = Dir$
    ThisDrawing.Utility.Prompt vbCrLf
Loop
Set objDbx = Nothing
End Sub&lt;/LI-CODE&gt;&lt;P&gt;Br. Veli&lt;/P&gt;</description>
      <pubDate>Wed, 15 Apr 2020 11:46:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9444403#M4836</guid>
      <dc:creator>veli_vaisanen</dc:creator>
      <dc:date>2020-04-15T11:46:46Z</dc:date>
    </item>
    <item>
      <title>Re: 2020: ObjectDBX test</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9444412#M4837</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1663775"&gt;@veli_vaisanen&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;have you try these?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blog.jtbworld.com/2007/09/objectdbxrealdwg-using-vbnet.html" target="_blank" rel="noopener"&gt;https://blog.jtbworld.com/2007/09/objectdbxrealdwg-using-vbnet.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blog.jtbworld.com/2007/07/objectdbx-sample-using-vba-and-autocad.html" target="_blank" rel="noopener"&gt;https://blog.jtbworld.com/2007/07/objectdbx-sample-using-vba-and-autocad.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Br. Veli&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Sorry but this code has nothing similar with RealDWG and ObjectDBX&lt;/P&gt;</description>
      <pubDate>Wed, 15 Apr 2020 11:53:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9444412#M4837</guid>
      <dc:creator>Alexander.Rivilis</dc:creator>
      <dc:date>2020-04-15T11:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: 2020: ObjectDBX test</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9444427#M4838</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/481027"&gt;@Alexander.Rivilis&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1663775"&gt;@veli_vaisanen&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;have you try these?&lt;/P&gt;&lt;P&gt;&lt;A href="https://blog.jtbworld.com/2007/09/objectdbxrealdwg-using-vbnet.html" target="_blank" rel="noopener"&gt;https://blog.jtbworld.com/2007/09/objectdbxrealdwg-using-vbnet.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://blog.jtbworld.com/2007/07/objectdbx-sample-using-vba-and-autocad.html" target="_blank" rel="noopener"&gt;https://blog.jtbworld.com/2007/07/objectdbx-sample-using-vba-and-autocad.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Br. Veli&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Sorry but this code has nothing similar with RealDWG and ObjectDBX&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Ok. I understand that.&amp;nbsp;Just reply to original problem:&lt;/P&gt;&lt;P&gt;"&lt;EM&gt;My goal is to iterate 9000 dwg files and to extract some data from them.&lt;/EM&gt;"&lt;/P&gt;&lt;P&gt;Br. Veli&lt;/P&gt;</description>
      <pubDate>Wed, 15 Apr 2020 12:01:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9444427#M4838</guid>
      <dc:creator>veli_vaisanen</dc:creator>
      <dc:date>2020-04-15T12:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: 2020: ObjectDBX test</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9444447#M4839</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1663775"&gt;@veli_vaisanen&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/481027"&gt;@Alexander.Rivilis&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1663775"&gt;@veli_vaisanen&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;have you try these?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blog.jtbworld.com/2007/09/objectdbxrealdwg-using-vbnet.html" target="_blank" rel="noopener"&gt;https://blog.jtbworld.com/2007/09/objectdbxrealdwg-using-vbnet.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blog.jtbworld.com/2007/07/objectdbx-sample-using-vba-and-autocad.html" target="_blank" rel="noopener"&gt;https://blog.jtbworld.com/2007/07/objectdbx-sample-using-vba-and-autocad.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Br. Veli&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Sorry but this code has nothing similar with RealDWG and ObjectDBX&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Ok. I understand that.&amp;nbsp;Just reply to original problem:&lt;/P&gt;
&lt;P&gt;"&lt;EM&gt;My goal is to iterate 9000 dwg files and to extract some data from them.&lt;/EM&gt;"&lt;/P&gt;
&lt;P&gt;Br. Veli&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Original problem can be easy solved with ObjectARX or AutoCAD .NET API, AcCoreConsole and bat-file.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Apr 2020 12:06:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9444447#M4839</guid>
      <dc:creator>Alexander.Rivilis</dc:creator>
      <dc:date>2020-04-15T12:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: 2020: ObjectDBX test</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9444516#M4840</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/481027"&gt;@Alexander.Rivilis&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1663775"&gt;@veli_vaisanen&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/481027"&gt;@Alexander.Rivilis&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1663775"&gt;@veli_vaisanen&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;have you try these?&lt;/P&gt;&lt;P&gt;&lt;A href="https://blog.jtbworld.com/2007/09/objectdbxrealdwg-using-vbnet.html" target="_blank" rel="noopener"&gt;https://blog.jtbworld.com/2007/09/objectdbxrealdwg-using-vbnet.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://blog.jtbworld.com/2007/07/objectdbx-sample-using-vba-and-autocad.html" target="_blank" rel="noopener"&gt;https://blog.jtbworld.com/2007/07/objectdbx-sample-using-vba-and-autocad.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Br. Veli&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Sorry but this code has nothing similar with RealDWG and ObjectDBX&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Ok. I understand that.&amp;nbsp;Just reply to original problem:&lt;/P&gt;&lt;P&gt;"&lt;EM&gt;My goal is to iterate 9000 dwg files and to extract some data from them.&lt;/EM&gt;"&lt;/P&gt;&lt;P&gt;Br. Veli&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Original problem can be easy solved with ObjectARX or AutoCAD .NET API, AcCoreConsole and bat-file.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Thanks Alex,&lt;/P&gt;&lt;P&gt;my mistake that I don´t read first message properly. Should I remove my posts?&lt;/P&gt;&lt;P&gt;Br. Veli&lt;/P&gt;</description>
      <pubDate>Wed, 15 Apr 2020 12:32:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9444516#M4840</guid>
      <dc:creator>veli_vaisanen</dc:creator>
      <dc:date>2020-04-15T12:32:50Z</dc:date>
    </item>
    <item>
      <title>Re: 2020: ObjectDBX test</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9444697#M4841</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1663775"&gt;@veli_vaisanen&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Thanks Alex,&lt;/P&gt;
&lt;P&gt;my mistake that I don´t read first message properly. Should I remove my posts?&lt;/P&gt;
&lt;P&gt;Br. Veli&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;No you should not remove posts. By the way, you can not remove your post - it is possible only with help of forum moderators.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Apr 2020 13:12:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/2020-objectdbx-test/m-p/9444697#M4841</guid>
      <dc:creator>Alexander.Rivilis</dc:creator>
      <dc:date>2020-04-15T13:12:44Z</dc:date>
    </item>
  </channel>
</rss>

