• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    .NET

    Reply
    Contributor
    Posts: 17
    Registered: ‎04-10-2009

    cao.dbconnect, read labels from xref

    174 Views, 2 Replies
    02-02-2012 04:09 AM

    Hi everybody...

    I'm trying to read and update labels from Xrefs.

    The meaning of it is to Reload all Labels in the Xrefs before I plot any Layout.

    Autocad is working in SingleDrawing mode.

    What do I have to do to bring xDB and dbConn together so I can "read/reload" the Labels?

    

    Here is a snippet of my code (which doesn't work as expected) :smileysad:

    Thank you for any kind of help.

    (System: Win 7 64bit, Autocad 2012 64bit, VB express 2010)

     

    Dim xDB As New Database(False, False)

    xDB.ReadDwgFile(filename, FileOpenMode.OpenForReadAndAllShare, False, "")

               

    Dim acApp As Autodesk.AutoCAD.Interop.AcadApplication = DirectCast(Application.AcadApplication, Autodesk.AutoCAD.Interop.AcadApplication)

    Dim acDoc As Autodesk.AutoCAD.Interop.AcadDocument = Application.DocumentManager.GetDocument(xDB).AcadDocument

               

    Dim dbConn As CAO.DbConnect = acApp.GetInterfaceObject("CAO.DBConnect.16")

               

    Dim lbls As CAO.LabelTemplates = dbConn.GetLabelTemplates()

               

    Dim lnks As CAO.LinkTemplates = dbConn.GetLinkTemplates()

    

    Please use plain text.
    ADN Support Specialist
    Posts: 150
    Registered: ‎04-30-2009

    Re: cao.dbconnect, read labels from xref

    02-02-2012 05:12 AM in reply to: mendesva

    What is the problem you are facing? Usually when creating Database to ReadDwgFile we use

     

    Dim xDB As New Database(False, True)

     

    Can you try that?

    Regards,



    Augusto Goncalves
    Autodesk Developer Network
    Please use plain text.
    Contributor
    Posts: 17
    Registered: ‎04-10-2009

    Re: cao.dbconnect, read labels from xref

    02-02-2012 05:42 AM in reply to: augusto.goncalves

    Thank you for your reply Augusto,

    I tried both: Database(False, False) and Database(False, True)

     

    I don't know where exactly the problem is. All I know is that this two lines of code don't bring any result.

    Dim lbls As CAO.LabelTemplates = dbConn.GetLabelTemplates()

    Dim lnks As CAO.LinkTemplates = dbConn.GetLinkTemplates()

    lbls ans lkns are empty!

    So I guess dbConn.GetLabelTemplates() doesn't read from acDoc.

    What do I have to do/change so lbls and lnks represent the labels and links in my Xref?

    Thanks

     

    Please use plain text.