VB.NET Help
I need some help with VB.NET . I am trying to create a Button array . Once a user click on the first button he will see another button . When the usere will click on the first bitton again he will see different button . Every time a user click on the first button different button will appear . I have created a vb.NET button array where I have the first button creating dynamically and when user clicks on it he can see the second button . But I can not go further . Which means if the user click on the first button again nothig happen . Please help . Thanks .Here is my code
Public Class Form1
Inherits System.Windows.Forms.Form
#Region " Windows Form Designer generated code "
Public Sub New()
MyBase.New()
'This call is required by the Windows Form Designer.
InitializeComponent()
'Add any initialization after the InitializeComponent() call
End Sub
'Form overrides dispose to clean up the component list.
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
Friend WithEvents Button1 As System.Windows.Forms.Button
Friend WithEvents Button2 As System.Windows.Forms.Button
Friend WithEvents Button3 As System.Windows.Forms.Button
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
Me.Button1 = New System.Windows.Forms.Button
Me.Button2 = New System.Windows.Forms.Button
Me.Button3 = New System.Windows.Forms.Button
Me.SuspendLayout()
'
'Button1
'
Me.Button1.Location = New System.Drawing.Point(176, 56)
Me.Button1.Name = "Button1"
Me.Button1.TabIndex = 0
Me.Button1.Text = "Button1"
Me.Button1.Visible = False
'
'Button2
'
Me.Button2.Location = New System.Drawing.Point(184, 88)
Me.Button2.Name = "Button2"
Me.Button2.TabIndex = 1
Me.Button2.Text = "Button2"
Me.Button2.Visible = False
'
'Button3
'
Me.Button3.AccessibleRole = System.Windows.Forms.AccessibleRole.ButtonMenu
Me.Button3.AllowDrop = True
Me.Button3.Location = New System.Drawing.Point(200, 120)
Me.Button3.Name = "Button3"
Me.Button3.TabIndex = 2
Me.Button3.Tag = "hello"
Me.Button3.Text = "Button3"
Me.Button3.Visible = False
'
'Form1
'
Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
Me.ClientSize = New System.Drawing.Size(292, 273)
Me.Controls.Add(Me.Button3)
Me.Controls.Add(Me.Button2)
Me.Controls.Add(Me.Button1)
Me.Name = "Form1"
Me.Text = "Form1"
Me.ResumeLayout(False)
End Sub
#End Region
Dim count As Integer
Private Sub ClickButton(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click, Button2.Click, Button3.Enter
Dim btn As Button
btn = CType(sender, Button)
'MsgBox(btn.Text)
Button1.Show()
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'Create the button
Dim btn As New Button
'Specify the location and the size
btn.Location = New System.Drawing.Point(100, 20)
btn.Size = New System.Drawing.Size(100, 20)
btn.Text = "Add Buttons"
'Add it to the forms control collection
Me.Controls.Add(btn)
'Link the event to the event handler
AddHandler btn.Click, AddressOf Me.ClickButton
End Sub
End Class

