OpenFileDialog sfd = new OpenFileDialog();
sfd.ShowDialog();
this.textBox1.Text = sfd.FileName; SaveFileDialog sfd = new SaveFileDialog();
sfd.ShowDialog();

  

05-11 01:07