VB de .wma dosyası çaldırmak

şahi
02-04-2008, 14:53   |  #1  
OP Taze Üye
Teşekkür Sayısı: 0
16 mesaj
Kayıt Tarihi:Kayıt: Şub 2008

Arkadaşlar yapmakta olduğum motor simülasyonu programında motor çalıştır butonuna tıklandığında wma ya da mp3 dosyasını çaldırmasını istiyorum nasıl yapabilirim?
şimdiden teşekkürlerGöz kırpma

şahi
04-04-2008, 15:32   |  #2  
OP Taze Üye
Teşekkür Sayısı: 0
16 mesaj
Kayıt Tarihi:Kayıt: Şub 2008

Neyse ki arkadaşlar sorduğum sorununcevabını buldum aşağıdaki vb de .wav ses dosyalarını çaldırabilirsiniz.
kolay gelsin...Beğendim

Imports System
Imports System.Media
Imports System.Windows.Forms

Public Class Form1
    Inherits System.Windows.Forms.Form

    Private Player As New SoundPlayer

    Sub New()

        Me.InitializeComponent()

    End Sub

    Private Sub playLoopingButton_Click( _
        ByVal sender As System.Object, _
        ByVal e As System.EventArgs) _
        Handles playLoopingButton.Click

        Try
            ' Note: You may need to change the location specified based on
            ' the sounds loaded on your computer.
            Me.Player.SoundLocation = "C:\Windows\Media\chimes.wav"
            Me.Player.PlayLooping()
        Catch ex As Exception
            MessageBox.Show(ex.Message, "Error playing sound")
        End Try

    End Sub

    Private Sub stopPlayingButton_Click( _
        ByVal sender As System.Object, _
        ByVal e As System.EventArgs) _
        Handles stopPlayingButton.Click

        Me.Player.Stop()

    End Sub