Viscom Software VideoCap ActiveX Control

ReceivedFullScreenHWnd Property

Description:   

For some development tools, you must set the specific window to receive mouse and keyboard messages. e.g. vc++, c# 2005

Usage:   

VideoCap1.ReceivedFullScreenHWnd[= value]

Data Type:   

Integer

Example:   

c#2005  Syntax

private void Form1_Load(object sender, EventArgs e)
{
axVideoCap1.ReceivedFullScreenHWnd = (int)this.Handle;
axVideoCap1.ClearFullScreenType = 0;
}

Then when you call axVideoCap1.ShowFullScreen(true) with full screen mode, the form will received keyboard, mouse event.

 private void Form1_KeyDown(object sender, KeyEventArgs e)
{

   if (e.KeyData == Keys.Escape)
  {
      if (cboclearkey.SelectedIndex == 0)
         axVideoCap1.ShowFullScreen(false);
  }
}

 


Value:   

the window handle.