<?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 Updating an entity's object data table from form in AutoCAD Map 3D Developer Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-map-3d-developer-forum/updating-an-entity-s-object-data-table-from-form/m-p/3514888#M2033</link>
    <description>&lt;P&gt;I have a form that all the object data gets imported into when I select a parcel. I want to be able to edit the data and overwrite the object data in my drawing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using the code below when I hit the button and select the parcel I want to overwrite the data to, it attaches a duplicate table with the same name to the entity and all the data is empty except for the owners name. &amp;nbsp;What do I need to change to make it just overwrite the existing table without creating a duplicate one.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Private Sub updateOD_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles updateOD.Click&lt;/P&gt;&lt;P&gt;Dim id As ObjectId '= myid&lt;/P&gt;&lt;P&gt;Dim doc As Autodesk.AutoCAD.ApplicationServices.Document = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument&lt;/P&gt;&lt;P&gt;Dim db As Database = doc.Database&lt;BR /&gt;Dim trans As Transaction = db.TransactionManager.StartTransaction()&lt;BR /&gt;Dim odTable As Autodesk.Gis.Map.ObjectData.Table&lt;BR /&gt;Dim odTables As Autodesk.Gis.Map.ObjectData.Tables&lt;BR /&gt;odTables = HostMapApplicationServices.Application.ActiveProject.ODTables&lt;/P&gt;&lt;P&gt;Try&lt;BR /&gt;Dim ed As Autodesk.AutoCAD.EditorInput.Editor = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor&lt;/P&gt;&lt;P&gt;Using docloc As DocumentLock = doc.LockDocument&lt;BR /&gt;Dim prompt_result As PromptEntityResult = ed.GetEntity(vbCrLf + "Select the object...")&lt;BR /&gt;id = prompt_result.ObjectId&lt;BR /&gt;Dim dbObj As DBObject = trans.GetObject(id, Autodesk.AutoCAD.DatabaseServices.OpenMode.ForWrite)&lt;/P&gt;&lt;P&gt;'' Presuming OD Table "MyTestODTable" exist in the DWG file&amp;nbsp;&lt;BR /&gt;odTable = odTables.Item("All_Parcels")&lt;BR /&gt;Dim odrecords As ObjectData.Records = odTable.GetObjectTableRecords(Convert.ToUInt32(0), id, Constants.OpenMode.OpenForRead, False)&lt;BR /&gt;Dim odRecord As ObjectData.Record = odrecords.Item(0)&lt;BR /&gt;odRecord = Autodesk.Gis.Map.ObjectData.Record.Create()&lt;BR /&gt;odTable.InitRecord(odRecord)&lt;BR /&gt;Dim mapVal As Autodesk.Gis.Map.Utilities.MapValue&lt;BR /&gt;'' Add a Record and assign a value to it&lt;BR /&gt;mapVal = odRecord(3)&lt;BR /&gt;mapVal.Assign(OwnerName.Text)&lt;/P&gt;&lt;P&gt;' dbObj should be opened for Write, otherwise&lt;/P&gt;&lt;P&gt;odTable.AddRecord(odRecord, dbObj)&lt;BR /&gt;odRecord.Dispose()&lt;BR /&gt;odrecords.Dispose()&lt;BR /&gt;trans.Commit()&lt;BR /&gt;End Using&lt;/P&gt;&lt;P&gt;Catch exc As Autodesk.Gis.Map.MapException&lt;BR /&gt;MsgBox("Error : " + exc.Message.ToString())&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;End Try&lt;/P&gt;&lt;P&gt;End Sub&lt;BR /&gt;End Class&lt;/P&gt;</description>
    <pubDate>Mon, 25 Jun 2012 21:28:24 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2012-06-25T21:28:24Z</dc:date>
    <item>
      <title>Updating an entity's object data table from form</title>
      <link>https://forums.autodesk.com/t5/autocad-map-3d-developer-forum/updating-an-entity-s-object-data-table-from-form/m-p/3514888#M2033</link>
      <description>&lt;P&gt;I have a form that all the object data gets imported into when I select a parcel. I want to be able to edit the data and overwrite the object data in my drawing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using the code below when I hit the button and select the parcel I want to overwrite the data to, it attaches a duplicate table with the same name to the entity and all the data is empty except for the owners name. &amp;nbsp;What do I need to change to make it just overwrite the existing table without creating a duplicate one.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Private Sub updateOD_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles updateOD.Click&lt;/P&gt;&lt;P&gt;Dim id As ObjectId '= myid&lt;/P&gt;&lt;P&gt;Dim doc As Autodesk.AutoCAD.ApplicationServices.Document = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument&lt;/P&gt;&lt;P&gt;Dim db As Database = doc.Database&lt;BR /&gt;Dim trans As Transaction = db.TransactionManager.StartTransaction()&lt;BR /&gt;Dim odTable As Autodesk.Gis.Map.ObjectData.Table&lt;BR /&gt;Dim odTables As Autodesk.Gis.Map.ObjectData.Tables&lt;BR /&gt;odTables = HostMapApplicationServices.Application.ActiveProject.ODTables&lt;/P&gt;&lt;P&gt;Try&lt;BR /&gt;Dim ed As Autodesk.AutoCAD.EditorInput.Editor = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor&lt;/P&gt;&lt;P&gt;Using docloc As DocumentLock = doc.LockDocument&lt;BR /&gt;Dim prompt_result As PromptEntityResult = ed.GetEntity(vbCrLf + "Select the object...")&lt;BR /&gt;id = prompt_result.ObjectId&lt;BR /&gt;Dim dbObj As DBObject = trans.GetObject(id, Autodesk.AutoCAD.DatabaseServices.OpenMode.ForWrite)&lt;/P&gt;&lt;P&gt;'' Presuming OD Table "MyTestODTable" exist in the DWG file&amp;nbsp;&lt;BR /&gt;odTable = odTables.Item("All_Parcels")&lt;BR /&gt;Dim odrecords As ObjectData.Records = odTable.GetObjectTableRecords(Convert.ToUInt32(0), id, Constants.OpenMode.OpenForRead, False)&lt;BR /&gt;Dim odRecord As ObjectData.Record = odrecords.Item(0)&lt;BR /&gt;odRecord = Autodesk.Gis.Map.ObjectData.Record.Create()&lt;BR /&gt;odTable.InitRecord(odRecord)&lt;BR /&gt;Dim mapVal As Autodesk.Gis.Map.Utilities.MapValue&lt;BR /&gt;'' Add a Record and assign a value to it&lt;BR /&gt;mapVal = odRecord(3)&lt;BR /&gt;mapVal.Assign(OwnerName.Text)&lt;/P&gt;&lt;P&gt;' dbObj should be opened for Write, otherwise&lt;/P&gt;&lt;P&gt;odTable.AddRecord(odRecord, dbObj)&lt;BR /&gt;odRecord.Dispose()&lt;BR /&gt;odrecords.Dispose()&lt;BR /&gt;trans.Commit()&lt;BR /&gt;End Using&lt;/P&gt;&lt;P&gt;Catch exc As Autodesk.Gis.Map.MapException&lt;BR /&gt;MsgBox("Error : " + exc.Message.ToString())&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;End Try&lt;/P&gt;&lt;P&gt;End Sub&lt;BR /&gt;End Class&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jun 2012 21:28:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-map-3d-developer-forum/updating-an-entity-s-object-data-table-from-form/m-p/3514888#M2033</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-06-25T21:28:24Z</dc:date>
    </item>
    <item>
      <title>Re: Updating an entity's object data table from form</title>
      <link>https://forums.autodesk.com/t5/autocad-map-3d-developer-forum/updating-an-entity-s-object-data-table-from-form/m-p/3515980#M2034</link>
      <description>&lt;P&gt;Your code actually does is no matter whether there is already a record of the ODTable attached the entity or not, it always create a new record and attach it to the entity, thus duplicated. In fact, if you run your code multiple time, there would be more records of the same ODTable to be attached to the entity.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yo need to do is, first, check if the entity already has the record attached. If yes, update the record, if not, create a new record, attach it to the entity.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Something like (not tested):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;using (Records records=theTable.GetObjectTableRecords(0, objId,OpenMode.OpenForWrite,true))&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Record rd=null;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;bool attach=false;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If (records.Count==0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rd=Record.Create();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; theTable.InitRecord(rd);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; attach=true;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rd=records[0]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Set record's field value here&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (int i=0; i&amp;lt;rd.Count; i++)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MapValue val=rd[i];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Assign value to each field as needed&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; val.Assign(.....);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (attach) theTable.AddRecord(rd, objId);&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;By the way, you do not need to start a transaction and open an DBObject/Entity. ObjectId obtained from Editor.getEntity() is enough. The ObjectData API handles Transaction internally as needed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2012 14:07:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-map-3d-developer-forum/updating-an-entity-s-object-data-table-from-form/m-p/3515980#M2034</guid>
      <dc:creator>norman.yuan</dc:creator>
      <dc:date>2012-06-26T14:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: Updating an entity's object data table from form</title>
      <link>https://forums.autodesk.com/t5/autocad-map-3d-developer-forum/updating-an-entity-s-object-data-table-from-form/m-p/3519534#M2035</link>
      <description>&lt;P&gt;Thanks for your help! Made some changes but it still duplicates the table instead of updating the existing one. I really do not need to check if the record exists because I am populating the form text fields with OD from the entity I want to update.&lt;/P&gt;&lt;P&gt;If I take the transaction out and replace&amp;nbsp;&lt;SPAN&gt;odTable.AddRecord(odRecord, dbObj) with&amp;nbsp;&lt;SPAN&gt;odTable.AddRecord(odRecord, id) it throws an error. I just starting to learn vb.net and doing a lot of cutting and pasting from snippets of other code I find on the net and learning as I go.&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Private Sub updateOD_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles updateOD.Click&lt;/P&gt;&lt;P&gt;Dim id As ObjectId&lt;/P&gt;&lt;P&gt;Dim doc As Autodesk.AutoCAD.ApplicationServices.Document = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument&lt;/P&gt;&lt;P&gt;Dim db As Database = doc.Database&lt;BR /&gt;Dim trans As Transaction = db.TransactionManager.StartTransaction()&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Dim odTable As Autodesk.Gis.Map.ObjectData.Table&lt;BR /&gt;Dim odTables As Autodesk.Gis.Map.ObjectData.Tables&lt;BR /&gt;odTables = HostMapApplicationServices.Application.ActiveProject.ODTables&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Dim ed As Autodesk.AutoCAD.EditorInput.Editor = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor&lt;/P&gt;&lt;P&gt;Using docloc As DocumentLock = doc.LockDocument&lt;BR /&gt;Dim prompt_result As PromptEntityResult = ed.GetEntity(vbCrLf + "Select the object...")&lt;/P&gt;&lt;P&gt;id = prompt_result.ObjectId&lt;BR /&gt;Dim dbObj As DBObject = trans.GetObject(id, Autodesk.AutoCAD.DatabaseServices.OpenMode.ForWrite)&lt;BR /&gt;' Dim tableName As String&lt;/P&gt;&lt;P&gt;odTable = odTables.Item("All_Parcels")&lt;BR /&gt;Dim odrecords As ObjectData.Records = odTable.GetObjectTableRecords(Convert.ToUInt32(0), id, Constants.OpenMode.OpenForWrite, True)&lt;BR /&gt;Dim odRecord As ObjectData.Record = odrecords(0)&lt;BR /&gt;Dim mapVal As Autodesk.Gis.Map.Utilities.MapValue&lt;/P&gt;&lt;P&gt;mapVal = odRecord(2)&lt;BR /&gt;mapVal.Assign(CntyN.Text)&lt;/P&gt;&lt;P&gt;mapVal = odRecord(3)&lt;BR /&gt;mapVal.Assign(OwnerName.Text)&lt;/P&gt;&lt;P&gt;mapVal = odRecord(6)&lt;BR /&gt;mapVal.Assign(Sec.Text)&lt;/P&gt;&lt;P&gt;mapVal = odRecord(7)&lt;BR /&gt;mapVal.Assign(Town.Text)&lt;/P&gt;&lt;P&gt;mapVal = odRecord(8)&lt;BR /&gt;mapVal.Assign(Range.Text)&lt;/P&gt;&lt;P&gt;mapVal = odRecord(11)&lt;BR /&gt;mapVal.Assign(Book.Text)&lt;/P&gt;&lt;P&gt;mapVal = odRecord(12)&lt;BR /&gt;mapVal.Assign(Page.Text)&lt;/P&gt;&lt;P&gt;mapVal = odRecord(13)&lt;BR /&gt;mapVal.Assign(Desc.Text)&lt;/P&gt;&lt;P&gt;odTable.AddRecord(odRecord, dbObj)&lt;/P&gt;&lt;P&gt;End Using&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jun 2012 12:52:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-map-3d-developer-forum/updating-an-entity-s-object-data-table-from-form/m-p/3519534#M2035</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-06-28T12:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: Updating an entity's object data table from form</title>
      <link>https://forums.autodesk.com/t5/autocad-map-3d-developer-forum/updating-an-entity-s-object-data-table-from-form/m-p/3520554#M2036</link>
      <description>&lt;P&gt;figured it out..replaced&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;odTable.AddRecord(odRecord, dbObj)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;with&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;odrecords.UpdateRecord(odRecord)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and now I can take out the transaction without an error&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jun 2012 21:18:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-map-3d-developer-forum/updating-an-entity-s-object-data-table-from-form/m-p/3520554#M2036</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-06-28T21:18:33Z</dc:date>
    </item>
    <item>
      <title>Re: Updating an entity's object data table from form</title>
      <link>https://forums.autodesk.com/t5/autocad-map-3d-developer-forum/updating-an-entity-s-object-data-table-from-form/m-p/3567700#M2037</link>
      <description>&lt;P&gt;Would you please mark the thread as solution by clicking&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;"Accept as Solution"&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;button? This helps everyone find answers more quickly!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2012 03:53:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-map-3d-developer-forum/updating-an-entity-s-object-data-table-from-form/m-p/3567700#M2037</guid>
      <dc:creator>Daniel.Du</dc:creator>
      <dc:date>2012-08-07T03:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: Updating an entity's object data table from form</title>
      <link>https://forums.autodesk.com/t5/autocad-map-3d-developer-forum/updating-an-entity-s-object-data-table-from-form/m-p/3567988#M2038</link>
      <description>&lt;P&gt;Here is what I used to finally get it to work&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using docloc As DocumentLock = doc.LockDocument&lt;BR /&gt;odTable = odTables.Item("All_Parcels")&lt;BR /&gt;Dim odrecords As ObjectData.Records = odTable.GetObjectTableRecords(Convert.ToUInt32(0), idEntity, Constants.OpenMode.OpenForWrite, True)&lt;BR /&gt;Dim odRecord As ObjectData.Record = odrecords(0)&lt;BR /&gt;Dim mapVal As Autodesk.Gis.Map.Utilities.MapValue&lt;/P&gt;&lt;P&gt;mapVal = odRecord(1)&lt;BR /&gt;mapVal.Assign(TractID.Text)&lt;/P&gt;&lt;P&gt;mapVal = odRecord(2)&lt;BR /&gt;mapVal.Assign(CntyN.Text)&lt;/P&gt;&lt;P&gt;mapVal = odRecord(3)&lt;BR /&gt;mapVal.Assign(StrConv(OwnerName.Text, VbStrConv.Uppercase))&lt;/P&gt;&lt;P&gt;mapVal = odRecord(6)&lt;BR /&gt;mapVal.Assign(Sec.Text)&lt;/P&gt;&lt;P&gt;mapVal = odRecord(7)&lt;BR /&gt;mapVal.Assign(Town.Text)&lt;/P&gt;&lt;P&gt;mapVal = odRecord(8)&lt;BR /&gt;mapVal.Assign(Range.Text)&lt;/P&gt;&lt;P&gt;mapVal = odRecord(11)&lt;BR /&gt;mapVal.Assign(Book.Text)&lt;/P&gt;&lt;P&gt;mapVal = odRecord(12)&lt;BR /&gt;mapVal.Assign(Page.Text)&lt;/P&gt;&lt;P&gt;mapVal = odRecord(13)&lt;BR /&gt;mapVal.Assign(Desc.Text)&lt;/P&gt;&lt;P&gt;odrecords.UpdateRecord(odRecord)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;End Using&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2012 11:51:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-map-3d-developer-forum/updating-an-entity-s-object-data-table-from-form/m-p/3567988#M2038</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-08-07T11:51:43Z</dc:date>
    </item>
  </channel>
</rss>

