From: Xavier PACOTTE on 16 Apr 2010 04:24 Hello, CF 3.5 WM 6.5 Langage C# I want to take pictures with my PDA and DOTNET. For several weeks, I have an error when I use the following code: Microsoft.WindowsMobile.Forms.CameraCaptureDialog camera = new Microsoft.WindowsMobile.Forms.CameraCaptureDialog(); camera.Mode = Microsoft.WindowsMobile.Forms.CameraCaptureMode.VideoOnly; camera.StillQuality = Microsoft.WindowsMobile.Forms.CameraCaptureStillQuality.High; camera.Owner = this; if (camera.ShowDialog() == DialogResult.OK) { } Message : An unknown error occured. I tried to with a C++ library and the SHCameraCapture(ref shCamCapture); function but without success. Do you have exemple in C# or C++ library? Best regards.
From: Jamal Samedov on 29 Apr 2010 04:48 There are SDKs for camera with demo examples and with source code. I had tested one it works however I had not yet come to the point to implement it in mine software. The name of SDK is M3SkyCamera. Probably there are more search on internet. J.N. Samedov, "Xavier PACOTTE" <xpacotte(a)gmail.com> wrote in message news:e597a6ad-b6c8-44bd-85ee-942a785455ad(a)w42g2000yqm.googlegroups.com... > Hello, > > CF 3.5 > WM 6.5 > Langage C# > > I want to take pictures with my PDA and DOTNET. > For several weeks, I have an error when I use the following code: > > Microsoft.WindowsMobile.Forms.CameraCaptureDialog camera = new > Microsoft.WindowsMobile.Forms.CameraCaptureDialog(); > camera.Mode = > Microsoft.WindowsMobile.Forms.CameraCaptureMode.VideoOnly; > camera.StillQuality = > Microsoft.WindowsMobile.Forms.CameraCaptureStillQuality.High; > camera.Owner = this; > if (camera.ShowDialog() == DialogResult.OK) > { > } > Message : An unknown error occured. > > I tried to with a C++ library and the SHCameraCapture(ref > shCamCapture); function > but without success. > > Do you have exemple in C# or C++ library? > > Best regards.
|
Pages: 1 Prev: vs 2010 support Next: Starting a C# application does nothing...then native exception |