OpenFileDialog ofd = new OpenFileDialog();
ofd.Filter=m_cmbopen.Text+"|"+m_cmbopen.Text;
string filter=ofd.Filter;
ofd.InitialDirectory= "c:\\";
ofd.Title = "打开图象文件"; 
ofd.ShowHelp = true; 
if(ofd.ShowDialog()==DialogResult.OK)
{ string strFileName = ofd.FileName; 
m_bitmap = new Bitmap(strFileName); 
                         m_bitmap.Save(strFileName,ImageFormat.Icon);
                   }
这样就行了,可以把JPEG转为ICON的了