VS 2008 Make A Webcam Input?
Jul 14, 2010
Is it posseble to make a webcam input?I dont have a webcam, but i have some orc and simular programs that requires a webcam (I cant change the programs to take another input)I was thinking on that i maby culd make a "fake" webcam input that was playing a movie file.
View 1 Replies
ADVERTISEMENT
Dec 28, 2009
ive been steaming on this one for quite some time. Ive got a program that relies on remote control of the computer, and i need to be able to take a webcam image without the user having to press buttons etc. So far, ive gotten to the point where i can find my webcam, and with the help of a button, start a preview, then take the picture and save it as a jpeg.Problem is, when you press the button to start the preview, another dialog box shows up (not related to my code) prompting me to select a video source..Im confused kus it seems as though the list i find on form_load does nothing at all if when i press the button it prompts me with the same list.Well you can infer from this that i cannot use the btnstart_click(sender, e) on form_load because it opens a dialog that wont close until i press ok, and i already tried to sendkeys enter, it didnt work.anyone have any idea how i can either alter my code, or make new code to take a web cam image, and save it with no user input?
[code]...
View 2 Replies
Sep 20, 2009
How can you access the webcam and microphone in VB.net, assuming the user even has one?
I fail to see a My.Computer.Webcam or My.Computer.Microphone, both of which would probably have been a nice addition.
View 1 Replies
May 13, 2009
I am trying to make a GUI that can input data into an exe that is already made.
View 1 Replies
Jan 23, 2011
how to make webcam zoom menu in vb.net
View 1 Replies
Mar 28, 2012
I have a logitech webcam that I use to take pictures of customers to submit to a server/database. Utilizing AVICAP32.DLL calls, I was able to modify my VB.NET program to take these pictures via a button in my program.
My question is, it would me more convenient to my intended users to click the webcam button, instead of clicking on the button in my program.
Is this possible to do in VB.NET? and how can I do this?
If this is not possible to do with my logitech webcam than is there a Microsoft Webcam that can do this?
View 1 Replies
Aug 3, 2010
I have a program for school project that has input fields for Name, Address, City, State and Zip. I need to error check so that the fields are not empty.I have used If statements that check to see if the fields are empty and shows a message box if they are but if I leave the whole form empty and click the button that activates it, all the if statements go- one by one instead of pausing for the user to input the required data.How do I check for data and make the program stay there until the data is input? I have tried TRY/CATCH but it won't catch this type of error.
this is the
'This program computes customer's bills at the pizza shop for all combinations of
'crusts, toppings, sizes and discounts
Option Strict On
Public Class PizzaForm
[code].....
View 10 Replies
Nov 23, 2009
I am developing a webcam application using vb.net. i want to display the number of webcam that is connect to the PC into a form and the user can be able to select from the list...let me how i can do this? i manage to steam the webcam video into the form..
View 6 Replies
Sep 15, 2010
After a long while I started a project in VB.Net. I am making a security cam application for my own room. What I have done so far is capturing image from webcam (15 fps) to a imagebox and copying a still image from that imagebox to another in an intervall I have decided. Afterwards my code saves the image with a date and time as jpg. The code for capturing image I have found in this forum (iCam). My problem is (by the way I am an amateur programmer ) that the first imagebox (for realtime image capture) is not being showed (I dont want to see it). But if it is not active then all still images (saved as jpg) are all black. I think it is a drawing issue. I think imagebox is not being drawn (because it is not visible (actually the form is not visible)) and that is why still images are black. But I really don't know how to fix it? The class for capturing still images is very useful but only works with an imagebox.
(I really tried to understand the code. Especially the function, which copies a still image from 15 fps webcam output to a imagebox (which is used to save image as jpg file). But there are objects like: IntPtr, Hdc (getHdc, releaseHdc) and BitBlt. I really don't know anything about those objects.)
Code of iCam:
Option Explicit On
Option Strict On
Public Class iCam
#Region "Api/constants"
[CODE]...
I get realtime images with: iCam.initcam(me.picturebox1.handle.int32) and copy with: picturebox2.image= iCam.copyimage(picturebox1,New RectangleF(0, 0, Me.picturebox1.Width, Me.picturebox1.Height))
View 1 Replies
Jun 21, 2010
I'm developing an application and it needs a facility to take photo of the customer using the webcam.
View 6 Replies
Aug 23, 2009
i want to make a webcam capture program but i want a msgbox to display if webcam is not found.
View 1 Replies
Jul 2, 2010
I'm using this code to get the preview window
Dim iHeight As Integer = picCapture.Height
Dim iWidth As Integer = picCapture.Width
'
' Open Preview window in picturebox
[Code]....
As you can see, I have 2 sources. Would it be possible to not show the preview window, but instead loop through all the sources?
That would be in a timer, so like each 10 seconds a pictures is made from each source.
View 1 Replies
Apr 4, 2009
I am interested in streaming video from a webcam on one PC to another PC. Could this be done without streaming to a server. Could this be achieved by streaming using P2P?
View 4 Replies
Nov 24, 2011
Work now since some time on the task to control the microphone of a USB connected Webcam using Vb2008. The required function is simply to switch it on (full level)and switch it off (low level). I used the corresponding API's mixerline, mixerlineControl, mixerlineControlDetails etc but I could not get the microphone reacting somehow. I am able to handle all my Video usable also available code from the forums, but I could not find an applicable code I could modify for this microphone application.
View 6 Replies
Apr 20, 2009
How to make a picturebox display "broadcast" from webcam, I want to take a picture and then save this. I've read lots of different proposals, however they are in VB6 or C# or any other but Visual Basic 2005
View 12 Replies
Dec 16, 2010
showing script for make a snapshot from an usb webcam?
View 4 Replies
May 16, 2011
I need to capture a picture from webcam for a project... But there seems to be no easy code available... Also am not able to find any working code for it... saw a codeproject code, but couldnt get it to work..
View 5 Replies
Jan 14, 2010
i m working on a project which involves webcam interfacing .i need it interface a webcam using visual basic express edition 2008, collect the images and use it for further processing..
View 6 Replies
Mar 30, 2010
Is there a way to make an input box value required? I have an input box that assigns the value to a label on my form, and I would like to know if you can prevent the user from leaving it blank and instead require a value?
View 7 Replies
Oct 26, 2010
Am using An inputbox in my form.If i Press OK the code is fine.When i Press cancel the Program displayin an error. Wat should i Do ?
View 3 Replies
Oct 29, 2009
I would like to know how to make my l(length) always bigger than w(width).eg: message box "Make Length bigger than width" and the 2 inputs, and 3 outputs = [blank]
Public Class Form1 Dim min, max As Integer Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
[Code]...
View 4 Replies
Sep 29, 2010
I am writing a small program here and this i=code is straight out a book and it doesn't seem to work. Its supposed to ensure that the users input is numeric and not contain letters.
Module Module1
Sub Main()
Dim user_Input As Single
Dim H As Single
Do
Console.Write("Enter you'r Height in Meters: ")
user_Input = Console.ReadLine
Loop Until IsNumeric(user_Input)
H = CSng(user_Input)
Console.WriteLine("You are {0} meters tall", H)
End Sub
End Module
View 4 Replies
Mar 13, 2012
Is there any way to get me a condition like this? If textbox1 (has string or integer inside) then how to make a condition if the textbox has an input in it or none?
View 2 Replies
Nov 24, 2010
I'm trying to catch up on my school work and for my evaluation I need to make an application where you input 2 numbers. We will call them x and y.
View 7 Replies
May 22, 2011
I used to program in BASIC, and am trying to learn VB now. What I am trying to do at the moment is take a keystroke on the numeric keypad (1-9 only) and pass it into my program to control what happens to a number as follows:[code]I can't seem to find anything in VB that allows simple keyboard entry in this manner.
View 2 Replies
Jan 21, 2010
I am new to VB.Net and programming all together. I am trying to make a program that will take 2 numbers input by the user, Add them together and display the sum. Then take the sum and divide it individually by each number to give you what percent of the sum the numbers are. I'm working on making it a program that will calculate the Hardy-Weinberg equilibrium for my Anthro Class. I'm just doing this for practice for my VB.Net Class. But i will move onto that at a later time. I just want to finish this first.
So.. Here is my code so far. It's not complete yet but this is should be enough to make it function.
[Code]...
View 24 Replies
Jun 14, 2011
I've tried to make a program whereby the input affects a variable.
If Label1.Text = "1" Then
store.number1 += 1
End If
[Code]....
I was just wondering if anyone knew of a better way of doing this, as I have to go up to 6 labels, each containing 100 numbers.
View 3 Replies
Sep 15, 2011
my program creates an error code when i enter the worng data but is only does it once, what code do i use to make it stop you until you enter the corrct data
View 4 Replies
Jun 7, 2009
i need to take user input and make a very simple bar graph from it in vb.net.
View 3 Replies
May 30, 2011
wondering what i should use to make the 1st letter of the input users name is Capitalised.
so textbox 1 they would enter - josh and when its shown in any labels is shows - Josh
would ucase be used here ? im not sure.
View 6 Replies