status

Started by mike_r22,

mike_r22

can anyone tell how to get the status of the mp3 file
like is it paused or is it playing?
 ::)

mike_r22

also how do i skip the track foward

'in vb6
'I tried this but did not work
'what is the correct way?
'
Dim x As Long
x = BASS_StreamGetLength(chan)
x = x + 2000
Call BASS_ChannelSetPosition(chan, x)

engineeer

Quotecan anyone tell how to get the status of the mp3 file
like is it paused or is it playing?
Use BASS_ChannelIsActive

Quotealso how do i skip the track foward

'in vb6
'I tried this but did not work
'what is the correct way?
'
Dim x As Long
x = BASS_StreamGetLength(chan)
x = x + 2000
Call BASS_ChannelSetPosition(chan, x)
x = BASS_ChannelGetPosition(chan)