PDA

Click to See Complete Forum and Search --> : Guru One - Com & Asp


alex_read
Feb 2nd, 2001, 06:51 AM
Ok, I'm realy getting the hang of this COM stuff, my question:

How can I reference this object (dll) in???
In vb, ok project menu > references,

In a web page or Html or asp file though, how is this done ?

Thank you!

Clunietp
Feb 2nd, 2001, 10:05 AM
Server.CreateObject("ProjectName.ClassName")

There is no early binding in VBScript for external objects, everything is late bound, so you can only reference objects this way