Exemplo n.º 1
0
        private void SetDefaultRecordingPath()
        {
            string recPath = Functions.GetRecordPath();

            if (!String.IsNullOrEmpty(recPath))
            {
                Folders = new System.Collections.Specialized.StringCollection();
                Folders.Add(recPath);
            }
            else
            {
                Folders = new System.Collections.Specialized.StringCollection();
                Folders.Add(@"C:\");
            }

            populateListBox();
        }