windows mobile camera -
i want know how take photo in windowsmobile through c sharp coding , want save database. can 1 me this?
assuming you're using windows mobile 6.5 or earlier, use cameracapturedialog class:
cameracapturedialog ccd = new cameracapturedialog(); ccd.showdialog(); bitmap capturedimage = new bitmap(ccd.filename);
Comments
Post a Comment