hi there
i'm running a simple switch sequence every 2 seconds and I'm seeing a handle leak in the code. All I'm doing is the following;
Public Sub Connect(ByVal ip As String)
Me.Caption = "VLC Video: " & ip
VideoVLC.playlistClear
strURL = "udp://@" & ip & ":4568"
VideoVLC.addTarget strURL, Null, VLCPlayListAppendAndGo, -666
End Sub
This call happens every 2 seconds. What else do I need to do to release the handles?
joe