J. Scott Elblein
Well-known member
I am playing a small mp3 upon program startup, and I have 2 working versions of playing an mp3, but I'd like to know which is better to use in terms of less end user problems (errors, installing extra components in my installer, conflicts, older OS's, etc.)?
the directx version? i.e.:
or the COM Windows Media Player version, where I add the control to the form, make it invisible, and then use:
the directx version? i.e.:
VB.NET:
Dim objAudio As Audio
objAudio = New Audio(Application.StartupPath & "\intro.mp3", True)
objAudio.Play()
or the COM Windows Media Player version, where I add the control to the form, make it invisible, and then use:
VB.NET:
Me.AxWindowsMediaPlayer1.URL = Application.StartupPath & "\intro.mp3"