Beispiel #1
0
        public Form1()
        {
            InitializeComponent();

            // Create a new SnagIt Video Capture object.
            // NOTE: First you must add a reference to
            // the SNAGIT 1.0 Type Library
            snagVideo = new VideoCaptureClass();

            CaptureBttn.Enabled = false;

            //Hook up event handler for recording errors
            snagVideo.OnRecorderError += RecorderErrorTextEventListener;
        }
Beispiel #2
0
        public Form1()
        {
            InitializeComponent();

             // Create a new SnagIt Video Capture object.
             // NOTE: First you must add a reference to
             // the SNAGIT 1.0 Type Library
             snagVideo = new VideoCaptureClass();

             CaptureBttn.Enabled = false;

             //Hook up event handler for recording errors
             snagVideo.OnRecorderError += RecorderErrorTextEventListener;
        }
Beispiel #3
0
 public SnagIt()
 {
     snagVideo = new SNAGITLib.VideoCaptureClass();
 }
Beispiel #4
0
        public Form1()
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();

             // Create a new SnagIt Video Capture object.
             // NOTE: First you must add a reference to
             // the SNAGIT 1.0 Type Library
             snagVideo = new SNAGITLib.VideoCaptureClass();
             SetDefaultOptions();
        }