Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
What interface question
Message
From
25/08/2006 17:10:07
 
 
To
All
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Title:
What interface question
Environment versions
Environment:
VB.NET 1.1
OS:
Windows XP SP2
Miscellaneous
Thread ID:
01148728
Message ID:
01148728
Views:
65
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
Next
Reply
Map
View

Click here to load this message in the networking platform