Example #1
0
 private void txtName_TextChanged(object sender, EventArgs e)
 {
     if (string.IsNullOrEmpty(txtName.Text))
     {
         txtPath.Text = string.Empty;
     }
     else
     {
         txtPath.Text = ProjectManager.Project.GetRelativePath(DEM.AssocSurfacePath(txtName.Text));
     }
 }
Example #2
0
 private void txtName_TextChanged(object sender, EventArgs e)
 {
     txtPath.Text = ProjectManager.Project.GetRelativePath(DEM.AssocSurfacePath(txtName.Text));
 }