home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmMain
- Caption = "Control Examples"
- ClientHeight = 3090
- ClientLeft = 1710
- ClientTop = 3375
- ClientWidth = 4995
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 1
- weight = 700
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 3780
- Left = 1650
- LinkTopic = "Form2"
- ScaleHeight = 3090
- ScaleWidth = 4995
- Top = 2745
- Width = 5115
- Begin VB.CommandButton cmdExit
- Caption = "E&xit"
- Height = 495
- Left = 3240
- TabIndex = 0
- Top = 2160
- Width = 1215
- End
- Begin VB.Menu mnuControls
- Caption = "&Options"
- Begin VB.Menu mnuButtons
- Caption = "&Test Buttons"
- End
- Begin VB.Menu mnuWordWrap
- Caption = "&WordWrap and AutoSize"
- End
- Begin VB.Menu mnuCheck
- Caption = "&Check Box"
- End
- Begin VB.Menu mnuNumber
- Caption = "&Number System"
- End
- Begin VB.Menu mnuListBox
- Caption = "&List Box"
- End
- Begin VB.Menu mnuMulti
- Caption = "&Multiple-Column List Box"
- End
- Begin VB.Menu mnuScrollBars
- Caption = "&Scroll Bars"
- End
- Begin VB.Menu mnuArray
- Caption = "Control &Array"
- End
- End
- Attribute VB_Name = "frmMain"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub cmdExit_Click()
- Unload Me
- End
- End Sub
- Private Sub mnuArray_Click()
- frmControlArray.Show
- End Sub
- Private Sub mnuButtons_Click()
- frmButton.Show
- End Sub
- Private Sub mnuCheck_Click()
- frmCheck.Show
- End Sub
- Private Sub mnuListBox_Click()
- frmListBox.Show
- End Sub
- Private Sub mnuMulti_Click()
- frmMulti.Show
- End Sub
- Private Sub mnuNumber_Click()
- frmNumber.Show
- End Sub
- Private Sub mnuScrollBars_Click()
- frmScrollBars.Show
- End Sub
- Private Sub mnuWordWrap_Click()
- frmWordWrap.Show
- End Sub
-