vote up 0 vote down star

I am using visual studio 2003 and Windows platform and i want some tool which give me the list of controls name and control type like button,textbox etc.. in the form is there any way to do this by tool or by any code ? thanks in advance.

flag

2 Answers

vote up 1 vote down

There is a Controls collection for the Form. You can get the array of controls present in the form from that. In order to get the type, you will need to loop through the collection and get GetType().FullName property for each element.

link|flag
vote up 2 vote down

There is toolbox in Visual Studio IDE which will give you the details.

link|flag
I think OP wants to list the name of controls programatically. – adatapost Jul 31 at 6:37
i can not find it where exactly is toolbox ? – KuldipMCA Jul 31 at 7:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.