View Single Post
Old 02-12-2004, 09:05 AM   #1 (permalink)
TwoToTango
Psycho
 
vb.net class constructor question

Anybody know a way to instantiate a
class in vb.net given the class name as
a string?

For example:

objectIWant = "FoobarClass"
Dim fb as New magicGoesHere(objectIWant)

I've been scratching through MSDN all morning
without turning up anything.

Thanks in advance.

Last edited by TwoToTango; 02-12-2004 at 10:22 AM..
TwoToTango is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46