Exemple #1
0
        private void testCopy()
        {
            getArgosFile();
            ExcelApplication bob = new ExcelApplication(baseExcelFilename);

            bob.makeStudentCopies(lstViewer);
        }
Exemple #2
0
 private void createRosterFromArgosExcel()
 {
     if (baseExcelFilename == null)
     {
         MessageBox.Show("OOPS, no argos file selected");
     }
     else if (baseExcelFileType == EXCEL)
     {
         ExcelApplication bob = new ExcelApplication(baseExcelFilename);
         //                   MessageBox.Show(bob.word);
         //                   bob.word = baseExcelFileType;
         //                   MessageBox.Show(bob.word);
         bob.createRoster(/*lstViewer,*/ rosterFileName);
     }
     else if (baseExcelFileType == TEXT)
     {
         MessageBox.Show("Processing argos text file ");
         createRosterFromTextFile();
     }
     else
     {
         MessageBox.Show("OOPS, there be DRAGONS here ");
     }
 }