I have an app that is essentially a wizard that goes through some dialog boxes. One of the forms has just a button on it that brings up the common \"take picture\" dialog.
[DllImport("coredll.dll", EntryPoint = "SipShowIM")] public static extern bool SipShowIMP(int code); SipShowIMP(1); //Show the keyboard SipShowIMP(0); //Hide the keyboard
That should do it :-)