Hi

I've found the BUG!!!
Ian will fix the BASSWMA v1.6 VB Declarations!!!
* The error is: BASSWMA v1.6 uses 64 bit integers to set
position/etc. VB does NOT support 64 bit, so change it to:
Declare Function BASS_WMA_ChannelSetPosition64 Lib "basswma.dll" Alias "BASS_WMA_ChannelSetPosition" (ByVal handle As Long, ByVal pos As Long, ByVal poshigh as Long) As Long
'*******************************************
' 32-bit wrappers for 64-bit BASS functions
'*******************************************
Function BASS_WMA_ChannelSetPosition (ByVal handle As Long, ByVal pos As Long) As Long
BASS_WMA_ChannelSetPosition = BASS_WMA_ChannelSetPosition64(handle,pos,0)
End Function
CooL

Now it should work

Have fun!

JOBnik!
