明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1126|回复: 1

[基础] 谁来帮我看看这段代码出了什么问题!!

[复制链接]
发表于 2014-2-12 20:46:54 | 显示全部楼层 |阅读模式
Public Class Form1

    Dim AutoCADApp As Object
    Dim Thisdrawing As Object
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        If AutoCADApp Is Nothing Then
            If Err.Number <> 0 Then Err.Clear()
            AutoCADApp = GetObject(, "AutoCAD.Application")
            If Err.Number <> 0 Then
                Err.Clear()
                Exit Sub
            End If
        Else
            Thisdrawing = AutoCADApp.ActiveDocument()
            '创建组
            '**************************************************************************
            Dim ObjGroup As Object
            Dim Objentity() As Object
            Dim InserMText As Object
            ObjGroup = Thisdrawing.Groups.Add("*")
            ReDim Objentity(0 To 3)
            '**************************************************************************
            Dim pt(0 To 2) As Double
            With Thisdrawing.ModelSpace
                For i = 0 To 3
                    pt(0) = 1 : pt(1) = 2 * i : pt(2) = 0
                    InserMText = .AddText(i, pt, 1)
                    Objentity(i) = InserMText
                Next
                ObjGroup.AppendItems(Objentity)
            End With
        End If
    End Sub

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        AutoCADApp = GetObject(, "AutoCAD.Application")
        If Err.Number <> 0 Then
            Err.Clear()
            Exit Sub
        End If
    End Sub
End Class
运行到这句话就报警ObjGroup.AppendItems(Objentity)
 楼主| 发表于 2014-2-12 20:48:48 | 显示全部楼层

我觉得我很不了解VB.net的object对象!!谁能深入讲解一下吗?

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

x
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-25 15:48 , Processed in 0.161249 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表