ICImagingControl.DeviceLost Event

This event is called if the video capture device is no longer valid; for example if it was unplugged.
Syntax:
Private Sub DeviceLost()
Remarks:

The ICImagingControl.Device property should be cleared by setting it to an empty string ("") in the DeviceLost sub.

Sample:

This example demonstrates how to implement a simple DeviceLost sub.

Private Sub ICImagingControl1_DeviceLost()
    MsgBox "The device has been lost!"
    Unload Me
End Sub
See also: ICImagingControl, ICImagingControl.Device, ICImagingControl.LiveStart, ICImagingControl.LiveStop

<< ICImagingControl