Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on a school project which need to be done in Visual Basic. For this I'm porting one of my Python project in this programming language, project which (in Python) is scanning a directory for .py files and then imports them (dynamically) with the __import__ statement, at runtime. It is possible to do this in Visual Basic with .DLL classes?

Thank you

share|improve this question
Which VB6 or VB.net? – Deanna May 3 '12 at 12:39
VB.net (need some words to write here, heh) – ov1d1u May 3 '12 at 13:17

1 Answer

up vote 1 down vote accepted

You can load assemblies dynamically using Assembly.LoadFrom(fileName) and then get the assembly information, enumerate the types, create instance of those types, etc. The details depend on what exactly you want this DLLs for.

When you have the Type for the object you want to create, you can use code similar to this that uses Activator.CreateInstance() method.

You can find some (C#) samples in one of my projects: http://code.earlsoft.co.uk/hg/builderpro/file/41046067e90e/Library/Extensions/Extension.cs http://code.earlsoft.co.uk/hg/builderpro/file/41046067e90e/Library/ActionInfo/ActionInfo.cs

share|improve this answer
So, if I have a class "DummyPlugin" in DLL, how I create an instance of it in my Main Application? Sorry if this it's a dumb question, but I'm very newbie in VB.Net and all this Microsoft stuff... – ov1d1u May 3 '12 at 15:29
I've added a bit on calling Activator.CreateInstance. – Deanna May 3 '12 at 16:15
If this answer helped solve your problem, can you accept the answer by clicking the green tick to the left of the post. If it didn't, can you provide more information on what you're trying to do and how the suggestion didn't work. – Deanna May 14 '12 at 8:24
Oh, sorry :) Yout information was helpful, leading me to find the solution for my question. Currently I'm on Linux, but I'll post more details after I'll continue working on this project. Anyway, thank you a lot! – ov1d1u May 14 '12 at 18:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.