File Browser Pouplated Filepath Windows Application

Jayakumars
Posted by Jayakumars under ASP.NET AJAX category on | Points: 40 | Views : 1738
File Browser Pouplated Filepath Windows Application
==============================================
private void Cmd_Browse_Click(object sender, EventArgs e)
{
folderBrowserDialog1.ShowDialog();
textBox1.Text = folderBrowserDialog1.SelectedPath;
}

Comments or Responses

Login to post response