Is there a way to get Visual Studio to provide intellisense for late-bound objects in classic ASP? -


I am working on a classic ASP (VB script) project where I get an object with an ActiveX control so: Set objHelper objHelper = Server.CreateObject ("HelperLib.HelperObj")

Intellisense provides for "Layer" before Visual Studio 2005 Properties and methods, but it does not appear to be the qualities and methods which are members of the main objects, for example:

Is there any way to "help" any visual studio to see these object types, so that I am more Strongly-typed environment?

Unfortunately, 2005 does not do this. 2008 does its best job, though once you install SP1, this is it.


Comments