如何将 CanPropertyChange(“Text”) 从 VB6 迁移到 VB.NET?
我想将 ActiveX 控件从 VB6 升级到 VB.NET。我在升级此代码时遇到问题:
If CanPropertyChange("Text") Then
Text1.Text = Value
RaiseEvent TextChange()
End If
收到错误:“Name 'CanPropertyChange' 未声明。”
I want to upgrade an ActiveX control from VB6 to VB.NET. I'm having trouble upgrading this code:
If CanPropertyChange("Text") Then
Text1.Text = Value
RaiseEvent TextChange()
End If
I get the error: "Name 'CanPropertyChange' is not declared."
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
VB.Net 不支持类似于 CanPropertyChange("Text") 方法的任何内容。解决此问题的最简单方法是在 Try...Catch 块内进行分配。
如果无法写入该属性,将引发异常,您可以在 Catch 块中访问该异常。
VB.Net does not support anything similar to the CanPropertyChange("Text") method. The easiest way around this is to do the assignment within a Try...Catch block.
If the property cannot be written to an exception will be thrown which you can access in the Catch block.