Hi, Your query is not clear. but i think you want to start your camera. if yes then try this code.
Dim ccd As New Microsoft.WindowsMobile.Forms.CameraCaptureDialog
ccd.Resolution = New Size(100, 200)
ccd.Mode = Microsoft.WindowsMobile.Forms.CameraCaptureMode.Still
ccd.Mode = CameraCaptureMode.Still
ccd.Owner = Me
ccd.Title = "Take a Picture"
If ccd.ShowDialog() = Windows.Forms.DialogResult.OK Then
If ccd.FileName <> String.Empty Then
PictureBox1.Image = New Bitmap(ccd.FileName)
ccd.Dispose()
End If
End If
May be it helps you. Thanks
~Khatri Mitesh khatrimitesh@hotmail.com Bikaner (Rajasthan) INDIA http://www.youtube.com/watch?v=-oJaaPCrk3Q