473,796 Members | 2,464 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Activator.Creat eInstance 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(tx tForm)
frm = Activator.Creat eInstance(frmTy pe)
frmType.InvokeM ember("ShowDial og",
BindingFlags.In vokeMethod, 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.M yForm")

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 1858
Use the static method Assembly.Load(a ssemblyDisplayN ame) 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(" AssemblyDisplay Name")
frmType = asmbly.GetType( txtForm)
--->

End Sub

Thanks,
Vijaya Krishna P.
"Huw" <hp*****@hotmai l.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(tx tForm)
frm = Activator.Creat eInstance(frmTy pe)
frmType.InvokeM ember("ShowDial og",
BindingFlags.In vokeMethod, 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.M yForm")

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.M yForm, 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*****@hotmai l.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(tx tForm)
frm = Activator.Creat eInstance(frmTy pe)
frmType.InvokeM ember("ShowDial og",
BindingFlags.In vokeMethod, 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.M yForm")

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
3356
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 "Type" must be passed in: IMyInterface CreateObjects(Type type,int numberOfObjects); Internally this method will call Activator.CreateInstance() to create the objects. Here's my question: Is there a significant performance penalty
2
505
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 Activator.CreateInstance where they pass an argument with the object type? Assembly a = Assembly.GetExecutingAssembly(); Type type = a.GetType("MyAssemb.MyClass"); Object o = Activator.CreateInstance(type); MyClass myObj=...
2
4570
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 the xsd of my dataset. The compiling seems to succeed since cr.Errors.HasErrors returns false; Anyone that knows what the problem could be?
7
12037
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 a token into the instantiated class DBPassword and return a string; ************************************** namespace DBPasswordProvider public class DBPassword {
3
17071
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 flags = (BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Static | BindingFlags.Instance | BindingFlags.DeclaredOnly); //Iterate through the Assembly to find Class with a Public Interface.
1
4765
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 DBPassword and return a string; ************************************** public class DBPassword { public DBPassword() { //Empty constructor
1
11538
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 Activator.CreateInstance? If I create same class using Activator.CreateInstance many times will there be multiple instances of that same class created by Activator.CreateInstance?
0
1071
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 as follows: ISubscriptionChangeWatcher result; string watcherConfig; ObjectHandle handle;
0
1434
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 executing assembly, in which case you need to give assembly details as well. The line with testType2 is explicitly trying to find a class called "name". The string "name" and the variable called name are completely independent things.
0
1297
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 = Activator.CreateInstance(t); string result = t.InvokeMember("methodName",
0
9680
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10230
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10012
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9052
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7548
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6788
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5442
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4118
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2926
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.