473,396 Members | 1,914 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Activator.CreateInstance Problems

Huw
I have written a small procedure that opens a dialog that
I pass it.

Sub MyOpen(txtForm as string)

Dim frm As Object
Dim frmType As Type
frmType = Type.GetType(txtForm)
frm = Activator.CreateInstance(frmType)
frmType.InvokeMember("ShowDialog",
BindingFlags.InvokeMethod, Nothing, frm, Nothing)

End Sub

This works fine when I pass it form names that exist in
the current .exe file e.g. MyOpen("MyApp.MyForm")

However what I really want to do is open forms that are
contained in a sperate windows .dll file i.e. MyOpen
("MyDll.MyForm"), but it does not seem to work... Will it
work if I supply the full public token id as the string?
If so how do I obtain the full public token id of a form
in a seperate .dll file?

Thanks in advance
Nov 20 '05 #1
2 1827
Use the static method Assembly.Load(assemblyDisplayName) to load the
assembly that contains the form. Using that assembly reference, make a call
to GetType().
Sub MyOpen(txtForm as string)

--->
Dim asmbly = Assembly.Load("AssemblyDisplayName")
frmType = asmbly.GetType(txtForm)
--->

End Sub

Thanks,
Vijaya Krishna P.
"Huw" <hp*****@hotmail.com> wrote in message
news:0b****************************@phx.gbl...
I have written a small procedure that opens a dialog that
I pass it.

Sub MyOpen(txtForm as string)

Dim frm As Object
Dim frmType As Type
frmType = Type.GetType(txtForm)
frm = Activator.CreateInstance(frmType)
frmType.InvokeMember("ShowDialog",
BindingFlags.InvokeMethod, Nothing, frm, Nothing)

End Sub

This works fine when I pass it form names that exist in
the current .exe file e.g. MyOpen("MyApp.MyForm")

However what I really want to do is open forms that are
contained in a sperate windows .dll file i.e. MyOpen
("MyDll.MyForm"), but it does not seem to work... Will it
work if I supply the full public token id as the string?
If so how do I obtain the full public token id of a form
in a seperate .dll file?

Thanks in advance

Nov 20 '05 #2
Huw,
In addition to Vijaya Krishna P's comments.

You can include the assemble name in the string you pass to Type.GetType.

MyOpen("MyDll.MyForm, MyDll")

Which presumes that you named the assembly & namespace where the MyForm is
the same name (which is the default).

Hope this helps
Jay

"Huw" <hp*****@hotmail.com> wrote in message
news:0b****************************@phx.gbl...
I have written a small procedure that opens a dialog that
I pass it.

Sub MyOpen(txtForm as string)

Dim frm As Object
Dim frmType As Type
frmType = Type.GetType(txtForm)
frm = Activator.CreateInstance(frmType)
frmType.InvokeMember("ShowDialog",
BindingFlags.InvokeMethod, Nothing, frm, Nothing)

End Sub

This works fine when I pass it form names that exist in
the current .exe file e.g. MyOpen("MyApp.MyForm")

However what I really want to do is open forms that are
contained in a sperate windows .dll file i.e. MyOpen
("MyDll.MyForm"), but it does not seem to work... Will it
work if I supply the full public token id as the string?
If so how do I obtain the full public token id of a form
in a seperate .dll file?

Thanks in advance

Nov 20 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

18
by: David Sworder | last post by:
Hi, I need to design a method that creates and returns a large array of objects. The problem is that the *type* of object to create isn't know until runtime. As a result, a parameter of type...
2
by: shmeian | last post by:
I have the following code which works fine. However I want to pass the object I'm instantiating a string for its constructor. I can't get the syntax right. Can someone give me an example of...
2
by: 2G | last post by:
Hi, I'm having some problems creating an instance of the dataset I compile in memory and I don't know why. I what to do this to Invoke WriteXmlSchema or GetSchemaSerializable so I could save...
7
by: hazz | last post by:
this is a repost with more concise code (well, for me) and better questions (I hope....) . given the following two classes, my intent is to use either Activator.CreateInstance or InvokeMember pass...
3
by: System.Reflection Activator | last post by:
************************************** //Load the Assembly Assembly a = Assembly.LoadFrom(sAssembly); //Get Types so we can Identify the Interface. Type mytypes = a.GetTypes(); BindingFlags...
1
by: hazz | last post by:
this is a repost with a hopefully more clearly stated scenario and more concise questions at the end. given the following two classes, my intent is to use pass a token into the instantiated class...
1
by: Johnny R | last post by:
Hello, I'm loading a Class from Assemly DLL using Activator.CreateInstance. That loaded Class is executed in a worker Thread with no loop. What actually happends when class is loaded using...
0
by: Andy | last post by:
Hi, I have an internal class, which an internal constructor. In the same assembly as this class, I have a factory class which uses Activator.CreateInstance to create the instance. The code is...
0
by: Jon Skeet [C# MVP] | last post by:
On Apr 11, 8:40 am, Andrew <And...@discussions.microsoft.comwrote: Okay, that means you've either not given the full classname (including namespace) or it's not in mscorlib or the currently...
0
by: =?Utf-8?B?QW5kcmV3?= | last post by:
Found it. string name = Properties.Settings.Default.ClassName.ToString(); //"myproject.myclass, myassembly" format. //name = "ABC.MyClass, Assem" ; Type t = Type.GetType(name); Object obj...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.