0

I have converted my Face Recognition App to VB and it is giving an error which I am unable to resolve...

 Public Sub initialise_capture()
    grabber = New Capture()
    grabber.QueryFrame()
    'Initialize the FrameGraber event
    If parrellelToolStripMenuItem.Checked Then
        Application.Idle += New EventHandler(AddressOf FrameGrabber_Parrellel)
    Else
        Application.Idle += New EventHandler(AddressOf FrameGrabber_Standard)
    End If
End Sub

In C# it working fine but in VB its not working. Please help me resolve this problem as I am novice to .NET

0 Answers0