/Home /Archive /Syndicate /Blog /Support /About /Contact  
All Visual Basic Feeds in one place!





Example:

  ' Create a LINQ query.

        Dim buttonQuery = From control In Me.Controls Where TypeOf (control) Is Button

        ' Create a list of object.

        Dim buttonList = buttonQuery.ToList

        ' Iterate through the objects in buttonList.

        For Each btn As Button In buttonList

            ' Show each button's text property.

            MessageBox.Show(btn.Text)

        Next

© 2005 Serge Baranovsky. All rights reserved.
All feed content is property of original publisher. Designated trademarks and brands are the property of their respective owners.

This site is maintained by SubMain(), a division of vbCity.com, LLC