.NET
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Insert Block Not Working

4 REPLIES 4
Reply
Message 1 of 5
jamkhp
521 Views, 4 Replies

Insert Block Not Working

Hi all,

Here is my code to insert the Block in the Currently opened Drawing, it used to work well, when I was using Express version of VB, now i am using VB studio professional, and I am facing this error  !dbinsert834@ eNotdatabase,

 i get the error in line in red

please help me.

 

 

Public Sub InsertDrawing(ByVal dwgName As String, ByVal insPt As AcGe1.Point3d, ByVal s3d As AcGe1.Scale3d, ByVal rot As Double)
        Dim blkName As String = Path.GetFileNameWithoutExtension(dwgName)
        Using db As Database = AcDb1.HostApplicationServices.WorkingDatabase()
            Using tr As Transaction = db.TransactionManager.StartTransaction
                Try
                    Dim id As ObjectId = Nothing
                    Using bt As BlockTable = tr.GetObject(db.BlockTableId, OpenMode.ForRead, True)
                        If Not bt.Has(blkName) Then
                            Using sourceDb As Database = New Autodesk.AutoCAD.DatabaseServices.Database(False, True)
                                sourceDb.ReadDwgFile(dwgName, FileOpenMode.OpenForReadAndAllShare, True, "")
                                id = db.Insert(dwgName, sourceDb, False)
                                Dim blk As BlockTableRecord = tr.GetObject(id, OpenMode.ForWrite, False, True)
                                blk.Name = blkName
                            End Using
                        Else
                            id = bt.Item(blkName)
                        End If
                    End Using
                    Dim btr As BlockTableRecord = tr.GetObject(db.CurrentSpaceId, OpenMode.ForWrite, True)
                    Dim bref As BlockReference = New BlockReference(insPt, id)
                    bref.ScaleFactors = s3d
                    bref.Rotation = rot
                    Dim ObjColl As DBObjectCollection = New DBObjectCollection()
                    bref.Explode(ObjColl)
                    For Each acEnt As Entity In ObjColl
                        btr.AppendEntity(acEnt)
                        tr.AddNewlyCreatedDBObject(acEnt, True)
                    Next

                    PurgeBlockMethod(blkName)
                    bref.Dispose()
                    btr.Dispose()
                    tr.Commit()
                Catch ex As Autodesk.AutoCAD.Runtime.Exception
                    MessageBox.Show(ex.StackTrace)
                Finally
                    'PlineExplode()
                End Try
            End Using
        End Using
    End Sub

4 REPLIES 4
Message 2 of 5
hgasty1001
in reply to: jamkhp

Hi,

 

My guess is that the blkname it's not a valid block name, because it has "\" in the name. try getting just the blockname from dwgname without the file path in it.

 

Gaston Nunez

Message 3 of 5
jamkhp
in reply to: jamkhp

Everything looks fine.,  but still I cant figure this out,

please help me

 

Message 4 of 5
augusto.goncalves
in reply to: jamkhp

This should not change because the VB version, maybe between AutoCAD versions or the file permission.

 

Can you quick try the last parameter as TRUE? Use as FALSE is not a easy way, check out the help file.

Regards,



Augusto Goncalves
Twitter @augustomaia
Autodesk Developer Network
Message 5 of 5
cincir
in reply to: jamkhp

Dim id As ObjectId = Nothing is it true in VB.NET. because in C# ObjectId is a struct thus a ValueType descendant so must be initialized like

ObjectId id = ObjectId.Null;

 i am just asking because i am not very good at VB.NET.

 

and did you try the overload of ReadDwgFile like this

dbSource.ReadDwgFile(szFileName,FileShare.Read,true,string.Empty);

 


Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk DevCon in Munich May 28-29th


Autodesk Design & Make Report

”Boost