![]()
|
|
Visual Basic Quellcode |
1 2 3 |
If Bass.BASS_ChannelIsActive(stream) = BASSActive.BASS_ACTIVE_PLAYING Then '... End If |
|
|
Visual Basic Quellcode |
1 |
Bass.BASS_Init(-1, 44100, BASSInit.BASS_DEVICE_CPSPEAKERS, IntPtr.Zero, Nothing) |
Benutzerinformationen überspringen
Dabei seit: 10. Oktober 2009
Wohnort: k
Frühere Benutzernamen: m0nst3rkill3r
Zitat von »"http://forums.macrumors.com/showpost.php?s=9e0078570b2b62fd044cc1b13d212b09&p=4777525&postcount=1064"«
When talking about how apple cannot influence the future of computers, you also forgot to mention that the internet was created on a network of macs to start with. Thats why every online PeeCee has a MAC code. Even my PSP needs a MAC code to get online....
|
|
Visual Basic Quellcode |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
Imports Un4seen.Bass Public Class Form1 Public stream As Integer Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Bass.BASS_Init(-1, 44100, BASSInit.BASS_DEVICE_CPSPEAKERS, IntPtr.Zero, Nothing) End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click stream = Bass.BASS_StreamCreateFile("E:\Musik\alex C\Alex C. feat. Yass - Du bist so Porno.mp3", 0, 0, BASSFlag.BASS_STREAM_AUTOFREE Or BASSFlag.BASS_STREAM_PRESCAN) Bass.BASS_ChannelPlay(stream, False) End Sub End Class |
Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »urzeitfurz« (8. Juli 2010, 21:22)
) ?