i need to increase/decrease mediabrowser position of 'n' seconds during a file is playing (ex. from position 00:01:20 to 00:01:30).
:sign0085:
B4X:
Dim length, position, seconds As Int
length = MB.MediaLength
'--- show position ---
lblPosition2.Text = NumberFormat(DateTime.GetMinute(MB.MediaPosition), 2, 0) & ":" & _
NumberFormat(DateTime.GetSecond(MB.MediaPosition), 2, 0)& "/" & _
'--- increase/decrease position ---
newposition=DateTime.GetSecond(MB.MediaPosition) + 10 ???????????????????????
MB.MediaSeek (newposition)
'--- refresh bar position ---
barPosition.Value = newposition
.....
:sign0085: