|
-
Dec 22nd, 2008, 04:01 AM
#1
Thread Starter
Addicted Member
[RESOLVED] Control Camera from Vb.Net
Hi all,
I want to know whether i can control camera of windows CE/ Pocket PC?
If you have any idea or references, please kindly let me know thanks.
-
Dec 22nd, 2008, 06:05 AM
#2
Frenzied Member
Re: Control Camera from Vb.Net
Sure - look at the CameraCaptureDialog namespace
Code:
Dim ccd As New CameraCaptureDialog()
ccd.Mode = CameraCaptureMode.Still
ccd.StillQuality = CameraCaptureStillQuality.High
ccd.Title = "Say Cheese"
If ccd.ShowDialog() = DialogResult.OK Then
pbImage.Image = New Bitmap(ccd.FileName)
End If
-
Dec 22nd, 2008, 08:54 PM
#3
Thread Starter
Addicted Member
Re: Control Camera from Vb.Net
 Originally Posted by petevick
Sure - look at the CameraCaptureDialog namespace
Code:
Dim ccd As New CameraCaptureDialog()
ccd.Mode = CameraCaptureMode.Still
ccd.StillQuality = CameraCaptureStillQuality.High
ccd.Title = "Say Cheese"
If ccd.ShowDialog() = DialogResult.OK Then
pbImage.Image = New Bitmap(ccd.FileName)
End If
Thanks Petevick 
Currently I have no device on hand and so postpone for a while.
after I get it, i will surely test it. I can't wait to see what is the result 
Thanks again.
By the way, are there any references ebook for this processing?
Like control camera function, control the features of window mobile, etc.
(I'm a new one for window mobile, so if my question is a little too far, please just forget it. Its ok )
-
Dec 23rd, 2008, 02:08 AM
#4
Frenzied Member
Re: [RESOLVED] Control Camera from Vb.Net
-
Dec 23rd, 2008, 08:44 PM
#5
Thread Starter
Addicted Member
Re: [RESOLVED] Control Camera from Vb.Net
 Originally Posted by petevick
thanks again Petevick. I will find that book.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|