Classic Asp Development: COM, how to use?

1

I would like an explanation regarding COM components, what exactly are they? How to use them? From what I understand they are a kind of library that stays on the server where you associate with your project.

I'm working with maintenance and code creation in classic ASP using VBScript, I would like to know a more efficient way of working with technology than copying code already made from other systems to make a new one. My intention is to create (classes or components, I can not say what I need to be sure) so that the creation and new functionalities or systems will be more agile reusing the codes already made.

    
asked by anonymous 06.01.2017 / 14:25

1 answer

-2

Examples:

Interoperability with COM components

Using COM components already exist

Creating components COM

Step-by-step creating a component in VB

Creating an ActiveX Control (COM)

COM: Microsoft Component Object Model (COM) technology allows software components to communicate. COM is used by developers to create reusable software components, join components to build applications, and take advantage of Windows services.

COM objects can be created with a variety of programming languages. Object-oriented languages, such as C, provide programming mechanisms that simplify the implementation of COM objects. The COM technologies family includes COM, Distributed COM (DCOM) and ActiveX® controls.

More about: link

    
06.01.2017 / 19:14