VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > VB.net教程 >
  • VB.Net播放声音文件2

内容:

    

    '下面的代码是对属性的描述,是系统自已生成的,不要随意修改 

#Region " Windows Form Designer generated code " 

    

    'Required by the Windows Form Designer 

    Private components As System.ComponentModel.Container 

    Private WithEvents Button3 As System.WinForms.Button 

    Private WithEvents Button2 As System.WinForms.Button 

    Private WithEvents Button1 As System.WinForms.Button 

    Private WithEvents AxMMControl1 As AxMCI.AxMMControl 

    

    Dim WithEvents Form1 As System.WinForms.Form 

    

    '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. 

    Private Sub InitializeComponent() 

        Dim resources As System.Resources.ResourceManager = 
New System.Resources.ResourceManager(GetType(Form1)) 

        

        Me.components = New System.ComponentModel.Container
() 

        Me.Button1 = New System.WinForms.Button() 

        Me.AxMMControl1 = New AxMCI.AxMMControl() 

        Me.Button3 = New System.WinForms.Button() 

        Me.Button2 = New System.WinForms.Button() 

        

        AxMMControl1.BeginInit() 

        

        '@design Me.TrayHeight = 0 

        '@design Me.TrayLargeIcon = False 

        '@design Me.TrayAutoArrange = True 

        Button1.Location = New System.Drawing.Point(8, 8) 

        Button1.Size = New System.Drawing.Size(80, 32) 

        Button1.TabIndex = 1 

        Button1.Text = "Button1" 

        

        AxMMControl1.OcxState = CType(resources.GetObject
("AxMMControl1.OcxState"), System.WinForms.AxHost.State) 

        AxMMControl1.TabIndex = 0 

        AxMMControl1.Size = New System.Drawing.Size(236, 
33) 

        AxMMControl1.Location = New System.Drawing.Point
(32, 56) 

        

        Button3.Location = New System.Drawing.Point(208, 8) 

        Button3.Size = New System.Drawing.Size(80, 32) 

        Button3.TabIndex = 3 

        Button3.Text = "Button3" 

        

        Button2.Location = New System.Drawing.Point(104, 8) 

        Button2.Size = New System.Drawing.Size(88, 32) 

        Button2.TabIndex = 2 

        Button2.Text = "Button2" 

        Me.Text = "Form1" 

        Me.AutoScaleBaseSize = New System.Drawing.Size(6, 
14) 

        Me.ClientSize = New System.Drawing.Size(296, 29) 

        

        Me.Controls.Add(Button3) 

        Me.Controls.Add(Button2) 

        Me.Controls.Add(Button1) 

        Me.Controls.Add(AxMMControl1) 

        

        AxMMControl1.EndInit() 

    End Sub 

    

#End Region 

    '上面的代码是对属性的描述,是系统自已生成的,不要随意修改 

相关教程