Click here to Skip to main content
15,905,967 members

Comments by AnthonyMG (Top 30 by date)

AnthonyMG 29-Jan-14 0:28am View    
check below article you will get some idea:

http://www.codeproject.com/Articles/15219/WebCam-Fast-Image-Capture-Service-using-WIA

http://code.msdn.microsoft.com/windowsdesktop/Webcam-Capture-50295c7f
AnthonyMG 27-Jan-14 4:14am View    
could you please let me know what your trying to achieve with this combobox,
can you specify your need of combobox using ItemTemplate ?
AnthonyMG 16-Jan-14 23:48pm View    
you can try this solution as well..

DataGridViewImageColumn photoColumn = new DataGridViewImageColumn();
photoColumn.DataPropertyName = "Photo";
photoColumn.Width = 200;
photoColumn.HeaderText = "Image";
photoColumn.ReadOnly = true;
photoColumn.ImageLayout = DataGridViewImageCellLayout.Normal;
dataGridView.Columns.Add(photoColumn);
AnthonyMG 16-Jan-14 23:46pm View    
Try to set the image size like this.

img.Image = new Bitmap(SystemIcons.Exclamation.ToBitmap(), 8, 8);
AnthonyMG 13-Dec-13 1:50am View    
Sathish, I have updated the solution more clearly , please check it.