VB6 复制数组 AutoCAD

发布于 2024-12-09 14:03:52 字数 417 浏览 0 评论 0原文

我正在将 VBA AutoCAD 脚本传输到 VB.NET,但遇到警告。 VB.net 2010 警告我此代码已过时,并且可能无法在 64 位上运行。

由于我们的 vba 文件和 AutoCAD 2012 & AutoCAD 2012 存在问题,该程序需要兼容 64 位。 Windows 7 X64。我需要使用什么来代替 VB6.CopyArray?

If Flipline = True Then
        P1 = VB6.CopyArray(Endpoint)
        P2 = VB6.CopyArray(Beginpoint)
    Else
        P1 = VB6.CopyArray(Beginpoint)
        P2 = VB6.CopyArray(Endpoint)
    End If

I'm in the process of transfering our VBA AutoCAD script to VB.NET but i came across a warning. VB.net 2010 give me a warning that this code is obsolute, and probally won't work with 64 bit.

The program needs to be 64 compatibel because of the problems with our vba file and AutoCAD 2012 & Windows 7 X64. What do i need to use instead of VB6.CopyArray?

If Flipline = True Then
        P1 = VB6.CopyArray(Endpoint)
        P2 = VB6.CopyArray(Beginpoint)
    Else
        P1 = VB6.CopyArray(Beginpoint)
        P2 = VB6.CopyArray(Endpoint)
    End If

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

长梦不多时 2024-12-16 14:03:52

根据 MSDN 文档 Support.CopyArray< /a>:

Visual Basic 2010 不再支持 Visual Basic 6.0 Variant 数据类型。升级工具使用 CopyArray 函数将数组复制到 Variant 数组或从 Variant 数组复制数据。

要在 Visual Basic 2010 中复制数组,请使用 Array 类的 Clone、Copy 或 CopyTo 方法。

Array.Clone 文档

如果端点 是一个数组,那么:

P1 = Endpoint.Clone()

According to MSDN documentation for Support.CopyArray:

The Visual Basic 6.0 Variant data type is no longer supported in Visual Basic 2010. The CopyArray function is used by the upgrade tools to copy an Array to or from a Variant array.

To copy an array in Visual Basic 2010, use the Clone, Copy or CopyTo methods of the Array class.

Array.Clone Documentation

If Endpoint is an array, then:

P1 = Endpoint.Clone()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文