I find this solution
I have picture saved in database and retrieved from database in picture box...that working fine.
I need to show that picture in picture and fax viewer
Error is : The system can't find file specified
Some help?
private void button12_Click(object sender, EventArgs e)
{
Process photoViewer = new Process();
photoViewer.StartInfo.FileName = @"c:\\testImage.jpg";
photoViewer.StartInfo.Arguments = @"c:\\testImage.jpg";
photoViewer.Start();
}