Auto:
End Sub on Sub
endif -> End If
xyz=1 -> xyz = 1
If Not bToggleVideo Then -> If Not(bToggleVideo) Then
MsgBox "abc" -> MsgBox("abc")
No need for:
Sub Globals
Dim ListView1 As ListView
End Sub
End Sub on Sub
endif -> End If
xyz=1 -> xyz = 1
If Not bToggleVideo Then -> If Not(bToggleVideo) Then
MsgBox "abc" -> MsgBox("abc")
No need for:
Sub Globals
Dim ListView1 As ListView
End Sub