G Guest Mar 22, 2006 #1 Tell me guys how to instantiate a class at runtime given the assembly DLL file and the class name ? Thanx in advance ..
Tell me guys how to instantiate a class at runtime given the assembly DLL file and the class name ? Thanx in advance ..
H Herfried K. Wagner [MVP] Mar 22, 2006 #2 Mr. Morad Jamal said: Tell me guys how to instantiate a class at runtime given the assembly DLL file and the class name ? Click to expand... 'Assembly.LoadFrom' + 'Activator.CreateInstance'.
Mr. Morad Jamal said: Tell me guys how to instantiate a class at runtime given the assembly DLL file and the class name ? Click to expand... 'Assembly.LoadFrom' + 'Activator.CreateInstance'.
G Guest Mar 22, 2006 #3 Thanx Herfried, but can you explain your statement more ?? I'd appreciate it..
H Herfried K. Wagner [MVP] Mar 22, 2006 #4 Mr. Morad Jamal said: Thanx Herfried, but can you explain your statement more ?? I'd appreciate it.. Click to expand... \\\ Dim o As Object = _ Activator.CreateInstance(<assembly name>, <type name>) ///
Mr. Morad Jamal said: Thanx Herfried, but can you explain your statement more ?? I'd appreciate it.. Click to expand... \\\ Dim o As Object = _ Activator.CreateInstance(<assembly name>, <type name>) ///
G Guest Mar 22, 2006 #5 thank you so much fir your efforts dude ... Herfried K. Wagner said: \\\ Dim o As Object = _ Activator.CreateInstance(<assembly name>, <type name>) /// Click to expand...
thank you so much fir your efforts dude ... Herfried K. Wagner said: \\\ Dim o As Object = _ Activator.CreateInstance(<assembly name>, <type name>) /// Click to expand...