Viscom Software Screen2Video ActiveX Control

Start Method

Description:   

Start the screen recording. If you select a wrong video/audio compressor or the output file opening, the Start Method will return FALSE.

Usage:   

Screen2Video1.Start Parameter1

Return Value:

Return true - successful , Return false - Failure.

Parameter:

No Parameter1. 

 

Example:   

This Visual Basic example start the screen capture"

Private Sub cmdCapture_Click()     

    Screen2Video1.FileName = "c:\test.avi"
    
    result = Screen2Video1.Start

    If result = False Then
        MsgBox "Cannnot screen record,file opening or video/audio compressor not correct"
    End If

End Sub