473,396 Members | 1,707 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.

Creating an object dynamically using Reflection and running in a seperate thread

I would normally use code such as :

Dim Customer as new Customer
Dim t as new threading.thread(AddressOf Customer.DisplayCustomer)
Customer.CustomerId=MyCustomerId
t.start

Which would create a new thread to display a customer on the screen for example.

However, I have a problem with circular references in my objects which means that I have to load the customer object using reflection ie :

Dim Customer As Object

Dim dmsobj As New DmsObjects.Functions

Customer = dmsobj.LoadMeByName("DMSCustomer.dll", "DMSCustomer.Customer", Nothing) <--- this is a wrapper round some reflection code to load up the object

Customer.Customer = dms.data("ActivityLog", 5, RowNo)

customer.displaycustomer

This code works.

However, I want to do :

Dim Customer As Object

Dim dmsobj As New DmsObjects.Functions

Customer = dmsobj.LoadMeByName("DMSCustomer.dll", "DMSCustomer.Customer", Nothing)

Customer.Customer = dms.data("ActivityLog", 5, RowNo)

Dim t As New Threading.Thread(AddressOf Customer.DisplayCustomer)

t.Start()

This doesn't compile, due to latebinding, it complains that "Customer.DisplayCustomer" is not a valid method.

How can I acheive this??

Many thanks in advance.

Simon

Nov 20 '05 #1
6 1902
Activator.CreateInstance
"Simon Verona" <ne**@aphroditeuk.com> wrote in message news:uQ**************@TK2MSFTNGP09.phx.gbl...
I would normally use code such as :

Dim Customer as new Customer
Dim t as new threading.thread(AddressOf Customer.DisplayCustomer)
Customer.CustomerId=MyCustomerId
t.start

Which would create a new thread to display a customer on the screen for example.

However, I have a problem with circular references in my objects which means that I have to load the customer object using reflection ie :

Dim Customer As Object

Dim dmsobj As New DmsObjects.Functions

Customer = dmsobj.LoadMeByName("DMSCustomer.dll", "DMSCustomer.Customer", Nothing) <--- this is a wrapper round some reflection code to load up the object

Customer.Customer = dms.data("ActivityLog", 5, RowNo)

customer.displaycustomer

This code works.

However, I want to do :

Dim Customer As Object

Dim dmsobj As New DmsObjects.Functions

Customer = dmsobj.LoadMeByName("DMSCustomer.dll", "DMSCustomer.Customer", Nothing)

Customer.Customer = dms.data("ActivityLog", 5, RowNo)

Dim t As New Threading.Thread(AddressOf Customer.DisplayCustomer)

t.Start()

This doesn't compile, due to latebinding, it complains that "Customer.DisplayCustomer" is not a valid method.

How can I acheive this??

Many thanks in advance.

Simon

Nov 20 '05 #2
Thanks for the pointer.. Unfortunately, I can't quite work out the syntax for using this.

Is it possible to put together an example of use ? Perhaps using my code as the example????

Thanks in advance.

Simon
"CJ Taylor" <no****@blowgoats.com> wrote in message news:vs************@corp.supernews.com...
Activator.CreateInstance
"Simon Verona" <ne**@aphroditeuk.com> wrote in message news:uQ**************@TK2MSFTNGP09.phx.gbl...
I would normally use code such as :

Dim Customer as new Customer
Dim t as new threading.thread(AddressOf Customer.DisplayCustomer)
Customer.CustomerId=MyCustomerId
t.start

Which would create a new thread to display a customer on the screen for example.

However, I have a problem with circular references in my objects which means that I have to load the customer object using reflection ie :

Dim Customer As Object

Dim dmsobj As New DmsObjects.Functions

Customer = dmsobj.LoadMeByName("DMSCustomer.dll", "DMSCustomer.Customer", Nothing) <--- this is a wrapper round some reflection code to load up the object

Customer.Customer = dms.data("ActivityLog", 5, RowNo)

customer.displaycustomer

This code works.

However, I want to do :

Dim Customer As Object

Dim dmsobj As New DmsObjects.Functions

Customer = dmsobj.LoadMeByName("DMSCustomer.dll", "DMSCustomer.Customer", Nothing)

Customer.Customer = dms.data("ActivityLog", 5, RowNo)

Dim t As New Threading.Thread(AddressOf Customer.DisplayCustomer)

t.Start()

