Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
SelectCapDrv.rc
Package: videoCapture.rar [view]
Upload User: hzllkj
Upload Date: 2009-12-19
Package Size: 21k
Code Size: 2k
Category:
Video Capture
Development Platform:
Visual C++
- #include <windows.h>
- #include "CapPicture.h"
- /*************************************************************************
- * Bitmaps *
- *************************************************************************/
- BIT_EXIT BITMAP DISCARDABLE "exit.bmp"
- /*************************************************************************
- * Select Capture Driver Dialog *
- *************************************************************************/
- SELCAPDRVDLG DIALOG 6, 18, 258, 157
- STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
- CAPTION "Select a Capture Driver"
- FONT 8, "MS Sans Serif"
- BEGIN
- LISTBOX SELCAPDRVDLG_LSTBOX, 2, 24, 252, 105, LBS_SORT |
- WS_VSCROLL | WS_TABSTOP
- LTEXT "Available Drivers", 102, 97, 7, 68, 13
- PUSHBUTTON "Select Driver", SELCAPDRVDLG_BUTTON, 104, 135, 48, 18
- END
- /*************************************************************************
- * Right-Click Popup Menu *
- *************************************************************************/
- PopupMenu MENU
- BEGIN
- POPUP "Dummy Popup"
- BEGIN
- POPUP "File"
- BEGIN
- MENUITEM "Exit", EXIT
- MENUITEM "Move Window" MOVE
- END
- POPUP "Edit"
- BEGIN
- MENUITEM "Copy", COPY
- END
- POPUP "Video"
- BEGIN
- MENUITEM "Video Source Options", SOURCE
- MENUITEM "Change Video Format", FORMAT
- MENUITEM "Video Display Options", DISPLAY
- END
- END
- END