Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
Private Sub Timer1_Timer()
Dim lCurPos As Long
Dim lLength As Long
lCurPos = SendCommand("status myMP3 position")
lLength = SendCommand("status myMP3 length")
If lCurPos >= lLength Then
SendCommand ("play myMP3 from 0")
End If
allpos.Caption = TimeFormat(lLength)
curpos.Caption = TimeFormat(lCurPos)
ProgressBar.Max = lLength
ProgressBar.Value = lCurPos
End Sub
Private Function TimeFormat(ByVal Ms&) As String
Dim se$, mi$, st$, m As Single, h As Single
If Ms <> 0 Then
Ms = Ms / 1000
h = Int(Ms / 3600)
m = Int((Ms - h * 3600) / 60)
End If
se = CStr(Ms - h * 3600 - m * 60)
mi = CStr(m)
st = CStr(h)
If Len(se) < 2 Then se = "0" & se
If Len(mi) < 2 Then mi = "0" & mi
TimeFormat = st & ":" & mi & ":" & se
End Function
Open txtVornamenliste for Binary as #FreieDatei
Do 'soll nur eine Schleife Symbolisieren
...
ProgressBar.Value = (ProgressBar.Max * Loc(FreieDatei)) / LOF(FreieDatei)
If hier sollte eine Bedingung sein then
DoEvents
End If
...
Loop
Close #FreieDatei