<?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 batch xref bind vb.net in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986263#M21466</link>
    <description>&lt;P&gt;i tried to batch bind xrefs but getting "invalid input error"&lt;/P&gt;&lt;P&gt;could any one please help me please:&lt;/P&gt;&lt;PRE&gt;Namespace FormVB
    Public Class RunApp
        &amp;lt;autodesk.autocad.runtime.commandmethod("bxb", autodesk.autocad.runtime.commandflags.session)=""&amp;gt;
        Public Shared Sub InitForm()
            Dim frm As New BatchXrefBind
            Dim ed As Editor = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor
              Dim result As DialogResult = Autodesk.AutoCAD.ApplicationServices.Application.ShowModalDialog(frm)

        End Sub
    End Class
End Namespace


Public Class BatchXrefBind
    Private Sub button_Publish_Click(sender As Object, e As EventArgs) Handles button_Publish.Click

        
        Dim ed As Editor = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor
                Dim openFile1 As OpenFileDialog = New OpenFileDialog()

               openFile1.InitialDirectory = "C\"
        openFile1.Filter = "Drawing Files|*.dwg"
        openFile1.Multiselect = True

                If openFile1.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
            If openFile1.FileNames.Length &amp;gt; 0 Then
                Dim strFile As String
                For Each strFile In openFile1.FileNames

 Using db As Database = New Database(False, True)
                        db.ReadDwgFile(strFile, FileOpenMode.OpenForReadAndAllShare, False, Nothing)

 Dim bTransMan As DatabaseServices.TransactionManager
                        Dim bTrans As DatabaseServices.Transaction
                        Dim bDwg As Document
                        Dim bBT As BlockTable
                        Dim bBTR As SymbolTableRecord
                        Dim bBTE As SymbolTableEnumerator
                        Dim bBTRr As BlockTableRecord

                       
                        bDwg = Application.DocumentManager.MdiActiveDocument
                        bTransMan = bDwg.TransactionManager

                        bTrans = bTransMan.StartTransaction
                        Try
                            
                            bBT = bDwg.Database.BlockTableId.GetObject(OpenMode.ForRead)
                            bBTE = bBT.GetEnumerator

                            Dim XrefIds As New ObjectIdCollection

                            While bBTE.MoveNext = True
                                bBTR = bBTE.Current.GetObject(OpenMode.ForRead)

                                bBTRr = CType(bBTR, BlockTableRecord)

                                
                                If bBTRr.IsFromExternalReference And bBTRr.IsResolved Then
                                    XrefIds.Add(bBTR.Id)
                                End If

                            End While

                            
                            Try
                                bDwg.Database.BindXrefs(XrefIds, False)
                            Catch ex As Exception
                                MsgBox("Error: " &amp;amp; ex.Message)
                            End Try

                             bTrans.Commit()
                            

                        Catch ex As Exception
                            MsgBox(ex.Message, MsgBoxStyle.Critical)
                        Finally
                            bTrans.Dispose()
                            bTransMan.Dispose()
                        End Try


                        db.SaveAs(db.OriginalFileName, True, db.OriginalFileVersion, db.SecurityParameters)

                    End Using
                Next
            End If
        End If

 End Sub


