Object array : Array Object « Collections « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » Collections » Array Object 
8.5.1.Object array
Option Strict On
 Imports System
 
 MustInherit Public Class Control

    Public Sub New(top As Integer, left As Integer)
       Me.top = top
       Me.left = left
    End Sub

    Public MustOverride Sub DrawControl( )

    Protected top As Integer
    Protected left As Integer
 End Class 

 Public Class Label
    Inherits Control

    Public Sub New(top As Integer, left As Integer, contents As String)
       MyBase.New(top, left
       listBoxContents = contents
    End Sub

    Public Overrides Sub DrawControl( )
       Console.WriteLine("Writing string to the listbox: {0}", listBoxContents)
    End Sub 

    Private listBoxContents As String 
 End Class

 Public Class Button
    Inherits Control

    Public Sub New(top As Integer, left As Integer)
       MyBase.New(top, left)
    End Sub
    Public Overrides Sub DrawControl( )
       Console.WriteLine("Drawing a button at {0}, {1}" + ControlChars.Lf, top, left)
    End Sub 
 End Class

 Public Class Tester

    Shared Sub Main( )
       Dim winArray(3As Control
       winArray(0= New Label(12"A")
       winArray(1= New Label(34"B")
       winArray(2= New Button(56)

       Dim As Integer
       For i = To 2
          winArray(i).DrawControl( )
       Next i
    End Sub 'Main

 End Class 'Tester
Writing string to the listbox: A
Writing string to the listbox: B
Drawing a button at 5, 6
8.5.Array Object
8.5.1.Object array
8.5.2.Populate Object array
8.5.3.Sort a custom object array
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.