This doesn't compile, due to latebinding, it complains that "Customer.DisplayCustomer" is not a valid method.

How can I acheive this??

Many thanks in advance.

Simon

Nov 20 '05 #3
* "Simon Verona" <ne**@aphroditeuk.com> scripsit:
Thanks for the pointer.. Unfortunately, I can't quite work out the syntax for using this.


For example (there are many other ways to use 'CreateInstance'):

\\\
Private Function CreateClassByName( _
ByVal PartialAssemblyName As String, _
ByVal QualifiedClassName As String _
) As Object
Return _
Activator.CreateInstance( _
[Assembly].LoadWithPartialName( _
PartialAssemblyName _
).GetType(QualifiedClassName) _
)
End Function
///

Usage:

\\\
Dim c As Control = _
DirectCast( _
CreateClassByName( _
"System.Windows.Forms", _
"System.Windows.Forms.Button" _
), _
Control _
)
With c
.Location = New Point(10, 10)
.Size = New Size(80, 26)
.Text = "Hello World"
End With
Me.Controls.Add(c)
///

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
Nov 20 '05 #4
I'm getting very confused.

I think the code that you've put in is the code to construct the object in the first place - I have very similar code that does this.

I can't work out how to write the code that is used when creating the thread:

ie in my code:

Dim Customer As Object
Dim dmsobj As New DmsObjects.Functions
Customer = dmsobj.LoadMeByName("DMSCustomer.dll", "DMSCustomer.Customer", Nothing)
Customer.Customer = dms.data("ActivityLog", 5, RowNo)
Dim t As New Threading.Thread(AddressOf Customer.DisplayCustomer)
t.Start()

I need to know what to put in place of the AddressOf Customer.DisplayCustomer when creating the thread. I'm sure that the reflection class allows you to create a delegate pointer to a specific method, but I can't work out how! It's getting very frustrating.

Out of interest, the function dmsobj.LoadMeByName is as follows:

