private void testCopy() { getArgosFile(); ExcelApplication bob = new ExcelApplication(baseExcelFilename); bob.makeStudentCopies(lstViewer); }
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 "); } }