Author Topic: status  (Read 2891 times)

mike_r22

  • Posts: 8
status
« on: 14 Jun '03 - 16:42 »
can anyone tell how to get the status of the mp3 file
like is it paused or is it playing?
::)

mike_r22

  • Posts: 8
Re: status
« Reply #1 on: 14 Jun '03 - 17:33 »
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

  • Posts: 86
Re: status
« Reply #2 on: 14 Jun '03 - 17:49 »
Quote
can anyone tell how to get the status of the mp3 file
like is it paused or is it playing?

Use BASS_ChannelIsActive

Quote
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)

x = BASS_ChannelGetPosition(chan)