Is it possible to create an instance of a class in VB 5 CCE from a string containing the class's definition?

Um... I'm actually using VB 5 CCE because I'm too cheap to get a version that costs money. Can someone tell me how to implement it that way?

TYVM to whoever answers this!!!!!

NVM... I'm downloading VS 2008 Express...

link|improve this question
2  
Boy, haven't heard about CCE for a long time :). You do know that nowadays we have Visual Studio Express Edition that is free and allow you to do a lot more in .NET framework, right? – Jimmy Chandra Jul 20 '09 at 17:20
feedback

3 Answers

Dim obj As Object
Set obj = CreateObject("ClassName")
link|improve this answer
feedback

If you mean something like given a string with the following value: "Public Class Foo:Public Sub Bar():End Sub:End Class" and you want something like Dim the class = Eval(theString) and do something with your new class, see this.

They do it by extending it in VBScript.

link|improve this answer
feedback

Yes, look at System.Reflection.Assembly.CreateInstance()

link|improve this answer
-1, he's using vb5 – Chris McCall Jul 20 '09 at 19:43
Frig, so I get -1 because he didn't include that information the first time? Frig... – Matt Grande Jul 20 '09 at 20:50
Next time, instead of complaining in the comments, edit your answer so I can change my vote. – Chris McCall Jul 20 '09 at 21:57
feedback

Your Answer

 
or
required, but never shown

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