Results 1 to 5 of 5

Thread: [RESOLVED] Control Camera from Vb.Net

  1. #1

    Thread Starter
    Addicted Member scsfdev's Avatar
    Join Date
    Feb 2008
    Location
    Singapore
    Posts
    224

    Resolved [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.

    I'm using VS 2005 & 2008 & 2010 with SQL Server 2005 Express.

    My hobby beside programming: http://dslrstranger.wordpress.com

  2. #2
    Frenzied Member
    Join Date
    Oct 2005
    Posts
    1,286

    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
    Pete Vickers
    MVP - Device Application Development
    http://www.gui-innovations.com http://mobileworld.appamundi.com/blogs/

  3. #3

    Thread Starter
    Addicted Member scsfdev's Avatar
    Join Date
    Feb 2008
    Location
    Singapore
    Posts
    224

    Talking Re: Control Camera from Vb.Net

    Quote 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 )
    I'm using VS 2005 & 2008 & 2010 with SQL Server 2005 Express.

    My hobby beside programming: http://dslrstranger.wordpress.com

  4. #4
    Frenzied Member
    Join Date
    Oct 2005
    Posts
    1,286

    Re: [RESOLVED] Control Camera from Vb.Net

    No ebooks, but there is the Microsoft Mobile Development Handbook
    Pete Vickers
    MVP - Device Application Development
    http://www.gui-innovations.com http://mobileworld.appamundi.com/blogs/

  5. #5

    Thread Starter
    Addicted Member scsfdev's Avatar
    Join Date
    Feb 2008
    Location
    Singapore
    Posts
    224

    Re: [RESOLVED] Control Camera from Vb.Net

    Quote Originally Posted by petevick
    No ebooks, but there is the Microsoft Mobile Development Handbook
    thanks again Petevick. I will find that book.
    I'm using VS 2005 & 2008 & 2010 with SQL Server 2005 Express.

    My hobby beside programming: http://dslrstranger.wordpress.com

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width