private void DirectoryObjects_SelectedIndexChanged(object sender, System.EventArgs e)
        {
            DSTools PropertyTool = new DSTools();

            Output.Text = PropertyTool.DisplayDEProperties(m_LDAPPaths[DirectoryObjects.SelectedIndex]);
        }
        private void btnShowProperties_Click(object sender, System.EventArgs e)
        {
            DSTools PropertyTool = new DSTools();

            Output.Text = PropertyTool.DisplayDEProperties(LDAPPath.Text);
        }