hi
how to Upload Select Multiple file In c#?.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sam HobbsPosted Nov 25, 2011, 9:45 AM
Your question is actually many questions; such as:
Note also that it took more time to ask for clarification than the time it took to create this thread. It would really help if you could try to be more clear about what you need; at least about what type of application it is that you need.
Karthik AgarwalPosted Nov 25, 2011, 2:00 AM
{
InitializeOpenFileDialog();
}
private void InitializeOpenFileDialog()
{
// Set the file dialog to filter for the file types you need.
this.openFileDialog1.Filter =
"Images (*.BMP;*.JPG;*.GIF)|*.BMP;*.JPG;*.GIF|" +
"All files (*.*)|*.*";
// Allow the user to select multiple images.
this.openFileDialog1.Multiselect = true;
this.openFileDialog1.Title = "My Image Browser";
}