HI..
How to open a new dialog same like when we click on File-> new archive in winzip .
Thank you.
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.
FroglegPosted Jun 2, 2011, 5:03 PM
Drag an openFileDialog from toolbox onto form
in new button click event put
openFileDialog1.Filter = "Zip Files(*.zip;*.7z;*.tar)|*.ZIP;*.7Z;*.TAR";
if (openFileDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
textBox1.Text = openFileDialog1.FileName;
}