A Try Catch block in moviethumb_DoubleClick() will prevent it.
'zoom images
Private Sub moviethumb_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles moviethumb.DoubleClick
If workingmoviedetails.fileinfo.posterpath <> Nothing Then
If IO.File.Exists(workingmoviedetails.fileinfo.posterpath) Then
Me.ControlBox = False
MenuStrip1.Enabled = False
'ToolStrip1.Enabled = False
' gotaudio try Catch
' Issue
http://billyad2000.darkbb.info/post?t=1378 Try
Dim newimage As New Bitmap(workingmoviedetails.fileinfo.posterpath)
Call zoomimage(newimage)
Catch ex As Exception
Me.ControlBox = True
MenuStrip1.Enabled = True
End Try
End If
End If
End Sub