Description
Displays the compression dialog for the AVI recording. The dialog allows you to select a desired codec and adjust its parameters.
Syntax
[VB]
objActiveGige.ShowCompressionDlg
[C/C++]
HRESULT ShowCompressionDlg( );
Parameters
Return Values
Example
This VB example demonstrates a simple video recording application
Private Sub Form_Load()
ActiveGige1.Acquire=True
End Sub
Private Sub CompressionButton_Click()
ActiveGige1.ShowCompressionDlg
End Sub
Private Sub StartButton_Click()
ActiveGige1.StartCapture "c:\mycapture.avi"
End Sub
Private Sub StopButton_Click()
ActiveGige1.StopCapture
End Sub
Remarks
The settings selected in the compression dialog are remembered as long as the corresponding ActiveGigE control remains in the memory.