Controlling media player in VBA question
I want to get media player to jump back 5 seconds with a VBA macro
I tried
Dim lastpos As Long
MP.CurrentPosition = lastpos - 5
but that didn't work. It just says:
run time error 380
currentposition must be -1.0 or greater than or equal to 0.0
Anyone know how it might be done?
|