我们为多年的开发做出了巨大努力来制作我们的VBcode Strict On
。这是有效的,我们试图坚持这一点。但是现在我们将其与作为dll
的外部COM object
集成。而且我们不能再保持选项严格了,有什么方法可以吗?
代码:
Option Strict On
Public COMOBJECT As Object 'define variable as Object
COMOBJECT = CreateObject(CLSID) 'dispatch COM server
COMOBJECT.OpenFile 'do whatever dll registered as com exposes
COMOBJECT.SaveFile 'it all works with Option Strint Off
COMOBJECT.dowhatever 'but not with Strict On
错误:Option Strict On禁止后期绑定。
有没有办法可以保持选项严格