Click here to Skip to main content
15,895,084 members
Home / Discussions / Mobile
   

Mobile

 
GeneralRe: Change Wallpaper in Pocket PC Pin
Nirmit Kavaiya10-May-09 20:18
professionalNirmit Kavaiya10-May-09 20:18 
QuestionAuto Answer Phone call Pin
Silva_A2-May-09 0:59
Silva_A2-May-09 0:59 
AnswerRe: Auto Answer Phone call Pin
Joel Ivory Johnson4-May-09 3:55
professionalJoel Ivory Johnson4-May-09 3:55 
QuestionSQL CE app, problems only while debugging, works when launched from device Pin
mdurli30-Apr-09 1:12
mdurli30-Apr-09 1:12 
QuestionCamera Pin
2_Raptor_229-Apr-09 17:41
2_Raptor_229-Apr-09 17:41 
AnswerRe: Camera Pin
~Khatri Mitesh~29-Apr-09 21:00
~Khatri Mitesh~29-Apr-09 21:00 
AnswerRe: Camera Pin
Jabbar_espania30-Apr-09 2:02
Jabbar_espania30-Apr-09 2:02 
GeneralRe: Camera Pin
2_Raptor_230-Apr-09 12:22
2_Raptor_230-Apr-09 12:22 
Thanks!
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?
GeneralRe: Camera Pin
Jabbar_espania30-Apr-09 23:31
Jabbar_espania30-Apr-09 23:31 
GeneralRe: Camera Pin
~Khatri Mitesh~1-May-09 21:42
~Khatri Mitesh~1-May-09 21:42 
GeneralRe: Camera Pin
2_Raptor_23-May-09 11:44
2_Raptor_23-May-09 11:44 
QuestionMultiple Language Selection Pin
VarunPrakash27-Apr-09 19:30
VarunPrakash27-Apr-09 19:30 
AnswerRe: Multiple Language Selection Pin
Joel Ivory Johnson29-Apr-09 5:08
professionalJoel Ivory Johnson29-Apr-09 5:08 
AnswerRe: Multiple Language Selection Pin
energywave8-May-09 13:32
energywave8-May-09 13:32 
QuestionPlaying AVI on Windows Mobile using C# Pin
BosGaurus26-Apr-09 23:27
BosGaurus26-Apr-09 23:27 
AnswerRe: Playing AVI on Windows Mobile using C# Pin
Joel Ivory Johnson29-Apr-09 5:07
professionalJoel Ivory Johnson29-Apr-09 5:07 
GeneralRe: Playing AVI on Windows Mobile using C# Pin
BosGaurus29-Apr-09 5:41
BosGaurus29-Apr-09 5:41 
GeneralRe: Playing AVI on Windows Mobile using C# Pin
Joel Ivory Johnson29-Apr-09 6:38
professionalJoel Ivory Johnson29-Apr-09 6:38 
GeneralRe: Playing AVI on Windows Mobile using C# Pin
BosGaurus29-Apr-09 7:33
BosGaurus29-Apr-09 7:33 
Questionc# : How can i control Send/Receive event ? Pin
Idandush26-Apr-09 23:03
Idandush26-Apr-09 23:03 
QuestionHow Should I start Pin
ashish8patil25-Apr-09 3:33
ashish8patil25-Apr-09 3:33 
AnswerRe: How Should I start Pin
PavanPareta25-Apr-09 21:30
PavanPareta25-Apr-09 21:30 
GeneralRe: How Should I start Pin
ashish8patil26-Apr-09 22:15
ashish8patil26-Apr-09 22:15 
GeneralRe: How Should I start Pin
Jabbar_espania30-Apr-09 23:37
Jabbar_espania30-Apr-09 23:37 
QuestionHost USB in Windows Mobile 5.0 Pin
mkohns24-Apr-09 5:40
mkohns24-Apr-09 5:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.