Capture Frames Manually (Visual Basic)

This tutrolial teaches you how to capture frames manually.

1.

Start with the project that you created in My First Capture.

2.

Add a button control to your form and name it as follows:

 

Name

Caption

 

btnCaptureFrame

Capture Frame

3.

Update the btnStartCapture_Click Sub to be as follows:

Private Sub btnStartCapture_Click()
   ltmmCaptureCtrl1.StartCapture ltmmCapture_Mode_ManualFrames
End Sub

4.

Handle the btnCaptureFrame Click event, and code btnCaptureFrame_Click Sub as follows:

Private Sub btnCaptureFrame_Click()
   ltmmCaptureCtrl1.CaptureFrame
End Sub

5.

Run your program to test it.