I make program for recording phone conversation to a file.I need help. I can not find a way to start recording after receiving a call? Is there a function in the Windows Mobile API for this/
2
2_Raptor_2
@2_Raptor_2
Posts
-
recording phone -
CameraThanks
-
CameraThanks! This is code in my simple project private void menuItem1_Click(object sender, EventArgs e) { CameraCaptureDialog ccd = new CameraCaptureDialog(); ccd.Resolution = new Size(100, 200); ccd.Mode = CameraCaptureMode.Still; ccd.Owner = this; ccd.Title = "My Camera"; if(ccd.ShowDialog() == DialogResult.OK) if( ccd.FileName != String.Empty) pictureBox1.Image = new Bitmap(ccd.FileName); ccd.Dispose(); } it's Ok.. for debug i using device USA Windows Mobile 5.0 Pocket PC R2 Emulator from VS 2008 but this emulator not camera device... how to add camera?
-
CameraHi!!! How do i work this camera from WM5
-
.NET mobile cameraHi all!!! How do i create camera view in smartphones form .NET WM5?