Public Shared Function LoadMeByName(ByVal vstrAssemblyName As String, ByVal vstrClassName As String, ByVal vArgs() As Object) As Object
'************************************************* ***********************************
'dynamically load object from assembly for late binding purpose
' ************************************************** ***********************************
Dim objAssembly As Reflection.Assembly
Dim objtemp As Object
Dim Params() As Object
'MsgBox(Application.StartupPath)
If Dir(Application.StartupPath & "\" & vstrAssemblyName).Equals("") Then
Err.Raise(-1, "LoadMeByName", "assembly could not found, wrong assembly name given ")
Exit Function
End If
objAssembly = objAssembly.LoadFrom(Application.StartupPath & "\" & vstrAssemblyName)
objtemp = objAssembly.CreateInstance(vstrClassName, True, Reflection.BindingFlags.CreateInstance, Nothing, vArgs, Nothing, Nothing)
If objtemp Is Nothing Then
Err.Raise(-1, "LoadMeByName", "assembly could not found, wrong assembly name given ")
Exit Function
End If
' LoadMeByName = objtemp
Return objtemp
End Function

Hopefully, somebody will take pity on me on a Friday!!

Many thanks in advance,
Simon
"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message news:bq*************@ID-208219.news.uni-berlin.de...
* "Simon Verona" <ne**@aphroditeuk.com> scripsit:
Thanks for the pointer.. Unfortunately, I can't quite work out the syntax for using this.


For example (there are many other ways to use 'CreateInstance'):

\\\
Private Function CreateClassByName( _
ByVal PartialAssemblyName As String, _
ByVal QualifiedClassName As String _
) As Object
Return _
Activator.CreateInstance( _
[Assembly].LoadWithPartialName( _
PartialAssemblyName _
).GetType(QualifiedClassName) _
)
End Function
///

Usage:

\\\
Dim c As Control = _
DirectCast( _
CreateClassByName( _
"System.Windows.Forms", _
"System.Windows.Forms.Button" _
), _
Control _
)
With c
.Location = New Point(10, 10)
.Size = New Size(80, 26)
.Text = "Hello World"
End With
Me.Controls.Add(c)
///

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>

Nov 20 '05 #5
Ahh

You can create a delegate, however, I wouldn't free thread it using AddressOf.

What does your threading code look like? Do you have it yet?

i.e.

Dim myThread as new System.Threading.Thread(AddressOf myFunctionCall)

Now, you can't pass parameters to Threading start calls...

So,if your myFunctionCall is in another class, you have to instantiate it and set the proper "parameter" values... i.e using properties and then the myFunctionCall (which actually starts the execution on a new thread)

such that

Dim myObject as New myObject

myObject.Parameter1 = [a paramter]
myObject.Parameter2 = [another parameter]

Dim myThread as System.Threading.Thread

myThread = new System.Threading.Thread (AddressOf myObject.MyThreadStarterFunction)

myThread.Start()

' do some stuff - new thread executes its stuff, you do whatever else you want... Join
'just shuts the thread down (read about thread states).

myThread.join()
"Simon Verona" <ne**@aphroditeuk.com> wrote in message news:ux**************@tk2msftngp13.phx.gbl...
I'm getting very confused.

I think the code that you've put in is the code to construct the object in the first place - I have very similar code that does this.

I can't work out how to write the code that is used when creating the thread:

ie in my code:

Dim Customer As Object
Dim dmsobj As New DmsObjects.Functions
Customer = dmsobj.LoadMeByName("DMSCustomer.dll", "DMSCustomer.Customer", Nothing)
Customer.Customer = dms.data("ActivityLog", 5, RowNo)
Dim t As New Threading.Thread(AddressOf Customer.DisplayCustomer)
t.Start()

I need to know what to put in place of the AddressOf Customer.DisplayCustomer when creating the thread. I'm sure that the reflection class allows you to create a delegate pointer to a specific method, but I can't work out how! It's getting very frustrating.

Out of interest, the function dmsobj.LoadMeByName is as follows:

Public Shared Function LoadMeByName(ByVal vstrAssemblyName As String, ByVal vstrClassName As String, ByVal vArgs() As Object) As Object
'************************************************* ***********************************
'dynamically load object from assembly for late binding purpose
' ************************************************** ***********************************
Dim objAssembly As Reflection.Assembly
Dim objtemp As Object
Dim Params() As Object
'MsgBox(Application.StartupPath)
If Dir(Application.StartupPath & "\" & vstrAssemblyName).Equals("") Then
Err.Raise(-1, "LoadMeByName", "assembly could not found, wrong assembly name given ")
Exit Function
End If
objAssembly = objAssembly.LoadFrom(Application.StartupPath & "\" & vstrAssemblyName)
objtemp = objAssembly.CreateInstance(vstrClassName, True, Reflection.BindingFlags.CreateInstance, Nothing, vArgs, Nothing, Nothing)
If objtemp Is Nothing Then
Err.Raise(-1, "LoadMeByName", "assembly could not found, wrong assembly name given ")
Exit Function
End If
' LoadMeByName = objtemp
Return objtemp
End Function

Hopefully, somebody will take pity on me on a Friday!!

Many thanks in advance,
Simon
"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message news:bq*************@ID-208219.news.uni-berlin.de...
* "Simon Verona" <ne**@aphroditeuk.com> scripsit:
Thanks for the pointer.. Unfortunately, I can't quite work out the syntax for using this.


For example (there are many other ways to use 'CreateInstance'):

\\\
Private Function CreateClassByName( _
ByVal PartialAssemblyName As String, _
ByVal QualifiedClassName As String _
) As Object
Return _
Activator.CreateInstance( _
[Assembly].LoadWithPartialName( _
PartialAssemblyName _
).GetType(QualifiedClassName) _
)
End Function
///

Usage:

\\\
Dim c As Control = _
DirectCast( _
CreateClassByName( _
"System.Windows.Forms", _
"System.Windows.Forms.Button" _
), _
Control _
)
With c
.Location = New Point(10, 10)
.Size = New Size(80, 26)
.Text = "Hello World"
End With
Me.Controls.Add(c)
///

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>

Nov 20 '05 #6
Ahhh

my bad... sorry had to re read it again...

help://MS.VSCC.2003/MS.MSDNQTR.2003FEB.1033

has instructions on how to create a delegate... I hope this helps.
"Simon Verona" <ne**@aphroditeuk.com> wrote in message news:ux**************@tk2msftngp13.phx.gbl...
I'm getting very confused.

I think the code that you've put in is the code to construct the object in the first place - I have very similar code that does this.

I can't work out how to write the code that is used when creating the thread:

ie in my code:

Dim Customer As Object
Dim dmsobj As New DmsObjects.Functions
Customer = dmsobj.LoadMeByName("DMSCustomer.dll", "DMSCustomer.Customer", Nothing)
Customer.Customer = dms.data("ActivityLog", 5, RowNo)
Dim t As New Threading.Thread(AddressOf Customer.DisplayCustomer)
t.Start()

I need to know what to put in place of the AddressOf Customer.DisplayCustomer when creating the thread. I'm sure that the reflection class allows you to create a delegate pointer to a specific method, but I can't work out how! It's getting very frustrating.

Out of interest, the function dmsobj.LoadMeByName is as follows:

Public Shared Function LoadMeByName(ByVal vstrAssemblyName As String, ByVal vstrClassName As String, ByVal vArgs() As Object) As Object
'************************************************* ***********************************
'dynamically load object from assembly for late binding purpose
' ************************************************** ***********************************
Dim objAssembly As Reflection.Assembly
Dim objtemp As Object
Dim Params() As Object
'MsgBox(Application.StartupPath)
If Dir(Application.StartupPath & "\" & vstrAssemblyName).Equals("") Then
Err.Raise(-1, "LoadMeByName", "assembly could not found, wrong assembly name given ")
Exit Function
End If
objAssembly = objAssembly.LoadFrom(Application.StartupPath & "\" & vstrAssemblyName)
objtemp = objAssembly.CreateInstance(vstrClassName, True, Reflection.BindingFlags.CreateInstance, Nothing, vArgs, Nothing, Nothing)
If objtemp Is Nothing Then
Err.Raise(-1, "LoadMeByName", "assembly could not found, wrong assembly name given ")
Exit Function
End If
' LoadMeByName = objtemp
Return objtemp
End Function

Hopefully, somebody will take pity on me on a Friday!!

Many thanks in advance,
Simon
"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message news:bq*************@ID-208219.news.uni-berlin.de...
* "Simon Verona" <ne**@aphroditeuk.com> scripsit:
Thanks for the pointer.. Unfortunately, I can't quite work out the syntax for using this.


For example (there are many other ways to use 'CreateInstance'):

\\\
Private Function CreateClassByName( _
ByVal PartialAssemblyName As String, _
ByVal QualifiedClassName As String _
) As Object
Return _
Activator.CreateInstance( _
[Assembly].LoadWithPartialName( _
PartialAssemblyName _
).GetType(QualifiedClassName) _
)
End Function
///

Usage:

\\\
Dim c As Control = _
DirectCast( _
CreateClassByName( _
"System.Windows.Forms", _
"System.Windows.Forms.Button" _
), _
Control _
)
With c
.Location = New Point(10, 10)
.Size = New Size(80, 26)
.Text = "Hello World"
End With
Me.Controls.Add(c)
///

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>

Nov 20 '05 #7

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

Similar topics

2
by: JJ L. | last post by:
Hello. I have a project that consists of nine different objects, each serving their own purpose. In the past I have just created a form for each one, and then whenever you call, say,...
2
by: salportaro | last post by:
Hello: Here is the situation. VB.NET I have several forms and I have a XML file that can start with a particular for for debugging/layout reasons. This is a mdi project. Normaly you would...
12
by: Mats Lycken | last post by:
Hi, I'm creating a CMS that I would like to be plug-in based with different plugins handling different kinds of content. What I really want is to be able to load/unload plugins on the fly without...
0
by: Jan | last post by:
I just started using .NET Remoting. I have a test system (client) which connects to our device (server) running XP Embedded. When my server object is called it uses a library where reflection...
3
by: MarkusJNZ | last post by:
Hi, given a name of an class e.g. "MyClass" which is stored as a string is it possible to create a new instance of this type dynamically and then reference the attributes by name in code?? e.g....
6
by: RSH | last post by:
Hi, i have a situation where I need to dynamically create objects in a loop. My question surrounds intantiation naming in such a scenerio. Below is a snippet that is basically hardcoding each...
2
by: FFrozTT | last post by:
I am having a problem creating a DLL with an entry point. I've been trying sub Main, DllMain, and I get nothing. When I run dumpbin - exports mydll.dll I see no entry points, also the dll when...
8
by: Andrzej Lipski | last post by:
I am new to dotnet and I'll tried searching Google for a solution to my problem. I am hoping that it is possible to do, or am I going down a dead end? I have a User class that has known...
7
by: Robert | last post by:
Thanks George, I really am grateful for attempts to be helpful, but this really doesn't answer the question in my OP. What I am looking for is an explanation of WHY things are this way (I was...
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: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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
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,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
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...
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,...

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.