Hi there...
I want open 3 image at one time using C# but i dont know how....:(
I'm at beginner level in C#. Please help me in this problem... :'(
Thanks a lot....
well show us what you got
first, can you open one image? and what are you opening images with?
your code will help out
ok sorry... this code...
i can open one image.
so, could u help me how the 3 image will be open at the one time...:(
private void tbbOpenPicture_Click_1(object sender, EventArgs e)
{
// Show the open file dialog box
if (ofdSelectPicture.ShowDialog() == DialogResult.OK)
{
//Load the picture into the picture box
picShowPicture.Image = Image.FromFile(ofdSelectPicture.FileName);
// Show the name of the file in the form's caption.
this.Text = string.Concat("Picture Viewer (" + ofdSelectPicture.FileName + ")");
}
}
you have picShowPicture, why can't you create 2 more picture boxes like this?
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.