真的不知道还需要写些什么,因为该提醒的都已经提醒了,剩下的就是你把所提醒的东西改上去:- Sub InsDwg()
- Dim InsetPoint(0 To 2) As Double
- Dim ImporFile As String
- InsetPoint(0) = 0: InsetPoint(1) = 0: InsetPoint(2) = 0
- ImporFile = "d:\123.dwg"
- ThisDrawing.ModelSpace.InsertBlock InsetPoint, ImporFile, 1, 1, 0
- ThisDrawing.Application.Update
- End Sub
|