Is there a way to get Visual Studio to provide intellisense for late objects in classic ASP?
I am working on a Classic ASP project (with VB Script) where I create an object from an ActiveX control, for example:
Dim objHelper
Set objHelper = Server.CreateObject("HelperLib.HelperObj")
Visual Studio 2005 provides intellisense for the first "layer" of properties and methods, but it doesn't seem like properties and methods are members of the underlying objects. For instance:
objHelper. 'Properties and methods show up after the period '
objHelper.FirstProperty. 'No properties and methods are shown after the period'
Is there a way to "help" Visual Studio somehow see these types of objects so that I can work in a more strongly typed environment?
+2
a source to share