[Configuration] Improve Add Share Dialog (1 Viewer)

toertchn

Portal Member
January 5, 2008
23
4
Home Country
Germany Germany
Hi, it would be nice if the Configuration can autofill the Visual name of a new path with a default text based on path. For me most times the Visual name is the same like folder name.

Simple add something like:
Code:
if (dialogResult == DialogResult.OK)
{
   folderTextBox.Text = folderBrowserDialog.SelectedPath;
   nameTextBox.Text = System.IO.Path.GetFileName(folderBrowserDialog.SelectedPath);
}

in EditShareForm.cs ~ Line 449 to do this.

Many thx.
 

Users who are viewing this thread

Top Bottom