G
Guest
I'm trying to get the list of all of the controls on a form which works great
except for getting the name of the HelpProvider. For instance:
for (int i = 0; i < this.Controls.Count; i++)
{
temp = this.Controls.Name;
}
will give me all of the textboxes, treeviews, etc on a form, but will not
give me the name of the helpprovier. Any suggestions of how to do this?
Thanks!
except for getting the name of the HelpProvider. For instance:
for (int i = 0; i < this.Controls.Count; i++)
{
temp = this.Controls.Name;
}
will give me all of the textboxes, treeviews, etc on a form, but will not
give me the name of the helpprovier. Any suggestions of how to do this?
Thanks!