8:24 PM Creating a webcam in Visual basic Programming |
Here is a simple programming in vb.net to create a webcam The program uses a list of available device drivers for webcam on your computer.
It used a DLL file called avicap32.dll.
avicap32.dll is a library that contains functions for the Windows API that is used to capture AVI movies and video from your web cameras and other video hardware.
Declare Function capGetDriverDescriptionA Lib "avicap32.dll" (ByVal wDriver As Short, ByVal lpszName As String, ByVal cbName As Integer, ByVal lpszVer As String, ByVal cbVer As Integer) As Boolean
The above function returns true if a device driver is found on your system or else it says "No capture device driver found"
Get the full source code here
|
|
Related blogs
You may also like to see:
[2014-05-16] | [Technical Solution] |
What is MSRA (Microsoft Remote Assistance) ? How to use it? |
[2015-01-05] | [Technical Solution] |
How to create ODBC data source and drivers to connect to Oracle or sql server database |
[2014-07-13] | [Technical Solution] |
Create an online megastore in your website by adding a shopping cart(eSHOP) |
[2014-09-30] | [Technical Solution] |
How to give a global url to an HTML page? How to create a website with custom url? |
[2014-02-11] | [Technical Solution] |
Advanced Encryption Standard (AES) algorithm : an algorithm for encryption and decryption for secure data transfer |
Total comments: 0 | |