Viscom Software VideoCap ActiveX Control

ShowImage Method

Description:   

Enables/disables show the image.
 

Usage:   

VideoCap1.ShowImage iIndex, bShow

iIndex - the index of image. First index is zero, up to 60 index. You can control 60 images in same time.
(Data Type: Integer)

bShow
True - enable show the image.
False - disable show the image.

Return Value:   

No Return value.

Example:   

This Visual Basic example invisible the image:

Private Sub Form_Load()
       VideoCap1.CaptureVideo=TRUE
        VideoCap1.ShowPreview=FALSE
        VideoCap1.CaptureFileName="c:\test.avi"
        VideoCap1.CaptureMode=TRUE
        VideoCap1.Start
        VideoCap1.ShowImage 0,FALSE
End Sub