예제 #1
0
        private void m_button_USFM_to_OSIS_Click(object sender, EventArgs e)
        {
            USFM_to_OSIS converter = new USFM_to_OSIS(UsfmPath, OsisPath, m_optionsPath);

            converter.Run(m_filesList.CheckedItems);
        }
예제 #2
0
파일: Form1.cs 프로젝트: mwatts/haiola
        private void m_button_USFM_to_OSIS_Click(object sender, EventArgs e)
        {
            USFM_to_OSIS converter = new USFM_to_OSIS(Path.Combine(m_rootDir, @"USFM"), Path.Combine(m_rootDir, @"OSIS"));

            converter.Run(m_filesList.CheckedItems);
        }