&amp;lt;/autodesk.autocad.runtime.commandmethod("bxb",&amp;gt;&lt;/PRE&gt;</description>
    <pubDate>Sun, 25 Aug 2019 16:53:32 GMT</pubDate>
    <dc:creator>yoitsarun</dc:creator>
    <dc:date>2019-08-25T16:53:32Z</dc:date>
    <item>
      <title>batch xref bind vb.net</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986263#M21466</link>
      <description>&lt;P&gt;i tried to batch bind xrefs but getting "invalid input error"&lt;/P&gt;&lt;P&gt;could any one please help me please:&lt;/P&gt;&lt;PRE&gt;Namespace FormVB
    Public Class RunApp
        &amp;lt;autodesk.autocad.runtime.commandmethod("bxb", autodesk.autocad.runtime.commandflags.session)=""&amp;gt;
        Public Shared Sub InitForm()
            Dim frm As New BatchXrefBind
            Dim ed As Editor = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor
              Dim result As DialogResult = Autodesk.AutoCAD.ApplicationServices.Application.ShowModalDialog(frm)

        End Sub
    End Class
End Namespace


Public Class BatchXrefBind
    Private Sub button_Publish_Click(sender As Object, e As EventArgs) Handles button_Publish.Click

        
        Dim ed As Editor = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor
                Dim openFile1 As OpenFileDialog = New OpenFileDialog()

               openFile1.InitialDirectory = "C\"
        openFile1.Filter = "Drawing Files|*.dwg"
        openFile1.Multiselect = True

                If openFile1.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
            If openFile1.FileNames.Length &amp;gt; 0 Then
                Dim strFile As String
                For Each strFile In openFile1.FileNames

 Using db As Database = New Database(False, True)
                        db.ReadDwgFile(strFile, FileOpenMode.OpenForReadAndAllShare, False, Nothing)

 Dim bTransMan As DatabaseServices.TransactionManager
                        Dim bTrans As DatabaseServices.Transaction
                        Dim bDwg As Document
                        Dim bBT As BlockTable
                        Dim bBTR As SymbolTableRecord
                        Dim bBTE As SymbolTableEnumerator
                        Dim bBTRr As BlockTableRecord

                       
                        bDwg = Application.DocumentManager.MdiActiveDocument
                        bTransMan = bDwg.TransactionManager

                        bTrans = bTransMan.StartTransaction
                        Try
                            
                            bBT = bDwg.Database.BlockTableId.GetObject(OpenMode.ForRead)
                            bBTE = bBT.GetEnumerator

                            Dim XrefIds As New ObjectIdCollection

                            While bBTE.MoveNext = True
                                bBTR = bBTE.Current.GetObject(OpenMode.ForRead)

                                bBTRr = CType(bBTR, BlockTableRecord)

                                
                                If bBTRr.IsFromExternalReference And bBTRr.IsResolved Then
                                    XrefIds.Add(bBTR.Id)
                                End If

                            End While

                            
                            Try
                                bDwg.Database.BindXrefs(XrefIds, False)
                            Catch ex As Exception
                                MsgBox("Error: " &amp;amp; ex.Message)
                            End Try

                             bTrans.Commit()
                            

                        Catch ex As Exception
                            MsgBox(ex.Message, MsgBoxStyle.Critical)
                        Finally
                            bTrans.Dispose()
                            bTransMan.Dispose()
                        End Try


                        db.SaveAs(db.OriginalFileName, True, db.OriginalFileVersion, db.SecurityParameters)

                    End Using
                Next
            End If
        End If

 End Sub


&amp;lt;/autodesk.autocad.runtime.commandmethod("bxb",&amp;gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 25 Aug 2019 16:53:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986263#M21466</guid>
      <dc:creator>yoitsarun</dc:creator>
      <dc:date>2019-08-25T16:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: batch xref bind vb.net</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986313#M21467</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not very cumfortable with VB but this line hurts me:&lt;/P&gt;
&lt;PRE&gt;openFile1.InitialDirectory = "C\"&lt;/PRE&gt;
&lt;P&gt;If this is not the source of the error, could you say which line throws the "invalid input error" error.&lt;/P&gt;</description>
      <pubDate>Sun, 25 Aug 2019 17:47:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986313#M21467</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2019-08-25T17:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: batch xref bind vb.net</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986326#M21468</link>
      <description>&lt;P&gt;error message is from here:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Try&lt;BR /&gt;     bDwg.Database.BindXrefs(XrefIds, False)
     Catch ex As Exception
     &lt;STRONG&gt;MsgBox("Error: " &amp;amp; ex.Message)&lt;/STRONG&gt;
End Try&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 25 Aug 2019 18:09:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986326#M21468</guid>
      <dc:creator>yoitsarun</dc:creator>
      <dc:date>2019-08-25T18:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: batch xref bind vb.net</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986331#M21469</link>
      <description>&lt;P&gt;one more thing this code is working if i run individually (not as batch).&lt;/P&gt;</description>
      <pubDate>Sun, 25 Aug 2019 18:13:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986331#M21469</guid>
      <dc:creator>yoitsarun</dc:creator>
      <dc:date>2019-08-25T18:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: batch xref bind vb.net</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986345#M21470</link>
      <description>&lt;P&gt;To know the line the error occured, you can try replacing the Catch block with this:&lt;/P&gt;
&lt;PRE&gt;Try&lt;BR /&gt;     bDwg.Database.BindXrefs(XrefIds, False)
     Catch ex As Exception
     &lt;STRONG&gt;MsgBox("Error: " &amp;amp; ex.Message &amp;amp; vbCr &amp;amp; ex.StackTrace)&lt;/STRONG&gt;
End Try&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 25 Aug 2019 18:32:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986345#M21470</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2019-08-25T18:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: batch xref bind vb.net</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986356#M21471</link>
      <description>&lt;P&gt;error is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 572px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/670578i24D40B938DE2FAB8/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 25 Aug 2019 18:48:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986356#M21471</guid>
      <dc:creator>yoitsarun</dc:creator>
      <dc:date>2019-08-25T18:48:01Z</dc:date>
    </item>
    <item>
      <title>Re: batch xref bind vb.net</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986362#M21472</link>
      <description>&lt;P&gt;The error is due to line 183 in the file BatchXrefBind.vb.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="error.png" style="width: 572px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/670580iA41EAEDFB125EB88/image-size/large?v=v2&amp;amp;px=999" role="button" title="error.png" alt="error.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 25 Aug 2019 18:53:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986362#M21472</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2019-08-25T18:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: batch xref bind vb.net</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986364#M21473</link>
      <description>&lt;P&gt;yes, but i dont know what is the error in this code&lt;/P&gt;&lt;PRE&gt;bDwg.Database.BindXrefs(XrefIds, False)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 25 Aug 2019 18:55:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986364#M21473</guid>
      <dc:creator>yoitsarun</dc:creator>
      <dc:date>2019-08-25T18:55:18Z</dc:date>
    </item>
    <item>
      <title>Re: batch xref bind vb.net</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986446#M21474</link>
      <description>&lt;P&gt;The error is probably due the the contents of XrefIds.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Pay attention to what's said i the documentation for the &lt;A href="https://help.autodesk.com/view/OARX/2019/ENU/?guid=OREFNET-Autodesk_AutoCAD_DatabaseServices_Database_BindXrefs_ObjectIdCollection__MarshalAsUnmanagedType_U1__bool" target="_blank" rel="noopener"&gt;BindXrefs method&lt;/A&gt;:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;"The object IDs in &lt;SPAN class="Element146"&gt;xrefIds&lt;/SPAN&gt; must all be from the database and they must all be resolved."&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It seems to me bDwg is the active document (i.e. the document where the command was launched) and XrefIds contains objectIds from the opened in memory database.&lt;/P&gt;</description>
      <pubDate>Sun, 25 Aug 2019 21:08:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986446#M21474</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2019-08-25T21:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: batch xref bind vb.net</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986743#M21475</link>
      <description>&lt;P&gt;something wrong in active document ?&lt;/P&gt;&lt;P&gt;I am new to this, but I did xref bind program in editor using same code and it works.&lt;/P&gt;&lt;P&gt;How it will work in memory database, if you know something please help me.&lt;/P&gt;&lt;P&gt;If you are in familiar in c# it is ok. I can convert.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Aug 2019 05:12:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986743#M21475</guid>
      <dc:creator>yoitsarun</dc:creator>
      <dc:date>2019-08-26T05:12:50Z</dc:date>
    </item>
    <item>
      <title>Re: batch xref bind vb.net</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986765#M21476</link>
      <description>&lt;P&gt;"&lt;STRONG&gt;The object IDs in &lt;SPAN class="Element146"&gt;xrefIds&lt;/SPAN&gt; must all be from the database&lt;/STRONG&gt;" i.e., the database you create 'in memory' (db).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try:&lt;/P&gt;
&lt;PRE&gt;db.BindXrefs(XrefIds, False)&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Aug 2019 05:34:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986765#M21476</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2019-08-26T05:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: batch xref bind vb.net</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986776#M21477</link>
      <description>&lt;P&gt;I tried this, but no luck, same "error: invalid input"&lt;/P&gt;</description>
      <pubDate>Mon, 26 Aug 2019 05:47:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986776#M21477</guid>
      <dc:creator>yoitsarun</dc:creator>
      <dc:date>2019-08-26T05:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: batch xref bind vb.net</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986852#M21478</link>
      <description>&lt;P&gt;Try like this (not tested)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;using System.Windows.Forms;

using Autodesk.AutoCAD.DatabaseServices;
using Autodesk.AutoCAD.Runtime;

using AcCoreAp = Autodesk.AutoCAD.ApplicationServices.Core.Application;

namespace BindXrefsSample
{
    public class Commands
    {
        [CommandMethod("TEST1")]
        public static void BindXrefsInCurrentDrawing()
        {
            BindXrefs(HostApplicationServices.WorkingDatabase);
        }

        [CommandMethod("TEST2")]
        public static void BindXrefsInDwgFiles()
        {
            var ofd = new OpenFileDialog{
                InitialDirectory = "C:\\",
                Filter = "Drawing files|*.dwg",
                Multiselect = true};
            if (ofd.ShowDialog() == DialogResult.OK)
            {
                foreach (string fileName in ofd.FileNames)
                {
                    using (var db = new Database(false, true))
                    {
                        db.ReadDwgFile(fileName, FileOpenMode.OpenForReadAndAllShare, false, null);
                        BindXrefs(db);
                        db.SaveAs(fileName, true, db.OriginalFileVersion, db.SecurityParameters);
                    }
                }
            }
        }

        private static void BindXrefs(Database db)
        {
            try
            {
                var xrefIds = new ObjectIdCollection();
                using (var tr = new OpenCloseTransaction())
                {
                    var bt = (BlockTable)tr.GetObject(db.BlockTableId, OpenMode.ForRead);
                    foreach (ObjectId id in bt)
                    {
                        var btr = (BlockTableRecord)tr.GetObject(id, OpenMode.ForRead);
                        if (btr.IsFromExternalReference &amp;amp;&amp;amp; btr.IsResolved)
                            xrefIds.Add(id);
                    }
                }
                db.BindXrefs(xrefIds, false);
            }
            catch (System.Exception ex)
            {
                AcCoreAp.ShowAlertDialog("Error: " + ex.Message);
            }
        }
    }
}
&lt;/PRE&gt;</description>
      <pubDate>Mon, 26 Aug 2019 06:47:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986852#M21478</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2019-08-26T06:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: batch xref bind vb.net</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986940#M21479</link>
      <description>&lt;P&gt;This version of the BindXrefs() method resolves the xrefs in the database before binding them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;        private static void BindXrefs(Database db)
        {
            var workingDb = HostApplicationServices.WorkingDatabase;
            HostApplicationServices.WorkingDatabase = db;
            try
            {
                db.ResolveXrefs(true, false);
                var xrefIds = new ObjectIdCollection();
                using (var tr = new OpenCloseTransaction())
                {
                    var bt = (BlockTable)tr.GetObject(db.BlockTableId, OpenMode.ForRead);
                    foreach (ObjectId id in bt)
                    {
                        var btr = (BlockTableRecord)tr.GetObject(id, OpenMode.ForRead);
                        if (btr.IsFromExternalReference &amp;amp;&amp;amp; btr.IsResolved)
                            xrefIds.Add(id);
                    }
                }
                db.BindXrefs(xrefIds, false);
            }
            catch (System.Exception ex)
            {
                AcCoreAp.ShowAlertDialog("Error: " + ex.Message);
            }
            finally
            {
                HostApplicationServices.WorkingDatabase = workingDb;
            }
        }&lt;/PRE&gt;</description>
      <pubDate>Mon, 26 Aug 2019 07:44:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986940#M21479</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2019-08-26T07:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: batch xref bind vb.net</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986994#M21480</link>
      <description>&lt;P&gt;thanks a lot,&lt;/P&gt;&lt;P&gt;I will try this in the evening , and will update the results. thanks _gile&lt;SPAN class="UserName lia-user-name lia-user-rank-Employee lia-component-message-view-widget-author-username" style="box-sizing: border-box; white-space: nowrap;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Aug 2019 08:19:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8986994#M21480</guid>
      <dc:creator>yoitsarun</dc:creator>
      <dc:date>2019-08-26T08:19:57Z</dc:date>
    </item>
    <item>
      <title>Re: batch xref bind vb.net</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8987724#M21481</link>
      <description>&lt;P&gt;and it is working thanks gile&lt;/P&gt;</description>
      <pubDate>Mon, 26 Aug 2019 14:02:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-xref-bind-vb-net/m-p/8987724#M21481</guid>
      <dc:creator>yoitsarun</dc:creator>
      <dc:date>2019-08-26T14:02:08Z</dc:date>
    </item>
  </channel>
</rss>

