home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmMain
- BorderStyle = 1 'Fixed Single
- Caption = "Test NCTAudioControls"
- ClientHeight = 4665
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 3240
- Icon = "frmMain.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 4665
- ScaleWidth = 3240
- StartUpPosition = 2 'CenterScreen
- Begin VB.CommandButton Command9
- Caption = "CMU"
- Height = 435
- Left = 150
- TabIndex = 8
- Top = 3604
- Width = 2985
- End
- Begin VB.CommandButton Command8
- Caption = "VolumeButtonVer02"
- Height = 435
- Left = 150
- TabIndex = 7
- Top = 3102
- Width = 2985
- End
- Begin VB.CommandButton Command7
- Caption = "Close "
- Height = 405
- Left = 150
- TabIndex = 6
- Top = 4110
- Width = 2985
- End
- Begin VB.CommandButton Command6
- Caption = "Slider Ver02"
- Height = 435
- Left = 150
- TabIndex = 5
- Top = 2128
- Width = 2985
- End
- Begin VB.CommandButton Command5
- Caption = "Slider Ver01"
- Height = 405
- Left = 150
- TabIndex = 4
- Top = 2630
- Width = 2985
- End
- Begin VB.CommandButton Command4
- Caption = "StepButtonsVer01"
- Height = 435
- Left = 150
- TabIndex = 3
- Top = 1154
- Width = 2985
- End
- Begin VB.CommandButton Command3
- Caption = "AmpBar"
- Height = 405
- Left = 150
- TabIndex = 2
- Top = 1656
- Width = 2985
- End
- Begin VB.CommandButton Command2
- Caption = "VolumeButtonVer01"
- Height = 405
- Left = 150
- TabIndex = 1
- Top = 682
- Width = 2985
- End
- Begin VB.CommandButton Command1
- Caption = "PlayButtonsVer01"
- Height = 435
- Left = 150
- TabIndex = 0
- Top = 180
- Width = 2985
- End
- Attribute VB_Name = "frmMain"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- Me.Visible = False
- frmPlayV1.Show 0, Me
- Me.Visible = True
- End Sub
- Private Sub Command2_Click()
- Me.Visible = False
- frmVolV1.Show 0, Me
- Me.Visible = True
- End Sub
- Private Sub Command3_Click()
- Me.Visible = False
- frmAmpBar.Show 0, Me
- Me.Visible = True
- End Sub
- Private Sub Command4_Click()
- Me.Visible = False
- frmStepV1.Show 0, Me
- Me.Visible = True
- End Sub
- Private Sub Command5_Click()
- Me.Visible = False
- frmHorSlider.Show 0, Me
- Me.Visible = True
- End Sub
- Private Sub Command6_Click()
- Me.Visible = False
- frmVertSlider.Show 0, Me
- Me.Visible = True
- End Sub
- Private Sub Command7_Click()
- Unload Me
- End Sub
- Private Sub Command8_Click()
- Me.Visible = False
- frmVolV2.Show 0, Me
- Me.Visible = True
- End Sub
- Private Sub Command9_Click()
- Me.Visible = False
- frmCMU.Show 0, Me
- Me.Visible = True
- End Sub
-