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ürler
VB de .wma dosyası çaldırmak
Neyse ki arkadaşlar sorduğum sorununcevabını buldum aşağıdaki vb de .wav ses dosyalarını çaldırabilirsiniz.
kolay gelsin...
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