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.
:D
Printable View
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.
:D
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
Quote:
Originally Posted by petevick
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 :D )
No ebooks, but there is the Microsoft Mobile Development Handbook
thanks again Petevick. I will find that book.Quote:
Originally Posted by petevick