string myPic = string.Empty;
OpenFileDialog openFileDialog1 = new OpenFileDialog();
openFileDialog1.Filter = "All Files|*.*";
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
myPic = openFileDialog1.FileName;
pictreBxLogo.Image = null;
pictreBxLogo.Image = Image.FromFile(myPic);
}
how can i give a condition that image should be in 94 height and 94 width.