Capture Frames Manually (Visual FoxPro 6.0)

This tutrolial teaches you how to capture frames manually.

1.

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

2.

Add a command button to your form and name it as follows.

 

Name

Caption

 

btnCaptureFrame

Capture Frame

3.

Update the btnStartCapture Click procedure to be as follows.

#define ltmmCapture_Mode_ManualFrames 4
ThisForm.ltmmCaptureCtrl1.StartCapture (ltmmCapture_Mode_ManualFrames)

4.

Code the btnCaptureFrame Click procedure as follows.

ThisForm.ltmmCaptureCtrl1.CaptureFrame ()

5.

Run your program to test it.