Exemple #1
0
        /// <summary>
        /// Return all network servers
        /// </summary>
        /// <returns></returns>
        public static string BrowseNetworkServers()
        {
            BrowseForServers dialog = new BrowseForServers();

            if (DialogResult.OK == dialog.ShowDialog())
            {
                return(dialog.listBox.Text);
            }

            return("");
        }