How can I resolve the control type?

M

Mr. X.

Hello.
In VB.NET (VS 2008) :
How can I resolve the control type, by knowing it's name only.
I.e : Panel.

Thanks :)
 
H

Herfried K. Wagner [MVP]

Am 16.06.2010 21:00, schrieb Mr. X.:
In VB.NET (VS 2008) :
How can I resolve the control type, by knowing it's name only.
I.e : Panel.

The name of the type or the name of a control?
 
M

Mr. X.

I have the name of type.
As the following code :
=================
dim s as string
dim t as type
s = "Panel"

I want that :
t = GetType(Panel)
(But on the following code, I have send a type parameter.
I want to send a string parameter).

How can I do that ?

Thanks :)
 
A

Armin Zingler

Am 16.06.2010 22:27, schrieb Mr. X.:
I have the name of type.
As the following code :
=================
dim s as string
dim t as type
s = "Panel"

I want that :
t = GetType(Panel)
(But on the following code, I have send a type parameter.
I want to send a string parameter).

How can I do that ?

The name "panel" is not unique. A class of that name can be
in many namespaces and in many assemblies (dlls). Therefore you
must specify more details.

Have a look here: (also read the parameter description)
http://msdn.microsoft.com/en-us/library/w3f99sx1(VS.90).aspx

Also:
http://msdn.microsoft.com/en-us/library/y0cd10tb(VS.90).aspx
 
M

Mr. X.

I looked, as your advise, at the links.
For the second one : I should do something for instance, because instance
should not be nothing.

I know the dlls (or the namespace) for the object.
I need an example, please. Specifically for Panel, in order to understand
something about.

Thanks :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top