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

Mobile

 
QuestionChange Wallpaper in Pocket PC Pin
Nirmit Kavaiya2-May-09 21:06
professionalNirmit Kavaiya2-May-09 21:06 
AnswerRe: Change Wallpaper in Pocket PC Pin
energywave8-May-09 13:26
energywave8-May-09 13:26 
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 
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

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 
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 

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.