Since the main application is in vbscript and it's uncomfortable to work with to do some things, I have to make something to be called from that app, so I've been asked to develop a dll to be used in an old vbscript IDE application.
I'm new to this kind of development... But I think I should create a COM Object. The thing is that not only I've never created a COM Object, but also... even when I've found this without much digging, it doesn't speak much of how to create them in VS2012 (My only IDE)
The question(s) is(are):
- Is COM object the solution I'm looking for? (maybe it's something else, what you do to develop an object to be used in vbscript)
- Is
System.ComponentModel.Component
andCOM Object
the same? - How do I do it in VS2012?
- Which are the steps I have to make (besides those you do when creating a simple console app) that I should remember to do to make it work properly?
TIA!