Viscom Software VideoCap ActiveX Control

IsMsAccess Property

Description:   

Set the true if using the ActiveX Control in MS Access. Default is false. When you import the ActiveX on Ms Access form. You must select the ActiveX Control's property page, set the IsMsAccess property= true. Then you need call InitControl method in form load event.

Usage:   

VideoCap1.IsMsAccess[= value]


Data Type:   

bool

Example:   

This is MS Access example. After called InitControl method, you can get the video devices, video formats, audio devices information.

Private Sub Form_Load()
        VideoCap0.InitControl
        cboVideoDevice.RowSource = ""
        For Each mydevice In VideoCap0.Devices
            cboVideoDevice.AddItem mydevice.Name
        Next
       cboVideoFormat.RowSource = ""
         For Each myVideoformat In VideoCap0.VideoFormats
            cboVideoFormat.AddItem myVideoformat.Name
        Next
End Sub


Value:   

 true or false