I'm trying to call this code in VB.NET with "option strict on":
Dim application As word.Application = New word.Application
application.WordBasic.DisableAutoMacros(1)
The WordBasic object is dynamic, there is no type library available.
Now the compiler will complain, because late binding is not allowed.
Is there a workaround?