1

我试图在切换 Option Strict On 后编译一些代码。但是,我在 VB6 中使用了一些 Interop 并传入了一个表单对象 ByRef,因此 Form.Caption 失败,我无法将其转换为 Form 类型,因为 VB.NET Form 没有标题属性。

如何使用 Option Strict ON 编译以下内容:

Public Sub EditFormLegacy(ByRef objForm As Object)

    objForm.Caption = objForm.Caption + " Edited"

End Sub

有没有办法为特定方法关闭选项严格?

4

2 回答 2

3

You can't turn it off for a method, but you can turn if off for a form or class. Just put "option strict off" at the top of the form. Per MSDN - "If used, the Option Strict statement must appear in a file before any other source code statements." HTH

于 2011-06-16T08:39:13.683 回答
0

真的想保留 Strict 选项,所以我想您应该尝试一种解决方法。例如,获取表单(带有标题)以将其标题存储在单独的字符串中,可以通过在表单中​​加载新类来调用。

于 2011-06-16T09:56:16.390 回答