VB6 复制数组 AutoCAD
我正在将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 MSDN 文档 Support.CopyArray< /a>:
Array.Clone 文档
如果
端点 是一个数组,那么:
According to MSDN documentation for Support.CopyArray:
Array.Clone Documentation
If
Endpoint
is an array, then: