lihezhou 发表于 2015-1-13 19:34:18

大家帮我看看VB.net的这个问题。Object类型的问题!

      Dim Sset As AcadSelectionSet-----这里可以改成Object
      With Thisdrawing.SelectionSets
            If Not (IsDBNull(.Item("this"))) Then
                Sset = .Item("this")
                Sset.Delete()
            End If
            Sset = .Add("this")
            If Err.Number <> 0 Then Err.Clear()
      End With
................................
      Dim Ent(0) As AcadEntity-----这里用AcadEntity的时候是正常的,但是改成Object时下面的 Sset.AddItems(Ent)就出错是怎么回事?
      Ent(0) =......
      Sset.AddItems(Ent)

wxgmwtech 发表于 2015-2-24 05:23:49

不是所有Object都有AddItems方法,这个恐怕只能用早绑定。

雪山飞狐_lzh 发表于 2015-3-9 11:08:03

Dim Ent(0) As IDispatch
页: [1]
查看完整版本: 大家帮我看看VB.net的这个问题。Object类型的问题!