K
ksngroups
FolderBrowserDialog dlg = new FolderBrowserDialog();
if ( dlg.ShowDialog() == DialogResult.OK)
{
tb_path.Text = dlg.SelectedPath;
}
I use the following code to show up a Folder Dialog. But to my surprise
the List box containing the directories or the folder information is
not shown??
I don't know why I am getting the issue. Is it the problem with the way
I have referenced the component??
Can anybody throw me some pointers on the same.
if ( dlg.ShowDialog() == DialogResult.OK)
{
tb_path.Text = dlg.SelectedPath;
}
I use the following code to show up a Folder Dialog. But to my surprise
the List box containing the directories or the folder information is
not shown??
I don't know why I am getting the issue. Is it the problem with the way
I have referenced the component??
Can anybody throw me some pointers on the same.