<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-4051459133957790365</id><updated>2011-04-21T20:46:47.544-07:00</updated><title type='text'>How to play audio vb.net</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://howtoplayaudio.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4051459133957790365/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://howtoplayaudio.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>vbnetcode</name><uri>http://www.blogger.com/profile/04926504053784281645</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>1</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4051459133957790365.post-6690162819535691580</id><published>2009-02-04T01:52:00.001-08:00</published><updated>2009-02-04T01:52:51.555-08:00</updated><title type='text'></title><content type='html'>How to play audio files by using Visual Basic .NET or Visual Basic 2005&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Create a Windows Application&lt;br /&gt;1. Start Microsoft Visual Studio .NET or Microsoft Visual Basic 2005. &lt;br /&gt;2. On the File menu, point to New, and then click Project. &lt;br /&gt;3. Under Project Types, click Visual Basic Projects.&lt;br /&gt;&lt;br /&gt;Note In Visual Studio 2005, click Visual Basic under Project Types. &lt;br /&gt;4. Under Templates, click Windows Application. &lt;br /&gt;5. In the Name box, type AudioDemo, and then click OK. By default, Form1.vb is created. &lt;br /&gt;&lt;br /&gt;Back to the top&lt;br /&gt;&lt;br /&gt;Add a Windows Media Player control to the Application&lt;br /&gt;1. Start Visual Studio .NET or Visual Studio 2005. &lt;br /&gt;2. On the Tools menu, click Add/Remove Toolbox Items. &lt;br /&gt;&lt;br /&gt;Note In Visual Studio .NET 2002, on the Tools menu, click Customize Toolbox.&lt;br /&gt;&lt;br /&gt;In Visual Studio 2005, click Choose Toolbox Items on the Tools menu. &lt;br /&gt;3. Click the COM Components tab, and then click Browse. &lt;br /&gt;4. Locate and then click Msdxm.ocx, and then click Open.&lt;br /&gt;&lt;br /&gt;Note Msdxm.ocx is typically located in %WINDIR%/System32, where %WINDIR% is the location of the Windows directory on your computer. &lt;br /&gt;5. In the Customize Toolbox or Choose Toolbox Item dialog box, click OK. In Visual Studio .NET 2003 and in Visual Studio 2005, a WindowsMediaPlayer control is added to the toolbox. In Visual Studio .NET 2002, a MediaPlayer control is added to the toolbox. &lt;br /&gt;6. In Visual Studio .NET 2003 or in Visual Studio 2005, add a WindowsMediaPlayer control to Form1. In Visual Studio .NET 2002, add a MediaPlayer control.  &lt;br /&gt;7. AxMediaPlayer1 is added to Form1. &lt;br /&gt;&lt;br /&gt;Back to the top&lt;br /&gt;&lt;br /&gt;Add Buttons to Control the Windows Media Player&lt;br /&gt;1. Add four Button controls to Form1. &lt;br /&gt;2. Click Button1. &lt;br /&gt;3. In the Properties pane, change the Text property of Button1 to Load. &lt;br /&gt;4. Click Button2. &lt;br /&gt;5. In the Properties pane, change the Text property of Button2 to Play. &lt;br /&gt;6. Click Button3. &lt;br /&gt;7. In Properties pane, change the Text property of Button3 to Pause. &lt;br /&gt;8. Click Button4. &lt;br /&gt;9. In the Properties pane, change the Text property of Button4 to Stop. &lt;br /&gt;&lt;br /&gt;Back to the top&lt;br /&gt;&lt;br /&gt;Add an OpenFileDialog Component to Load an Audio File&lt;br /&gt;Add a OpenFileDialog component to Form1.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Back to the top&lt;br /&gt;&lt;br /&gt;Add Initialization Code&lt;br /&gt;1. On the View menu, click Code. &lt;br /&gt;2. In the "Windows Form Designer generated code" region, locate the following code:InitializeComponent()&lt;br /&gt; &lt;br /&gt;3. Add the following code after the code that you located in step 2:' Disable the Play, the Pause, and the Stop buttons.&lt;br /&gt;Button2.Enabled = False&lt;br /&gt;Button3.Enabled = False&lt;br /&gt;Button4.Enabled = False&lt;br /&gt;&lt;br /&gt;' Hide the Windows Media Player.&lt;br /&gt;AxMediaPlayer1.Visible = False&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Back to the top&lt;br /&gt;&lt;br /&gt;Add Code to Load an Audio File&lt;br /&gt;1. On the View menu, click Designer. &lt;br /&gt;2. Double-click the Load control, and then add the following code to the Button1_Click event-handler:' Reset the file names for the Open File dialog box and for the Media Player.&lt;br /&gt;OpenFileDialog1.FileName = ""&lt;br /&gt;AxMediaPlayer1.FileName = ""&lt;br /&gt;' Display the Open File dialog box.&lt;br /&gt;OpenFileDialog1.ShowDialog()&lt;br /&gt;' Verify that Cancel was not clicked.&lt;br /&gt;If Not OpenFileDialog1.FileName = "" Then&lt;br /&gt;   ' Disable the Load button.&lt;br /&gt;   Button1.Enabled = False&lt;br /&gt;   ' Prevent the Media Player from automatically playing loaded files.&lt;br /&gt;   AxMediaPlayer1.AutoStart = False&lt;br /&gt;   ' Set the Media Player audio file.&lt;br /&gt;   AxMediaPlayer1.FileName = OpenFileDialog1.FileName&lt;br /&gt;   MessageBox.Show("The following file has been loaded in the Media Player control: " + AxMediaPlayer1.FileName)&lt;br /&gt;   ' Enable the Play button.&lt;br /&gt;   Button2.Enabled = True&lt;br /&gt;Else&lt;br /&gt;   ' Disable the Play button.&lt;br /&gt;   Button2.Enabled = False&lt;br /&gt;End If&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Back to the top&lt;br /&gt;&lt;br /&gt;Add Code to Play an Audio File&lt;br /&gt;1. On the View menu, click Designer. &lt;br /&gt;2. Double-click the Play control, and then add the following code to the Button2_Click event-handler:' Disable the Load and the Play buttons.&lt;br /&gt;Button1.Enabled = False&lt;br /&gt;Button2.Enabled = False&lt;br /&gt;' Play the audio file.&lt;br /&gt;AxMediaPlayer1.Play()&lt;br /&gt;' Enable the Pause and the Stop buttons.&lt;br /&gt;Button3.Enabled = True&lt;br /&gt;Button4.Enabled = True&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Back to the top&lt;br /&gt;&lt;br /&gt;Add Code to Pause an Audio File&lt;br /&gt;1. On the View menu, click Designer. &lt;br /&gt;2. Double-click the Pause control, and then add the following code to the Button3_Click event-handler:' Disable the Pause button.&lt;br /&gt;Button3.Enabled = False&lt;br /&gt;' Pause the audio file.&lt;br /&gt;AxMediaPlayer1.Pause()&lt;br /&gt;' Enable the Play button.&lt;br /&gt;Button2.Enabled = True&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Back to the top&lt;br /&gt;&lt;br /&gt;Add Code to Stop an Audio File&lt;br /&gt;1. On the View menu, click Designer. &lt;br /&gt;2. Double-click the Stop control, and then add the following code to the Button4_Click event-handler:' Disable the Pause and the Stop buttons.&lt;br /&gt;Button3.Enabled = False&lt;br /&gt;Button4.Enabled = False&lt;br /&gt;' Stop playing the audio file, and then reset the next play position to the beginning.&lt;br /&gt;AxMediaPlayer1.Stop()&lt;br /&gt;AxMediaPlayer1.CurrentPosition = 0&lt;br /&gt;' Enable the Load and the Play buttons.&lt;br /&gt;Button1.Enabled = True&lt;br /&gt;Button2.Enabled = True&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Back to the top&lt;br /&gt;&lt;br /&gt;Sample Code Listing (Form1.vb)&lt;br /&gt;Option Strict On&lt;br /&gt;&lt;br /&gt;Public Class Form1&lt;br /&gt;    Inherits System.Windows.Forms.Form&lt;br /&gt;&lt;br /&gt;#Region " Windows Form Designer generated code "&lt;br /&gt;&lt;br /&gt;    Public Sub New()&lt;br /&gt;        MyBase.New()&lt;br /&gt;&lt;br /&gt;        ' This call is required by the Windows Form Designer.&lt;br /&gt;      InitializeComponent()&lt;br /&gt;&lt;br /&gt;      ' Disable the Play, the Pause, and the Stop buttons.&lt;br /&gt;      Button2.Enabled = False&lt;br /&gt;      Button3.Enabled = False&lt;br /&gt;      Button4.Enabled = False&lt;br /&gt;&lt;br /&gt;      ' Hide the Media Player.&lt;br /&gt;      AxMediaPlayer1.Visible = False&lt;br /&gt;      &lt;br /&gt;        ' Add any initialization after the InitializeComponent() call.&lt;br /&gt;&lt;br /&gt;    End Sub&lt;br /&gt;&lt;br /&gt;    ' Form overrides Dispose to clean up the component list.&lt;br /&gt;    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)&lt;br /&gt;        If disposing Then&lt;br /&gt;            If Not (components Is Nothing) Then&lt;br /&gt;                components.Dispose()&lt;br /&gt;            End If&lt;br /&gt;        End If&lt;br /&gt;        MyBase.Dispose(disposing)&lt;br /&gt;    End Sub&lt;br /&gt;&lt;br /&gt;    ' Required by the Windows Form Designer.&lt;br /&gt;    Private components As System.ComponentModel.IContainer&lt;br /&gt;&lt;br /&gt;    ' NOTE: The following procedure is required by the Windows Form Designer&lt;br /&gt;    ' It can be modified using the Windows Form Designer.  &lt;br /&gt;    ' Do not modify it using the code editor.&lt;br /&gt;   Friend WithEvents AxMediaPlayer1 As AxMediaPlayer.AxMediaPlayer&lt;br /&gt;   Friend WithEvents Button1 As System.Windows.Forms.Button&lt;br /&gt;   Friend WithEvents Button2 As System.Windows.Forms.Button&lt;br /&gt;   Friend WithEvents Button3 As System.Windows.Forms.Button&lt;br /&gt;   Friend WithEvents Button4 As System.Windows.Forms.Button&lt;br /&gt;   Friend WithEvents OpenFileDialog1 As System.Windows.Forms.OpenFileDialog&lt;br /&gt;   &lt;System.Diagnostics.DebuggerStepThrough()&gt; Private Sub InitializeComponent()&lt;br /&gt;      Dim resources As System.Resources.ResourceManager = New System.Resources.ResourceManager(GetType(Form1))&lt;br /&gt;      Me.AxMediaPlayer1 = New AxMediaPlayer.AxMediaPlayer&lt;br /&gt;      Me.Button1 = New System.Windows.Forms.Button&lt;br /&gt;      Me.Button2 = New System.Windows.Forms.Button&lt;br /&gt;      Me.Button3 = New System.Windows.Forms.Button&lt;br /&gt;      Me.Button4 = New System.Windows.Forms.Button&lt;br /&gt;      Me.OpenFileDialog1 = New System.Windows.Forms.OpenFileDialog&lt;br /&gt;      CType(Me.AxMediaPlayer1, System.ComponentModel.ISupportInitialize).BeginInit()&lt;br /&gt;      Me.SuspendLayout()&lt;br /&gt;      '&lt;br /&gt;      'AxMediaPlayer1&lt;br /&gt;      '&lt;br /&gt;      Me.AxMediaPlayer1.Location = New System.Drawing.Point(224, 0)&lt;br /&gt;      Me.AxMediaPlayer1.Name = "AxMediaPlayer1"&lt;br /&gt;      Me.AxMediaPlayer1.OcxState = CType(resources.GetObject("AxMediaPlayer1.OcxState"), System.Windows.Forms.AxHost.State)&lt;br /&gt;      Me.AxMediaPlayer1.Size = New System.Drawing.Size(286, 225)&lt;br /&gt;      Me.AxMediaPlayer1.TabIndex = 0&lt;br /&gt;      '&lt;br /&gt;      'Button1&lt;br /&gt;      '&lt;br /&gt;      Me.Button1.Location = New System.Drawing.Point(16, 72)&lt;br /&gt;      Me.Button1.Name = "Button1"&lt;br /&gt;      Me.Button1.TabIndex = 1&lt;br /&gt;      Me.Button1.Text = "Load"&lt;br /&gt;      '&lt;br /&gt;      'Button2&lt;br /&gt;      '&lt;br /&gt;      Me.Button2.Location = New System.Drawing.Point(32, 104)&lt;br /&gt;      Me.Button2.Name = "Button2"&lt;br /&gt;      Me.Button2.TabIndex = 2&lt;br /&gt;      Me.Button2.Text = "Play"&lt;br /&gt;      '&lt;br /&gt;      'Button3&lt;br /&gt;      '&lt;br /&gt;      Me.Button3.Location = New System.Drawing.Point(40, 136)&lt;br /&gt;      Me.Button3.Name = "Button3"&lt;br /&gt;      Me.Button3.TabIndex = 3&lt;br /&gt;      Me.Button3.Text = "Pause"&lt;br /&gt;      '&lt;br /&gt;      'Button4&lt;br /&gt;      '&lt;br /&gt;      Me.Button4.Location = New System.Drawing.Point(56, 192)&lt;br /&gt;      Me.Button4.Name = "Button4"&lt;br /&gt;      Me.Button4.TabIndex = 4&lt;br /&gt;      Me.Button4.Text = "Stop"&lt;br /&gt;      '&lt;br /&gt;      'Form1&lt;br /&gt;      '&lt;br /&gt;      Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)&lt;br /&gt;      Me.ClientSize = New System.Drawing.Size(712, 397)&lt;br /&gt;      Me.Controls.Add(Me.Button4)&lt;br /&gt;      Me.Controls.Add(Me.Button3)&lt;br /&gt;      Me.Controls.Add(Me.Button2)&lt;br /&gt;      Me.Controls.Add(Me.Button1)&lt;br /&gt;      Me.Controls.Add(Me.AxMediaPlayer1)&lt;br /&gt;      Me.Name = "Form1"&lt;br /&gt;      Me.Text = "Form1"&lt;br /&gt;      CType(Me.AxMediaPlayer1, System.ComponentModel.ISupportInitialize).EndInit()&lt;br /&gt;      Me.ResumeLayout(False)&lt;br /&gt;&lt;br /&gt;   End Sub&lt;br /&gt;&lt;br /&gt;#End Region&lt;br /&gt;&lt;br /&gt;   Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;      ' Reset the file names for the Open dialog box and for the Media Player.&lt;br /&gt;      OpenFileDialog1.FileName = ""&lt;br /&gt;      AxMediaPlayer1.FileName = ""&lt;br /&gt;      ' Display the Open File dialog box.&lt;br /&gt;      OpenFileDialog1.ShowDialog()&lt;br /&gt;      ' Verify that Cancel was not clicked.&lt;br /&gt;      If Not OpenFileDialog1.FileName = "" Then&lt;br /&gt;         ' Disable the Load button.&lt;br /&gt;         Button1.Enabled = False&lt;br /&gt;         ' Prevent the Media Player from automatically playing loaded files.&lt;br /&gt;         AxMediaPlayer1.AutoStart = False&lt;br /&gt;         ' Set the Media Player audio file.&lt;br /&gt;         AxMediaPlayer1.FileName = OpenFileDialog1.FileName&lt;br /&gt;         MessageBox.Show("The following file has been loaded in the Media Player control: " + AxMediaPlayer1.FileName)&lt;br /&gt;         ' Enable the Play button.&lt;br /&gt;         Button2.Enabled = True&lt;br /&gt;      Else&lt;br /&gt;         ' Disable the Play button.&lt;br /&gt;         Button2.Enabled = False&lt;br /&gt;      End If&lt;br /&gt;   End Sub&lt;br /&gt;&lt;br /&gt;   Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click&lt;br /&gt;      ' Disable the Load and the Play buttons.&lt;br /&gt;      Button1.Enabled = False&lt;br /&gt;      Button2.Enabled = False&lt;br /&gt;      ' Play the audio file.&lt;br /&gt;      AxMediaPlayer1.Play()&lt;br /&gt;      ' Enable the Pause and the Stop buttons.&lt;br /&gt;      Button3.Enabled = True&lt;br /&gt;      Button4.Enabled = True&lt;br /&gt;   End Sub&lt;br /&gt;&lt;br /&gt;   Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click&lt;br /&gt;      ' Disable the Pause button.&lt;br /&gt;      Button3.Enabled = False&lt;br /&gt;      ' Pause the audio file.&lt;br /&gt;      AxMediaPlayer1.Pause()&lt;br /&gt;      ' Enable the Play button.&lt;br /&gt;      Button2.Enabled = True&lt;br /&gt;   End Sub&lt;br /&gt;&lt;br /&gt;   Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click&lt;br /&gt;      ' Disable the Pause and the Stop buttons.&lt;br /&gt;      Button3.Enabled = False&lt;br /&gt;      Button4.Enabled = False&lt;br /&gt;      ' Stop playing the audio file, and then reset the next play position to the beginning.&lt;br /&gt;      AxMediaPlayer1.Stop()&lt;br /&gt;      AxMediaPlayer1.CurrentPosition = 0&lt;br /&gt;      ' Enable the Load and the Play buttons.&lt;br /&gt;      Button1.Enabled = True&lt;br /&gt;      Button2.Enabled = True&lt;br /&gt;   End Sub&lt;br /&gt;End Class&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;source :http://msdn2.microsoft.com&lt;br /&gt;&lt;br /&gt;-------------------------------------------------------&lt;br /&gt;&lt;br /&gt;&lt;a href="http://gambarbergerak-riaq.blogspot.com"&gt;Trik Gambar Bergerak&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://gambar-dimouse.blogspot.com"&gt;Trik Gambar-dimouse&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://hapuspwdmysql.blogspot.com"&gt;Trik hapus pwd mysql&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://insertintodb.blogspot.com"&gt;Trik insertin to db&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://jadirootdilinux.blogspot.com"&gt;Trik jadi root dilinux&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://jam-distatus-bar.blogspot.com"&gt;Trik jam-distatus-bar&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://koneksi-kedatabase.blogspot.com"&gt;Trik Koneksi-ke database&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://koneksi-msql-php.blogspot.com"&gt;Trik Koneksi-msql-php&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://lihat-database-mysql.blogspot.com"&gt;Trik lihat-database-mysql&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://membahas-fungsi-else.blogspot.com"&gt;Trik membahas-fungsi-else&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://member-area-riaq.blogspot.com"&gt;Trik member-area&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://UsingSession.blogspot.com"&gt;Using Session&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://usingThreadpoolsql2005.blogspot.com"&gt;Using Thread pool sql2005&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://usingcheckboxvb2008.blogspot.com"&gt;Using check box vb2008&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://usingradiobuttonvb2008.blogspot.com"&gt;Using radio button vb2008&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://valentineday.blogspot.com"&gt;Valentineday&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://vb2008withcontrol.blogspot.com"&gt;vb2008 with control&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://vb2008withcontrolproperties.blogspot.com"&gt;vb2008 with control properties&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://vb2008withorientedprogramming.blogspot.com"&gt;vb2008 with oriented programming&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://vb.netsolutionfiles.blogspot.com"&gt;VB.NET Solution files&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://vbnetcodemyclass.blogspot.com"&gt;VB.NET Code myclass&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;iframe src="http://rcm.amazon.com/e/cm?t=woodworkin09c-20&amp;o=1&amp;p=8&amp;l=as1&amp;asins=B000FI73MA&amp;fc1=000000&amp;IS2=1&amp;lt1=_blank&amp;m=amazon&amp;lc1=0000FF&amp;bc1=000000&amp;bg1=FFFFFF&amp;f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"&gt;&lt;/iframe&gt; &lt;iframe src="http://rcm.amazon.com/e/cm?t=woodworkin09c-20&amp;o=1&amp;p=8&amp;l=as1&amp;asins=B000P9ZBFA&amp;fc1=000000&amp;IS2=1&amp;lt1=_blank&amp;m=amazon&amp;lc1=0000FF&amp;bc1=000000&amp;bg1=FFFFFF&amp;f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"&gt;&lt;/iframe&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4051459133957790365-6690162819535691580?l=howtoplayaudio.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://howtoplayaudio.blogspot.com/feeds/6690162819535691580/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://howtoplayaudio.blogspot.com/2009/02/how-to-play-audio-files-by-using-visual.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4051459133957790365/posts/default/6690162819535691580'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4051459133957790365/posts/default/6690162819535691580'/><link rel='alternate' type='text/html' href='http://howtoplayaudio.blogspot.com/2009/02/how-to-play-audio-files-by-using-visual.html' title=''/><author><name>vbnetcode</name><uri>http://www.blogger.com/profile/04926504053784281645</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
