Esempio n. 1
0
        public void FillDataBaseWithData()
        {
            System.Collections.IDictionaryEnumerator FileListEnumerator;
            FileListEnumerator = fileList.GetEnumerator();

            ////enumerate the collection of files found in the file hashtable
            //while (FileListEnumerator.MoveNext())
            //{
            //    // add each of the file names to the listbox
            //    FileListEnumerator.Key.ToString();

            //}

            DataFillerForm fileWorker = new DataFillerForm(FileListEnumerator);
            fileWorker.ShowDialog();
        }
Esempio n. 2
0
        private void FillDatabase()
        {
            System.Collections.IDictionaryEnumerator FileListEnumerator;
            FileListEnumerator = fileList.GetEnumerator();

            DataFillerForm fileWorker = new DataFillerForm(FileListEnumerator);
            fileWorker.ShowDialog();
        }