Hi,
Sorry, I'm not a
VB programmer, however, I can give you some code in C or asm.
C code to get current playing position in msec would look something like:
Code:
HWND hWndBsplayer;
DWORD dwMsecPos;
hWndBsplayer = FindWindow("BSPlayer", NULL);
dwMsecPos = SendMessage(hWndBsplayer, WM_BSP_CMD, BSP_GetMovPos, 0´);
Then dwMsecPos should contain the current playing position in msec.
cu
Halle