home *** CD-ROM | disk | FTP | other *** search
- 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
- Friend WithEvents MainMenu1 As System.Windows.Forms.MainMenu
- Friend WithEvents MenuItem1 As System.Windows.Forms.MenuItem
- Friend WithEvents MenuItem2 As System.Windows.Forms.MenuItem
- Friend WithEvents MenuItem3 As System.Windows.Forms.MenuItem
- Friend WithEvents ListBox1 As System.Windows.Forms.ListBox
-
- 'Required by the Windows Form Designer
- Private components As System.ComponentModel.Container
-
- '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.
- <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
- Me.MenuItem1 = New System.Windows.Forms.MenuItem()
- Me.MenuItem2 = New System.Windows.Forms.MenuItem()
- Me.MenuItem3 = New System.Windows.Forms.MenuItem()
- Me.MainMenu1 = New System.Windows.Forms.MainMenu()
- Me.ListBox1 = New System.Windows.Forms.ListBox()
- Me.SuspendLayout()
- '
- 'MenuItem1
- '
- Me.MenuItem1.Index = 0
- Me.MenuItem1.MenuItems.AddRange(New System.Windows.Forms.MenuItem() {Me.MenuItem2, Me.MenuItem3})
- Me.MenuItem1.Text = "&File"
- '
- 'MenuItem2
- '
- Me.MenuItem2.Index = 0
- Me.MenuItem2.Text = "&Enter name..."
- '
- 'MenuItem3
- '
- Me.MenuItem3.Index = 1
- Me.MenuItem3.Text = "E&xit"
- '
- 'MainMenu1
- '
- Me.MainMenu1.MenuItems.AddRange(New System.Windows.Forms.MenuItem() {Me.MenuItem1})
- '
- 'ListBox1
- '
- Me.ListBox1.Location = New System.Drawing.Point(72, 48)
- Me.ListBox1.Name = "ListBox1"
- Me.ListBox1.Size = New System.Drawing.Size(160, 95)
- Me.ListBox1.TabIndex = 0
- '
- 'Form1
- '
- Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
- Me.ClientSize = New System.Drawing.Size(292, 273)
- Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.ListBox1})
- Me.Menu = Me.MainMenu1
- Me.Name = "Form1"
- Me.Text = "Form1"
- Me.ResumeLayout(False)
-
- End Sub
-
- #End Region
-
- Private Sub MenuItem3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem3.Click
- Close()
- End Sub
-
- Private Sub MenuItem2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem2.Click
- Dim Dialog As New Form2()
- Dim Result As DialogResult
-
- ' show the dialog and make this form the parent
- Result = Dialog.ShowDialog(Me)
-
- If Result = DialogResult.OK Then
- ListBox1.Items.Add(Dialog.TextBox1.Text)
- End If
-
- End Sub
- End Class
-