Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
What interface question
Message
From
26/08/2006 10:47:32
 
 
To
25/08/2006 17:10:07
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Environment versions
Environment:
VB.NET 1.1
OS:
Windows XP SP2
Miscellaneous
Thread ID:
01148728
Message ID:
01148814
Views:
14
Brian,

You also might want to try the IContainerControl interface in addition to IContainer. Between the two of them, it will probably cover all container controls.

~~Bonnie



>Im trying to write a sub that will go through a form and collect a referance to all the controls of a given type (IControlDataAction).(code below) I was hoping to make a recursve call to go through any containers with a controls cdollection tab pages and so on. I have not been able to find an interface that would work for this. any suggestions?
>
>
>Private Sub RegisterCmdbtns(ByVal objControl As ContainerControl)
> Dim intControlIndex As Int16
> If objControl.Controls.Count() < 1 Then
> Exit Sub
> End If
> For intControlIndex = 0 To objControl.Controls.Count() - 1
> Debug.WriteLine(objControl.Controls(intControlIndex).Name)
> If TypeOf objControl.Controls(intControlIndex) Is System.ComponentModel.IContainer Then
> RegisterCmdbtns(objControl.Controls(intControlIndex))
> End If
> If TypeOf objControl.Controls(intControlIndex) Is IControlDataAction Then
> RegisterDataActionControl(objControl.Controls(intControlIndex))
> End If
> Next
> End Sub
>
>
>Thanks
>Brian Grant
Bonnie Berent DeWitt
NET/C# MVP since 2003

http://geek-goddess-bonnie.blogspot.com
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform